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

2016-08-29 Thread Yixun Lan
commit: a8ec6dc048735955ad8e39be442cabee0696d3c3
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Aug 30 05:56:19 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Aug 30 05:57:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8ec6dc0

app-misc/tmate: fix DEPEND typo

Gentoo-Bug: 592250

Package-Manager: portage-2.3.0

 app-misc/tmate/tmate-2.2.0-r1.ebuild | 2 +-
 app-misc/tmate/tmate-2.2.1.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/tmate/tmate-2.2.0-r1.ebuild 
b/app-misc/tmate/tmate-2.2.0-r1.ebuild
index 28ed752..d7fb1ea 100644
--- a/app-misc/tmate/tmate-2.2.0-r1.ebuild
+++ b/app-misc/tmate/tmate-2.2.0-r1.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
dev-libs/msgpack[static-libs?]
>=net-libs/libssh-0.6.0[static-libs?]
 "
-DEPEND="${RPDEND}
+DEPEND="${RDEPEND}
virtual/pkgconfig"
 
 src_prepare() {

diff --git a/app-misc/tmate/tmate-2.2.1.ebuild 
b/app-misc/tmate/tmate-2.2.1.ebuild
index 460f89e..56200d2 100644
--- a/app-misc/tmate/tmate-2.2.1.ebuild
+++ b/app-misc/tmate/tmate-2.2.1.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
dev-libs/msgpack[static-libs?]
>=net-libs/libssh-0.6.0[static-libs?]
 "
-DEPEND="${RPDEND}
+DEPEND="${RDEPEND}
virtual/pkgconfig"
 
 src_prepare() {



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

2016-08-29 Thread Hans de Graaff
commit: 968b597f8dd5570db57a6d28afca091d05bb0192
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Aug 30 05:37:23 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Aug 30 05:37:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=968b597f

dev-ruby/curb: add 0.9.3

Package-Manager: portage-2.2.28

 dev-ruby/curb/Manifest  |  1 +
 dev-ruby/curb/curb-0.9.3.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-ruby/curb/Manifest b/dev-ruby/curb/Manifest
index ba143bf..d15f163 100644
--- a/dev-ruby/curb/Manifest
+++ b/dev-ruby/curb/Manifest
@@ -1 +1,2 @@
 DIST curb-0.8.8.gem 80384 SHA256 
ec3b5880d92c9a9140555fc5c86524025474a905e6548e1c37816247ad60903e SHA512 
441025ae199266009bc3f8a2068245a4ee0b83f72babc35cc4fa744b0f3efe13ba26c5f795ff6f429bb7bfbd5ce31d51e5de6b65c3f10285d9a9f5909eff286f
 WHIRLPOOL 
e3e371d948fe1f008e34de944fc602267421f643eeec32a7408806dc6e7abc440e73ab63583273247330657ea7bebe7caa4957d95160ab66509110f2acf99ce5
+DIST curb-0.9.3.gem 81920 SHA256 
42651d05f712a93fb9cc733910b285d389afbd16952d456b13733b12a403e009 SHA512 
b484505fbdd038f6827aec9fa936f0a00d0ada5af4c655320976b5efef2b0d503a1aae4f72246467ba7caaede1440c59f511f45f10c53b90fc2a94630bc620f9
 WHIRLPOOL 
62a529c8d937e92c3e0f058cf3eb09c73c41393675e8bb0a3cfd22015383f4b5fa8d01be48d5abf655b4310325ef5837496f0221f9fd91ea1861dbaceb0087fc

diff --git a/dev-ruby/curb/curb-0.9.3.ebuild b/dev-ruby/curb/curb-0.9.3.ebuild
new file mode 100644
index ..4b9aab7
--- /dev/null
+++ b/dev-ruby/curb/curb-0.9.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rake"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby-language bindings for libcurl"
+HOMEPAGE="https://github.com/taf2/curb;
+
+LICENSE="Ruby"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND+=" net-misc/curl[ssl]"
+RDEPEND+=" net-misc/curl[ssl]"
+
+all_ruby_prepare() {
+   # fix tests when localhost is also ::1
+   sed -i -e 's|localhost:|127.0.0.1:|g' tests/*.rb || die
+
+   # avoid tests making outside network connections
+   rm tests/bug_postfields_crash.rb || die
+   sed -e '/test_easy_http_verbs_must_respond_to_str/,/^  end/ s:^:#:' \
+   -i tests/tc_curl_easy.rb || die
+
+   # avoid failing tests where failure condition seems weird, no 
+   # upstream travis so not clear if the test is indeed broken.
+   sed -i -e '/test_multi_easy_http/,/^  end/ s:^:#:' 
tests/tc_curl_multi.rb || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext extconf.rb || die "extconf.rb failed"
+}
+
+each_ruby_compile() {
+   emake -Cext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}" V=1
+   cp -l ext/curb_core$(get_modname) lib || die
+}



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

2016-08-29 Thread Hans de Graaff
commit: 12d8fb39150fdea8aa5f770135145aa519b5e46d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Aug 30 05:39:11 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Aug 30 05:39:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12d8fb39

dev-ruby/dbf: add 3.0.7

Package-Manager: portage-2.2.28

 dev-ruby/dbf/Manifest |  1 +
 dev-ruby/dbf/dbf-3.0.7.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-ruby/dbf/Manifest b/dev-ruby/dbf/Manifest
index ca090dc..cd87037 100644
--- a/dev-ruby/dbf/Manifest
+++ b/dev-ruby/dbf/Manifest
@@ -4,3 +4,4 @@ DIST dbf-3.0.3.gem 125952 SHA256 
5db79720ae7079c9539be3abc4a2801ee9ea4d0a4fc5ca3
 DIST dbf-3.0.4.gem 126464 SHA256 
5025ad14396b3fe9f033d69c464df543f311e2feacf282777b8a40793cda6184 SHA512 
5e2e62010316801a67d2a463a48f3405ef0bf9e02394f184e055296d0eb14a0e539af3938faa7907d079a24707e660dc18223eff5618989363bf6e54ebf0db4a
 WHIRLPOOL 
eeff288cbe3afbfb105d41d69ea09bc101050bb6aef3e497b87fbc9b496dcd9e5f1e43ba05a8db3b65dfbb5db5dbf85b62c6dffe125f02407b2929cba429b8d5
 DIST dbf-3.0.5.gem 126976 SHA256 
4c054c124aac204d3c8698f828ba6f199ecd7a649c237a817f90c44083f76432 SHA512 
6defd871499af1012c39d6927bbff981eaed92cee56ccfd47c8bbc587f0bcb0b1a73238f281f7b7093a38849e101d77f1704abe4d136372c95858a3c6b0a9f5f
 WHIRLPOOL 
4c505038ac3acfefece72250c3e8e167181ec3f168ae9c64c993e8fd718d49de5786483faa8d2140dcdec7330aa879d44869d8c417aaeb1a60a2485f1c841726
 DIST dbf-3.0.6.gem 126976 SHA256 
478b1e38986b6b9d31ee5340dc7504e2e86848bc4531b8355f5c4e4fca57a5ba SHA512 
e32814f7711038c7fe1d71ca3b4dfa29e487708acec7142a796b72962147980ac088936c6af8333be6bbb59be873e51c973406f373ee8f09cdf4cf249507e81d
 WHIRLPOOL 
8df2877e90576e74366a2c04c6ec77b5a7f027264862bbebbffaf7e5331d5f33a5905caf8d3e2afbc06ec7b680fbbb79d1cf44d9d523f6f81f6897463ec337a2
+DIST dbf-3.0.7.gem 126976 SHA256 
9ac22f1d463cd65a27d4d713bb7f344573d4320ed2007d5a40e1e574148f4232 SHA512 
667c34ef688b8655d831b159a66a5d0bd54ff81da5e3f98b6e456170b4fc9c4e8cd60441005ff49aa20d8e5836285df872f4f682d8ff65d2d324f5e7f4056e30
 WHIRLPOOL 
c1cfc21ed916b50b63b05c5c5c7f2a82fa2ab9c372e8b7d81abf725fb3e9eb51f7a2c45993cc971da89ff48cefbd9a424fa910c3a36cdadb5b9f7abcf2cd2b0f

diff --git a/dev-ruby/dbf/dbf-3.0.7.ebuild b/dev-ruby/dbf/dbf-3.0.7.ebuild
new file mode 100644
index ..498f4a1
--- /dev/null
+++ b/dev-ruby/dbf/dbf-3.0.7.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md docs/*"
+
+inherit ruby-fakegem
+
+DESCRIPTION="a small fast library for reading dBase, xBase, Clipper and FoxPro
+database files"
+HOMEPAGE="https://github.com/infused/dbf;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""



[gentoo-commits] proj/baselayout:master commit in: etc.Linux/

2016-08-29 Thread William Hubbs
commit: d32173ea399cc37837985dec55134d1e0e2ebf72
Author: William Hubbs  gentoo  org>
AuthorDate: Tue Aug 30 03:59:10 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Aug 30 03:59:10 2016 +
URL:https://gitweb.gentoo.org/proj/baselayout.git/commit/?id=d32173ea

etc.Linux/sysctl.comf: disable rp_filter by default

See https://lwn.net/Articles/578621/

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

 etc.Linux/sysctl.conf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/etc.Linux/sysctl.conf b/etc.Linux/sysctl.conf
index 08466bf..2f8b3b0 100644
--- a/etc.Linux/sysctl.conf
+++ b/etc.Linux/sysctl.conf
@@ -16,9 +16,9 @@ net.ipv4.ip_forward = 0
 # Disable ECN
 #net.ipv4.tcp_ecn = 0
 # Enables source route verification
-net.ipv4.conf.default.rp_filter = 1
+#net.ipv4.conf.default.rp_filter = 1
 # Enable reverse path
-net.ipv4.conf.all.rp_filter = 1
+#net.ipv4.conf.all.rp_filter = 1
 
 # Enable SYN cookies (yum!)
 # http://cr.yp.to/syncookies.html



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

2016-08-29 Thread Mike Gilbert
commit: edd86ebc72fa11f7cdd939a5ea9cd34bf4de22de
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Aug 30 03:42:57 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Aug 30 03:43:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edd86ebc

app-admin/cli53: bump to 0.8.0

Package-Manager: portage-2.3.0_p22

 app-admin/cli53/Manifest   |  1 +
 .../{cli53-.ebuild => cli53-0.8.0.ebuild}  | 11 +++---
 app-admin/cli53/cli53-.ebuild  | 11 +++---
 app-admin/cli53/files/cli53-ldflags.patch  | 25 ++
 4 files changed, 42 insertions(+), 6 deletions(-)

diff --git a/app-admin/cli53/Manifest b/app-admin/cli53/Manifest
index ab55c97..6de28a3 100644
--- a/app-admin/cli53/Manifest
+++ b/app-admin/cli53/Manifest
@@ -1 +1,2 @@
 DIST cli53-0.7.4.tar.gz 3270107 SHA256 
3cb89e6aa91676ffd0577798a4b06b056667d18ad836de4fa31c0564ee48474e SHA512 
fb0fb7891dacf07b4a34861c6c93d8ab8c177710345cfb6d39feb56892d6b9fa8d39b1d933323a6649e3fefdb941cdc7d4940bbdb7040d41a99ea988c3b976fa
 WHIRLPOOL 
a62f999666215540afbd4bfbdc07366a772900520c21fb9e65dbcc7d7da6ea5c0354017c1ff1c1825ba84c777e7c1a07367ac521ce0aedaefe21ca2ec0c52871
+DIST cli53-0.8.0.tar.gz 4365177 SHA256 
0a87de05110d9bba851ba3522a1072494256e31fa653f59331313bff21d5c160 SHA512 
25094642796dfc13de470b20288b6e801437e826598414af9bbe65d6d1d0a76a5ada2dc4f732043e12d5a4e4b860f824381df04aeb847b0917414f9a3238432c
 WHIRLPOOL 
5e36e8c957f1e6876bbb1834452be1526b62da84dd4ee5ba6273f9ff259e3bcb71c746d5c990346abd8d5914e2ccb887b3e4840a07620abd4ce49dcca7dea79b

diff --git a/app-admin/cli53/cli53-.ebuild 
b/app-admin/cli53/cli53-0.8.0.ebuild
similarity index 81%
copy from app-admin/cli53/cli53-.ebuild
copy to app-admin/cli53/cli53-0.8.0.ebuild
index 834f3a3..6a58229 100644
--- a/app-admin/cli53/cli53-.ebuild
+++ b/app-admin/cli53/cli53-0.8.0.ebuild
@@ -21,16 +21,21 @@ SLOT="0"
 EGO_PN="github.com/barnybug/cli53"
 S="${WORKDIR}/${P}/src/${EGO_PN}"
 
+PATCHES=(
+   "${FILESDIR}"/cli53-ldflags.patch
+)
+
 src_compile() {
+   export GOPATH="${WORKDIR}/${P}"
if [[ ${PV} ==  ]]; then
-   GOPATH="${WORKDIR}/${P}" emake build
+   emake build
else
-   GOPATH="${WORKDIR}/${P}" emake build version=${PV}
+   emake build version=${PV}
fi
 }
 
 src_test() {
-   GOPATH="${WORKDIR}/${P}" go test -v || die
+   go test -v || die
 }
 
 src_install() {

diff --git a/app-admin/cli53/cli53-.ebuild 
b/app-admin/cli53/cli53-.ebuild
index 834f3a3..6a58229 100644
--- a/app-admin/cli53/cli53-.ebuild
+++ b/app-admin/cli53/cli53-.ebuild
@@ -21,16 +21,21 @@ SLOT="0"
 EGO_PN="github.com/barnybug/cli53"
 S="${WORKDIR}/${P}/src/${EGO_PN}"
 
+PATCHES=(
+   "${FILESDIR}"/cli53-ldflags.patch
+)
+
 src_compile() {
+   export GOPATH="${WORKDIR}/${P}"
if [[ ${PV} ==  ]]; then
-   GOPATH="${WORKDIR}/${P}" emake build
+   emake build
else
-   GOPATH="${WORKDIR}/${P}" emake build version=${PV}
+   emake build version=${PV}
fi
 }
 
 src_test() {
-   GOPATH="${WORKDIR}/${P}" go test -v || die
+   go test -v || die
 }
 
 src_install() {

diff --git a/app-admin/cli53/files/cli53-ldflags.patch 
b/app-admin/cli53/files/cli53-ldflags.patch
new file mode 100644
index ..37987c5
--- /dev/null
+++ b/app-admin/cli53/files/cli53-ldflags.patch
@@ -0,0 +1,25 @@
+From 832a36db6cbb259146ba306ceece92cfa1f45038 Mon Sep 17 00:00:00 2001
+From: Mike Gilbert 
+Date: Mon, 29 Aug 2016 23:31:59 -0400
+Subject: [PATCH] Don't strip debug symbols
+
+---
+ Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index 546767c..5253982 100644
+--- a/Makefile
 b/Makefile
+@@ -2,7 +2,7 @@ export GO15VENDOREXPERIMENT=1
+ 
+ version := $(shell git describe --always --dirty)
+ exe = ./cmd/cli53
+-buildargs = -ldflags '-w -s -X github.com/barnybug/cli53.version=${version}'
++buildargs = -ldflags '-X github.com/barnybug/cli53.version=${version}'
+ 
+ .PHONY: all build install test coverage deps release
+ 
+-- 
+2.9.3
+



[gentoo-commits] repo/dev/tamiko:master commit in: sys-devel/gcc/

2016-08-29 Thread Matthias Maier
commit: 79e47eff090d0d1236fa2cb5ecfeb37677b91985
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Aug 30 03:33:23 2016 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Aug 30 03:33:23 2016 +
URL:https://gitweb.gentoo.org/repo/dev/tamiko.git/commit/?id=79e47eff

sys-devel: be more conservative with keywords

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

 sys-devel/gcc/gcc-6.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc/gcc-6.2.0.ebuild b/sys-devel/gcc/gcc-6.2.0.ebuild
index 21c572a..354f548 100644
--- a/sys-devel/gcc/gcc-6.2.0.ebuild
+++ b/sys-devel/gcc/gcc-6.2.0.ebuild
@@ -22,7 +22,7 @@ PATCH_VER="1.0"
 
 inherit toolchain
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 
 RDEPEND=""
 DEPEND="${RDEPEND}



[gentoo-commits] repo/dev/tamiko:master commit in: sys-devel/gcc/files/awk/, sys-devel/gcc/files/, sys-devel/gcc/

2016-08-29 Thread Matthias Maier
commit: 698c342cc40f74b2aae90c23094c959f69fd3292
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Aug 30 01:44:05 2016 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Aug 30 01:44:05 2016 +
URL:https://gitweb.gentoo.org/repo/dev/tamiko.git/commit/?id=698c342c

sys-devel/gcc: add a gcc 6.2.0 ebuild

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

 sys-devel/gcc/Manifest   |   3 +
 sys-devel/gcc/files/awk/fixlafiles.awk   | 314 +
 sys-devel/gcc/files/awk/fixlafiles.awk-no_gcc_la | 335 +++
 sys-devel/gcc/files/c89  |  20 ++
 sys-devel/gcc/files/c99  |  21 ++
 sys-devel/gcc/files/fix_libtool_files.sh |  67 +
 sys-devel/gcc/files/gcc-configure-LANG.patch |  64 +
 sys-devel/gcc/files/gcc-configure-texinfo.patch  |  16 ++
 sys-devel/gcc/files/gcc-spec-env-r1.patch|  87 ++
 sys-devel/gcc/files/gcc-spec-env.patch   |  42 +++
 sys-devel/gcc/gcc-6.2.0.ebuild   |  44 +++
 sys-devel/gcc/metadata.xml   |  38 +++
 12 files changed, 1051 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
new file mode 100644
index 000..bd41b7c
--- /dev/null
+++ b/sys-devel/gcc/Manifest
@@ -0,0 +1,3 @@
+DIST ecj-4.5.jar 1470676 SHA256 
98fd128f1d374d9e42fd9d4836bdd249c6d511ebc6c0df17fbc1b9df96c3d781 SHA512 
d4e1bf7538ace56e3d69fa91da5bbd16c272923b4de0a9d8dee23ea2b75f9f38c603de72fc4061df49285c450b63f3df211cee5270e9fffc5447445d1a9c9e4e
 WHIRLPOOL 
db54206cfd5eba935e707b8d36ebac40f3c4ed3c1f06ede794288cbdd9c7da9d90c0898e8c98b383af276ea4c1b40c861ebd9e1fc1dce712946184321339d3ad
+DIST gcc-6.2.0-patches-1.0.tar.bz2 5712 SHA256 
7ada7f5ce163347cb8d6470a793133fcdfdc682b85c089a200d52769f224ab31 SHA512 
7d715e210a3dc122dfff82ff34a2d456b9f1c70e21e28b533287eef26b6b7b29453e390f85ae3d5cc3f5eee751c207fde08085cb2021366d2cb3a20e8b0fdd61
 WHIRLPOOL 
a8581cb522a4140883e36a2f5cd9395b9b6891d20795f42e1f829184330d996fa6bbc16eee3ac21a253dcf2f34d038b9c8ed211ec563394455dfa49c4b6a7bc1
+DIST gcc-6.2.0.tar.bz2 99778648 SHA256 
9944589fc722d3e66308c0ce5257788ebd7872982a718aa2516123940671b7c5 SHA512 
1e8b826a3d44b9d5899309894e20c03abeb352bf3d273b8ad63af814c0ee2911f1a83ce1cd4cdd2d1cb0b3e3c34e9b7ae1b2ab83dfc649ee817ab05247c76198
 WHIRLPOOL 
8a96e0424c7410d8826319758ed92f1674099cf17d0590bf71328ef2bb9913f9fa8452016c509c48c93f4bf8ed811a24fffa1b6e475b5c1633d167ad844f1dca

diff --git a/sys-devel/gcc/files/awk/fixlafiles.awk 
b/sys-devel/gcc/files/awk/fixlafiles.awk
new file mode 100644
index 000..ad2c2b1
--- /dev/null
+++ b/sys-devel/gcc/files/awk/fixlafiles.awk
@@ -0,0 +1,314 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+#
+# Helper functions
+#
+function printn(string) {
+   printf("%s", string)
+}
+function einfo(string) {
+   printf(" \033[32;01m*\033[0m %s\n", string)
+}
+function einfon(string) {
+   printf(" \033[32;01m*\033[0m %s", string)
+}
+function ewarn(string) {
+   printf(" \033[33;01m*\033[0m %s\n", string)
+}
+function ewarnn(string) {
+   printf(" \033[33;01m*\033[0m %s", string)
+}
+function eerror(string) {
+   printf(" \033[31;01m*\033[0m %s\n", string)
+}
+
+#
+# assert(condition, errmsg)
+#   assert that a condition is true.  Otherwise exit.
+#
+function assert(condition, string) {
+   if (! condition) {
+   printf("%s:%d: assertion failed: %s\n",
+  FILENAME, FNR, string) > "/dev/stderr"
+   _assert_exit = 1
+   exit 1
+   }
+}
+
+#
+# system(command, return)
+#   wrapper that normalizes return codes ...
+#
+function dosystem(command, ret) {
+   ret = 0
+   ret = system(command)
+   if (ret == 0)
+   return 1
+   else
+   return 0
+}
+
+BEGIN {
+   #
+   # Get our variables from environment
+   #
+   OLDVER = ENVIRON["OLDVER"]
+   OLDCHOST = ENVIRON["OLDCHOST"]
+
+   if (OLDVER == "") {
+   eerror("Could not get OLDVER!");
+   exit 1
+   }
+
+   # Setup some sane defaults
+   LIBCOUNT = 2
+   HAVE_GCC34 = 0
+   DIRLIST[1] = "/lib"
+   DIRLIST[2] = "/usr/lib"
+
+   #
+   # Walk /etc/ld.so.conf to discover all our library paths
+   #
+   pipe = "cat /etc/ld.so.conf | sort 2>/dev/null"
+   while(((pipe) | getline ldsoconf_data) > 0) {
+   if (ldsoconf_data !~ /^[[:space:]]*#/) {
+   if (ldsoconf_data == "") continue
+
+   # Remove any trailing comments
+   sub(/#.*$/, "", ldsoconf_data)
+   # Remove any trailing spaces
+   sub(/[[:space:]]+$/, "", ldsoconf_data)
+
+   # If there's more than one path per line, split 
+   # it up as if they were 

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

2016-08-29 Thread Matt Thode
commit: 4d6960807c4c7074f5d78bdd2c2ffa3a3952c704
Author: Matthew Thode  gentoo  org>
AuthorDate: Tue Aug 30 02:25:10 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Tue Aug 30 02:25:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d696080

sys-cluster/neutron: bup

Package-Manager: portage-2.2.28

 sys-cluster/neutron/Manifest |   3 +
 sys-cluster/neutron/neutron-8.2.0.ebuild | 216 +++
 2 files changed, 219 insertions(+)

diff --git a/sys-cluster/neutron/Manifest b/sys-cluster/neutron/Manifest
index 929ce6c..acb9ed6 100644
--- a/sys-cluster/neutron/Manifest
+++ b/sys-cluster/neutron/Manifest
@@ -1,5 +1,8 @@
 DIST neutron-8.1.2.tar.gz 2825641 SHA256 
a3fdeed1421e1586bbdabd046474f1060bff4751257eacd90489f9e1b6eeff9d SHA512 
70ae87033f8cc7c0b00373ed6fa82cd1406fdb12fa3688bb59e27f42c928944368e87099ee6c312f318375998cb3405ee70773feec8eaf4e20035d1a5442ff23
 WHIRLPOOL 
f9313c89eebb7987dd9d6e3581179a9f49f8ce1c8e33de08136b6e32e0fb9486b49c91cd7ed9083a7609413f740c9dfb23d81f05db09edb0722d93f7601f80ab
+DIST neutron-8.2.0.tar.gz 2820699 SHA256 
8d6edde5cacd5f77bf9f95c0ecee8acfcdceafa1ae4a2dd4ad3ea7ad7343811c SHA512 
e7ec025678d23a13c7cbefa4a23f0a72afeefb7118f93419b8227d74de38661024d80a5797e0b67a0322dd5118010de3ef8c8a62106ea46cff4579f6f29f0d68
 WHIRLPOOL 
e719d16d690cb6f0e99021854358758a1dc64c50239593785dae3313e1284068ada80566bb6f064666a2b140a64f988194d32d9ed0908575bbae651b5f5db0e5
 DIST neutron-configs-2016.1..tar.gz 11523 SHA256 
906229c66882eb05d782a749b53b9368df28ae69eb99179cbaed2640996dd227 SHA512 
95ff31ce599977b8bbd7f8783ba41c1f760a30721e8a6ea84fc8f0ecfc4f429d624dad29728d5bc026f7d76a4da6e19c0f4718fd1b58b65c50ff0470a3cf8f2d
 WHIRLPOOL 
38868696cb444cd7c4eaaf704bfb8e2efb6486aa67a99951afd43de1a8e8ca7224e8b8592a2c28e09a7a43c1a9cf0ca02e44e05a50cc370bb9dacee873022a6d
 DIST neutron-configs-8.1.2.tar.gz 11523 SHA256 
906229c66882eb05d782a749b53b9368df28ae69eb99179cbaed2640996dd227 SHA512 
95ff31ce599977b8bbd7f8783ba41c1f760a30721e8a6ea84fc8f0ecfc4f429d624dad29728d5bc026f7d76a4da6e19c0f4718fd1b58b65c50ff0470a3cf8f2d
 WHIRLPOOL 
38868696cb444cd7c4eaaf704bfb8e2efb6486aa67a99951afd43de1a8e8ca7224e8b8592a2c28e09a7a43c1a9cf0ca02e44e05a50cc370bb9dacee873022a6d
+DIST neutron-configs-8.2.0.tar.gz 11523 SHA256 
906229c66882eb05d782a749b53b9368df28ae69eb99179cbaed2640996dd227 SHA512 
95ff31ce599977b8bbd7f8783ba41c1f760a30721e8a6ea84fc8f0ecfc4f429d624dad29728d5bc026f7d76a4da6e19c0f4718fd1b58b65c50ff0470a3cf8f2d
 WHIRLPOOL 
38868696cb444cd7c4eaaf704bfb8e2efb6486aa67a99951afd43de1a8e8ca7224e8b8592a2c28e09a7a43c1a9cf0ca02e44e05a50cc370bb9dacee873022a6d
 DIST neutron-ml2-plugins-2016.1..tar.gz 2031 SHA256 
af1f0436924a64d9a07f0770f06d0a2e48457b45389e1ab90e42c7157797557b SHA512 
b0c194ad29d7e7a44c04b74a109523044cf268ebd8cb91965759a5cbba7cef47c252f7d0ab49bf888a74b1776891b99402dd54d45fd6099734fa03afd519350d
 WHIRLPOOL 
c279518f1868c54409a28dea03f32aa60a413af9dc3ce4387034aaab6387f1c96a937c370bcab3e6e96474a12f19f3794e7b3e0482cb067fb2b060ad09faabad
 DIST neutron-ml2-plugins-8.1.2.tar.gz 2031 SHA256 
af1f0436924a64d9a07f0770f06d0a2e48457b45389e1ab90e42c7157797557b SHA512 
b0c194ad29d7e7a44c04b74a109523044cf268ebd8cb91965759a5cbba7cef47c252f7d0ab49bf888a74b1776891b99402dd54d45fd6099734fa03afd519350d
 WHIRLPOOL 
c279518f1868c54409a28dea03f32aa60a413af9dc3ce4387034aaab6387f1c96a937c370bcab3e6e96474a12f19f3794e7b3e0482cb067fb2b060ad09faabad
+DIST neutron-ml2-plugins-8.2.0.tar.gz 2031 SHA256 
af1f0436924a64d9a07f0770f06d0a2e48457b45389e1ab90e42c7157797557b SHA512 
b0c194ad29d7e7a44c04b74a109523044cf268ebd8cb91965759a5cbba7cef47c252f7d0ab49bf888a74b1776891b99402dd54d45fd6099734fa03afd519350d
 WHIRLPOOL 
c279518f1868c54409a28dea03f32aa60a413af9dc3ce4387034aaab6387f1c96a937c370bcab3e6e96474a12f19f3794e7b3e0482cb067fb2b060ad09faabad

diff --git a/sys-cluster/neutron/neutron-8.2.0.ebuild 
b/sys-cluster/neutron/neutron-8.2.0.ebuild
new file mode 100644
index ..1791c44
--- /dev/null
+++ b/sys-cluster/neutron/neutron-8.2.0.ebuild
@@ -0,0 +1,216 @@
+# 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 )
+
+inherit distutils-r1 linux-info user
+
+DESCRIPTION="A virtual network service for Openstack"
+HOMEPAGE="https://launchpad.net/neutron;
+SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz
+   
https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/mitaka/configs.tar.gz
 -> neutron-configs-${PV}.tar.gz
+   
https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/mitaka/ml2_plugins.tar.gz
 -> neutron-ml2-plugins-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="compute-only dhcp ipv6 l3 metadata openvswitch linuxbridge server sqlite 
mysql postgres"
+REQUIRED_USE="!compute-only? ( || ( mysql postgres sqlite ) )
+   compute-only? ( !mysql 

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

2016-08-29 Thread Tim Harder
commit: 8d1c8b08b78866f23b15419a6b86aa47b0b485ab
Author: Tim Harder  gentoo  org>
AuthorDate: Tue Aug 30 01:48:21 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Aug 30 01:48:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d1c8b08

dev-libs/libyaml: version bump to 0.1.7

 dev-libs/libyaml/Manifest |  1 +
 dev-libs/libyaml/libyaml-0.1.7.ebuild | 48 +++
 2 files changed, 49 insertions(+)

diff --git a/dev-libs/libyaml/Manifest b/dev-libs/libyaml/Manifest
index 18724ad..ec49578 100644
--- a/dev-libs/libyaml/Manifest
+++ b/dev-libs/libyaml/Manifest
@@ -1 +1,2 @@
 DIST yaml-0.1.6.tar.gz 503012 SHA256 
7da6971b4bd08a986dd2a61353bc422362bd0edcc67d7ebaac68c95f74182749 SHA512 
eef1f26fec0a305836b8c6a65def4e2864fe2415618e7490717d4e42f0fc51048727ab0e7e4a6c3a2783ae762fddd6b78091a76a6cd3a2710ae18e3dfb27cd44
 WHIRLPOOL 
b3dc733ae79c2798ad80390fee90648ab65b32b9550d6b3d336138e3d664ee6fa50f71594747e49c7e0b9b72600cb4dd22aaac62970bbf50ae343be4a8c956ca
+DIST yaml-0.1.7.tar.gz 527518 SHA256 
8088e457264a98ba451a90b8661fcb4f9d6f478f7265d48322a196cec2480729 SHA512 
1ee5007dd10db137b5ee80f8117f07390ec04af98d087a5f5475dd2b38d87c699b79ab1676e6c7bfa263323fcdf8edd69fada2b0b7f9c57bef4e46cd65f1e975
 WHIRLPOOL 
2003d3892df783324dfaa6a04195baeccae341e38e0741b8d7c2b8b29f674264644c45f334517ce9d4a45fb907adaf8a5f36a85da832a7b783d759cc13b1acac

diff --git a/dev-libs/libyaml/libyaml-0.1.7.ebuild 
b/dev-libs/libyaml/libyaml-0.1.7.ebuild
new file mode 100644
index ..6818521
--- /dev/null
+++ b/dev-libs/libyaml/libyaml-0.1.7.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 eutils libtool
+
+MY_P="${P/lib}"
+
+DESCRIPTION="YAML 1.1 parser and emitter written in C"
+HOMEPAGE="http://pyyaml.org/wiki/LibYAML;
+SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE="doc examples test static-libs"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+
+   # conditionally remove tests
+   if ! use test; then
+   sed -i -e 's: tests::g' Makefile* || die
+   fi
+
+   elibtoolize  # for FreeMiNT
+}
+
+src_configure() {
+   econf $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+
+   prune_libtool_files
+   use doc && dodoc -r doc/html
+
+   if use examples ; then
+   docompress -x /usr/share/doc/${PF}/examples
+   insinto /usr/share/doc/${PF}/examples
+   doins tests/example-*.c
+   fi
+}



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

2016-08-29 Thread Tim Harder
commit: f7e7342f84fbaca8640ca8941e6d07202955848f
Author: Tim Harder  gentoo  org>
AuthorDate: Tue Aug 30 01:34:50 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Aug 30 01:35:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7e7342f

dev-python/pyyaml: version bump to 3.12

 dev-python/pyyaml/Manifest   |  1 +
 dev-python/pyyaml/pyyaml-3.12.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-python/pyyaml/Manifest b/dev-python/pyyaml/Manifest
index 9d54791..07652ec 100644
--- a/dev-python/pyyaml/Manifest
+++ b/dev-python/pyyaml/Manifest
@@ -1 +1,2 @@
 DIST PyYAML-3.11.tar.gz 248685 SHA256 
c36c938a872e5ff494938b33b14aaa156cb439ec67548fcab3535bb78b0846e8 SHA512 
76de005f59e1842108399af53178cfac2c08ee5cc996cc38ab6ec8b046c6b894422c461a1f1ed1df91abf96f154d41170227912cae7336cff88adfd3c0e8d783
 WHIRLPOOL 
9b457a026a57d4b90e52629dafbd48a33ff3bf3a71c531857d33acfb7e7033b963c566d82d4fabaa0ae17f534b9d5a697a2407bdb24ab3ca9fd375b49e7932c2
+DIST PyYAML-3.12.tar.gz 253011 SHA256 
592766c6303207a20efc445587778322d7f73b161bd994f227adaa341ba212ab SHA512 
e16d8b7f4f026b6a95b11fb59c54ec5f114f6f516294eaa95e718abdf5d37c17a9c4b5e0a0a61fca04e801792d9b7fb801087cf849ff22b9581f6af204b1883a
 WHIRLPOOL 
ccea5e8931b8c57958f0cca0c58dfe71c42e878b233ba4d9a08aa361b874c06967998bb460772e311b42ecf4cb012a35c3aa9dbff620c6f413bbad8e3fffbaaf

diff --git a/dev-python/pyyaml/pyyaml-3.12.ebuild 
b/dev-python/pyyaml/pyyaml-3.12.ebuild
new file mode 100644
index ..b6965b8
--- /dev/null
+++ b/dev-python/pyyaml/pyyaml-3.12.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_P="PyYAML-${PV}"
+
+DESCRIPTION="YAML parser and emitter for Python"
+HOMEPAGE="http://pyyaml.org/wiki/PyYAML https://pypi.python.org/pypi/PyYAML;
+SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+IUSE="examples libyaml"
+
+RDEPEND="libyaml? ( dev-libs/libyaml )"
+DEPEND="${RDEPEND}
+   libyaml? ( $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]' 
python2_7 'python3*') )"
+
+S="${WORKDIR}/${MY_P}"
+
+python_configure_all() {
+   mydistutilsargs=( $(use_with libyaml) )
+}
+
+python_test() {
+   esetup.py test
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}
+   fi
+}



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

2016-08-29 Thread Michael Orlitzky
commit: 5e2e67e846e51ab61001df89d3d9233f9f2d7231
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Tue Aug 30 01:18:18 2016 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Tue Aug 30 01:18:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e2e67e8

app-text/convertlit: new revision supporting $(AR).

This new revision adds a trivial patch replacing "ar" in one of the
Makefiles with $(AR), which defaults to "ar" anyway.

Gentoo-Bug: 571874

Package-Manager: portage-2.2.28

 .../{convertlit-1.8-r2.ebuild => convertlit-1.8-r3.ebuild}|  1 +
 app-text/convertlit/files/support-ar-variable.patch   | 11 +++
 2 files changed, 12 insertions(+)

diff --git a/app-text/convertlit/convertlit-1.8-r2.ebuild 
b/app-text/convertlit/convertlit-1.8-r3.ebuild
similarity index 95%
rename from app-text/convertlit/convertlit-1.8-r2.ebuild
rename to app-text/convertlit/convertlit-1.8-r3.ebuild
index 29ada51..e984d02 100644
--- a/app-text/convertlit/convertlit-1.8-r2.ebuild
+++ b/app-text/convertlit/convertlit-1.8-r3.ebuild
@@ -27,6 +27,7 @@ S="${WORKDIR}"
 PATCHES=(
"${FILESDIR}/${P}-respectflags-r1.patch"
"${FILESDIR}/fix-Wformat-security-warnings.patch"
+   "${FILESDIR}/support-ar-variable.patch"
 )
 
 src_compile() {

diff --git a/app-text/convertlit/files/support-ar-variable.patch 
b/app-text/convertlit/files/support-ar-variable.patch
new file mode 100644
index ..4bd3e82
--- /dev/null
+++ b/app-text/convertlit/files/support-ar-variable.patch
@@ -0,0 +1,11 @@
+diff --git a/lib/Makefile b/lib/Makefile
+index 9104f27..0c8b197 100644
+--- a/lib/Makefile
 b/lib/Makefile
+@@ -6,5 +6,5 @@ clean:
+ 
+ openclit.a: litatom.o litdrm.o litlib.o litembiggen.o littags.o litmetatags.o 
litmanifest.o litdirectory.o litsections.o litheaders.o litutil.o sha/mssha1.o 
des/des.o newlzx/lzxglue.o newlzx/lzxd.o
+   -rm -f openclit.a
+-  ar rv openclit.a $^
++  $(AR) rv openclit.a $^
+ 



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkwebmon/files/, x11-plugins/gkwebmon/

2016-08-29 Thread Michael Orlitzky
commit: 46dd8d7362507339b0c573d32a8026599a861a08
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Tue Aug 30 01:03:37 2016 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Tue Aug 30 01:05:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46dd8d73

x11-plugins/gkwebmon: new EAPI=6 revision that respects LDFLAGS.

This new revision is based on the ebuild submitted by Michael
Mair-Keimberger, updated for EAPI=6. The Makefile patch was rewritten;
a lot was simplified by simply appending to the implicit variables
CFLAGS, CPPFLAGS, LDFLAGS, and LDLIBS. The build system should now
respect all of those.

A missing dependency on dev-libs/openssl was added based on -lssl
being present in LDLIBS. The ebuild was also keyworded ~amd64, since
that's what I tested on.

Gentoo-Bug: 334761

Package-Manager: portage-2.2.28

 .../gkwebmon/files/respect-cc-cflags-ldflags.patch | 48 ++
 x11-plugins/gkwebmon/gkwebmon-0.2-r1.ebuild| 28 +
 2 files changed, 76 insertions(+)

diff --git a/x11-plugins/gkwebmon/files/respect-cc-cflags-ldflags.patch 
b/x11-plugins/gkwebmon/files/respect-cc-cflags-ldflags.patch
new file mode 100644
index ..7b3ee50
--- /dev/null
+++ b/x11-plugins/gkwebmon/files/respect-cc-cflags-ldflags.patch
@@ -0,0 +1,48 @@
+From ef7dcbf8495d03c8cf96d4fb30adf38b15e1ca74 Mon Sep 17 00:00:00 2001
+From: Michael Orlitzky 
+Date: Mon, 29 Aug 2016 20:44:45 -0400
+Subject: [PATCH 1/1] Clean up variable usage in Makefile to support LDFLAGS
+ and friends.
+
+---
+ Makefile | 18 +++---
+ 1 file changed, 7 insertions(+), 11 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index b422e79..d89977f 100644
+--- a/Makefile
 b/Makefile
+@@ -3,23 +3,19 @@
+ 
+ PLUGIN_DIR = /usr/local/lib/gkrellm2/plugins
+ 
+-GTK_INCLUDE = `pkg-config gtk+-2.0 --cflags`
+-GTK_LIB = `pkg-config gtk+-2.0 --libs`
++GTK_INCLUDE = $(shell pkg-config gtk+-2.0 --cflags)
++GTK_LIB = $(shell pkg-config gtk+-2.0 --libs)
+ 
+ 
+-#FLAGS = -O2 -Wall -fPIC -std=c99 -pedantic $(GTK_INCLUDE)
+-FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE)
+-LIBS = $(GTK_LIB)
+-
+-LFLAGS = -shared -lssl -lpthread
+-
+-CC = gcc $(CFLAGS) $(FLAGS)
+-#CC = gcc -DDEBUG $(CFLAGS) $(FLAGS)
++CFLAGS += -Wall -fPIC
++CPPFLAGS += $(GTK_INCLUDE)
++LDLIBS += $(GTK_LIB) -lssl -lpthread
++LDFLAGS += -shared
+ 
+ OBJS = webmon.o gk.o
+ 
+ gkwebmon.so: $(OBJS)
+-  $(CC) $(OBJS) -o gkwebmon.so $(LFLAGS) $(LIBS)
++  $(CC) $(OBJS) -o $(@) $(LDFLAGS) $(LDLIBS)
+ 
+ install: gkwebmon.so
+   install gkwebmon.so $(PLUGIN_DIR)
+-- 
+2.7.3
+

diff --git a/x11-plugins/gkwebmon/gkwebmon-0.2-r1.ebuild 
b/x11-plugins/gkwebmon/gkwebmon-0.2-r1.ebuild
new file mode 100644
index ..74b08ad
--- /dev/null
+++ b/x11-plugins/gkwebmon/gkwebmon-0.2-r1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit gkrellm-plugin toolchain-funcs
+
+DESCRIPTION="A web monitor plugin for GKrellM2"
+HOMEPAGE="http://${PN}.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+# The Makefile links with -lssl.
+COMMON_DEPEND="dev-libs/openssl:0"
+
+DEPEND+=" ${COMMON_DEPEND}"
+RDEPEND+=" ${COMMON_DEPEND}"
+
+PATCHES=( "${FILESDIR}/respect-cc-cflags-ldflags.patch" )
+
+src_compile() {
+   emake CC="$(tc-getCC)"
+}



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/astime/files/, x11-plugins/astime/

2016-08-29 Thread Michael Orlitzky
commit: 93581e09c196fd78eaeb9b01e0d45c2c00ff60bf
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Mon Aug 29 23:55:10 2016 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Tue Aug 30 00:08:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93581e09

x11-plugins/astime: new EAPI=6 revision that respects LDFLAGS.

This new revision is based on the ebuild submitted by Michael
Mair-Keimberger, with additional updates for EAPI=6. I have also
simplified the patch that we apply; now it contains only the addition
of LDFLAGS to the linker command. By side-stepping upstream's "make
install" target, we avoid having to patch in DESTDIR and all of that.
Doing so actually simplifies src_install() a bit, as it can be reduced
to a dobin, newman, and dodoc.

Gentoo-Bug: 337428

Package-Manager: portage-2.2.28

 x11-plugins/astime/astime-2.8-r2.ebuild| 39 ++
 x11-plugins/astime/files/respect-ldflags.patch | 11 
 2 files changed, 50 insertions(+)

diff --git a/x11-plugins/astime/astime-2.8-r2.ebuild 
b/x11-plugins/astime/astime-2.8-r2.ebuild
new file mode 100644
index ..fc3803a
--- /dev/null
+++ b/x11-plugins/astime/astime-2.8-r2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Analogue clock utility for X Windows"
+HOMEPAGE="http://www.tigr.net/;
+SRC_URI="${HOMEPAGE}afterstep/download/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="jpeg"
+
+RDEPEND="x11-libs/libXpm
+   x11-libs/libSM
+   jpeg? ( virtual/jpeg:0 )"
+
+DEPEND="${RDEPEND}
+   x11-proto/xproto"
+
+PATCHES=( "${FILESDIR}/respect-ldflags.patch" )
+
+src_configure() {
+   econf $(use_enable jpeg)
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)"
+}
+
+src_install () {
+   dobin "${PN}"
+   newman "${PN}.man" "${PN}.1"
+   einstalldocs
+}

diff --git a/x11-plugins/astime/files/respect-ldflags.patch 
b/x11-plugins/astime/files/respect-ldflags.patch
new file mode 100644
index ..0932559
--- /dev/null
+++ b/x11-plugins/astime/files/respect-ldflags.patch
@@ -0,0 +1,11 @@
+--- a/autoconf/Makefile.common.in  1999-05-02 17:12:39.0 +0200
 b/autoconf/Makefile.common.in  2013-03-24 16:16:27.494987496 +0100
+@@ -34,7 +33,7 @@
+   done
+ 
+ $(PROG):$(OBJS)
+-  $(CC) $(OBJS) $(LIBRARIES) $(EXTRA_LIBRARIES) -o $(@)
++  $(CC) $(OBJS) $(LIBRARIES) $(EXTRA_LIBRARIES) -o $(@) $(LDFLAGS)
+ 
+ .c.o:
+   $(CC) $(CCFLAGS) $(EXTRA_DEFINES) $(INCLUDES) $(EXTRA_INCLUDES) 
-c $*.c



[gentoo-commits] repo/gentoo:master commit in: www-plugins/freshplayerplugin/files/, www-plugins/freshplayerplugin/

2016-08-29 Thread Brian Evans
commit: 9c6483fca11590c6002e58f1607425eb5ce4eafd
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Aug 29 23:12:20 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Aug 29 23:12:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c6483fc

www-plugins/freshplayerplugin: Version bump wrt bug 581228

Package-Manager: portage-2.3.0

 www-plugins/freshplayerplugin/Manifest |  1 +
 .../freshplayerplugin/files/0.3.5-cmake.patch  | 70 ++
 .../freshplayerplugin-0.3.5.ebuild | 85 ++
 3 files changed, 156 insertions(+)

diff --git a/www-plugins/freshplayerplugin/Manifest 
b/www-plugins/freshplayerplugin/Manifest
index 097bfb4..2f5763a 100644
--- a/www-plugins/freshplayerplugin/Manifest
+++ b/www-plugins/freshplayerplugin/Manifest
@@ -2,3 +2,4 @@ DIST freshplayerplugin-0.3.1.tar.gz 2711793 SHA256 
4ed582896fff618d8025dd51bbf2f
 DIST freshplayerplugin-0.3.2.tar.gz 2713241 SHA256 
b3687b9d67ab88c64fea32b17f281f142bf861e33d9135b00da5d90d385d9ce5 SHA512 
9c908ce1a168c0797dc3b0da8e98d722cc32d729acb1c4a8f38b7e95c23fe870baabe4b3f8790d021711578fdb9a61f44aba27cebb924fec9aabcf8cd91323e5
 WHIRLPOOL 
2e9b78bcc3605409ec6853caf31aab03658c044e0d05449a620b31261323856503db8db960db9992d6db4fd61df8f9feb05800124c2f4a450c4ff65b22fc7c34
 DIST freshplayerplugin-0.3.3.tar.gz 2722467 SHA256 
0dc20d6ca083b24225d8bbab88be1ed483034bde71eb360962de47cdb2e51f00 SHA512 
ae85adb7e894adf8c1cd4228d15975c9d5fefdb6c6d3aa90e65d93865996c787f6378eb145f35ed348db67cec0adad794b78a0f77519236c28082630ad3756bc
 WHIRLPOOL 
3e9694738d5e926b44588560b2a6bf50fc35855722bda2494a9d08bd11c8ed844791cdd8a312592be0ef002d3ee6b1c7fc090bbd94ca438ccc8a148eac99
 DIST freshplayerplugin-0.3.4.tar.gz 768318 SHA256 
6f0009e64c59caa5c674b63eabb709ba8da6c85fc7cd45a1d66392e3a24da9a5 SHA512 
d64fa3e6e38b4e17bef04b09c529ff03e86bb4b348e1e6b9a05f7ff4ee98327e288becd1cc6727db687ddca9e9ed04243c80c5e95e927cafad49a273d9c0d216
 WHIRLPOOL 
8fe0d582c25042b233d11fba83c50bd5a54e111c7f84b27ed28ba6cfc83c2101095e0460c67d122a3598d020d061f44e8de8bc922a164a251aeb589ac805291d
+DIST freshplayerplugin-0.3.5.tar.gz 781003 SHA256 
b08f7c6690de13b1e358fef4cab41cb303b9e80b3504678e94c9646f44dd7104 SHA512 
dd447db4cbfdb80b89ff42894099971c100023d19fe5fbad023d5ac1afa827fdc5a169a03f4702ffda3cf6e0dd9c63217b68d97d047ac43afc22f488020a0ba0
 WHIRLPOOL 
cf22758e0ed947db27e8e6e053f17bafc425beebebd9314008eef105e828a0a51f73fd42f2d0c00e12e56f817e2b9078baeb55bd54a6c6a55e8ebd00d2e27ccc

diff --git a/www-plugins/freshplayerplugin/files/0.3.5-cmake.patch 
b/www-plugins/freshplayerplugin/files/0.3.5-cmake.patch
new file mode 100644
index ..f925dfa
--- /dev/null
+++ b/www-plugins/freshplayerplugin/files/0.3.5-cmake.patch
@@ -0,0 +1,70 @@
+diff -uarN a/CMakeLists.txt b/CMakeLists.txt
+--- a/CMakeLists.txt   2015-04-25 11:17:24.0 -0400
 b/CMakeLists.txt   2015-04-26 20:14:43.152014529 -0400
+@@ -61,35 +61,36 @@
+ # optional dependencies
+ message(STATUS "checking for optional dependencies")
+ 
+-pkg_check_modules(PULSEAUDIO QUIET libpulse)
+-pkg_check_modules(JACK QUIET jack)
+-pkg_check_modules(SOXR QUIET soxr)
+ set(WITH_PULSEAUDIO TRUE CACHE STRING "enable PulseAudio support")
+ set(WITH_JACK TRUE CACHE STRING "enable JACK Audio Connection Kit")
+ 
+-if (PULSEAUDIO_FOUND AND WITH_PULSEAUDIO)
++if (WITH_PULSEAUDIO)
++pkg_check_modules(PULSEAUDIO libpulse)
++if (NOT PULSEAUDIO_FOUND)
++message(FATAL_ERROR "PulseAudio requested but not found.")
++endif()
+ add_definitions(-DHAVE_PULSEAUDIO=1)
+-message(STATUS "  found libpulse, version ${PULSEAUDIO_VERSION} 
(optional)")
++message(STATUS "  found libpulse, version ${PULSEAUDIO_VERSION}")
+ list(APPEND REQ_LIBRARY_DIRS ${PULSEAUDIO_LIBRARY_DIRS})
+ list(APPEND REQ_INCLUDE_DIRS ${PULSEAUDIO_INCLUDE_DIRS})
+ list(APPEND REQ_LIBRARIES${PULSEAUDIO_LIBRARIES})
+-else()
+-message(STATUS "  no libpulse found (optional)")
+ endif()
+ 
+-if (JACK_FOUND AND WITH_JACK)
+-message(STATUS "  found jack, version ${JACK_VERSION} (optional)")
+-if (SOXR_FOUND)
+-message(STATUS "  found soxr, version ${SOXR_VERSION}")
+-add_definitions(-DHAVE_JACK=1)
+-list(APPEND REQ_LIBRARY_DIRS "${JACK_LIBRARY_DIRS}" 
"${SOXR_LIBRARY_DIRS}")
+-list(APPEND REQ_INCLUDE_DIRS "${JACK_INCLUDE_DIRS}" 
"${SOXR_INCLUDE_DIRS}")
+-list(APPEND REQ_LIBRARIES"${JACK_LIBRARIES}" "${SOXR_LIBRARIES}")
+-else()
+-message(STATUS "  no soxr found, JACK output disabled")
++if (WITH_JACK)
++pkg_check_modules(JACK QUIET jack)
++if (NOT JACK_FOUND)
++message(FATAL_ERROR "JACK support requested but not found.")
++endif()
++pkg_check_modules(SOXR QUIET soxr)
++if (NOT SOXR_FOUND)
++message(FATAL_ERROR "SOXR libray not found but needed for JACK 
support.")
+ endif()
+-else()
+-message(STATUS "  no jack found (optional)")
++message(STATUS "  

[gentoo-commits] repo/gentoo: New branch: ejabberd-16.08

2016-08-29 Thread Amadeusz Piotr Żołnowski
commit: 
Commit: Amadeusz Piotr Żołnowski  gentoo  org>
CommitDate: Mon Aug 29 22:09:38 2016 +

New branch: ejabberd-16.08




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

2016-08-29 Thread James Le Cuirot
commit: 4419c2078b569f36ce73f64f92d6a152a94e0b7f
Author: Vladislav Rassokhin  jetbrains  com>
AuthorDate: Wed Jul 20 13:28:59 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Aug 29 21:53:58 2016 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=4419c207

dev-java/gradle-bin: Version bump to 2.14.1

Closes: https://github.com/gentoo/java-overlay/pull/33

Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/dev-java/gradle-bin/Manifest b/dev-java/gradle-bin/Manifest
index 97ee7e2..127ac65 100644
--- a/dev-java/gradle-bin/Manifest
+++ b/dev-java/gradle-bin/Manifest
@@ -5,6 +5,7 @@ DIST gradle-2.11-all.zip 69319677 SHA256 
a1242e4db8f979998796b1844e608c2acf8f8f5
 DIST gradle-2.12-all.zip 69509213 SHA256 
d8b1948a575dc9ec13e03db94502ce91815d73da023f611296c04b852164cb5f SHA512 
55429b8066458408c1bd8a4ecb34ae027ecb925d0ca4123edee78c7afb522600236b6d2d6af3834bca39b7082f767e2474c65566ed59da334dd27849f6d77591
 WHIRLPOOL 
a11f6f3d31bad69850bb326b4f6f38c0a30c50a0424e8c5b474fb05be96264ee733f0ca3e3345163fb45acc580ca4bfc632660e5816ffe90e913ad3063576e7a
 DIST gradle-2.13-all.zip 69869079 SHA256 
fb126ed684150f9dc39a811cbcf4daada4292fd387ed998c151ff2cf2536d94d SHA512 
78fd6fe5f6540e13bac476bf8c34cc8a175ccf5350a970dd85c7ac003102a55cf10544fcb7cfe5e74c47458a6aed39b3fed5975ffec24bcd3029af884389faf2
 WHIRLPOOL 
d30f5efb346b878f8c74708a3e16f58ee5b0b27be4fcf0e96af4c43784bca09d22bbcd8872f0f367de1708620ee8578da19d3a638867210dd938119cc36561c0
 DIST gradle-2.14-all.zip 68973218 SHA256 
65bbc0ef9c48be86fb06522fc927d59dcc7c04266f2bb8156be76971f7c3fc4a SHA512 
1d5448183d1ba7ff12f9f8714bc77c55788b8bbd5c9736a9eb764433e877a56deb2f2445cdc9e9a6d0bfcf26fe0aa9ff5f825a58ff3d2a868ef38c87d7562c64
 WHIRLPOOL 
2782b04c17322b964a8551c8a8892731ffc35c5136186c6070b051c18c44794b39f7c6ff5e3c4b6caa0ade98998304c20fbe63978388b4f921159de504664375
+DIST gradle-2.14.1-all.zip 69028536 SHA256 
88a910cdf2e03ebbb5fe90f7ecf534fc9ac22e12112dc9a2fee810c598a76091 SHA512 
c62b3df6e16711e193bdc42b0248d9ccac76f2ba9088008265b40feaae539aebb9d36a6adf8513836b0b95b3c6180bddb918ee1b55e2af234f7a03a43f9d655a
 WHIRLPOOL 
2e9c76a65df14a1c13e9d29e1cb2a30d0822a8625cf2a5dd582ceee230545e52812cf2ab285c38af516d11fcecce11568c88f491720325860db11e11336ef385
 DIST gradle-2.2.1-all.zip 58602849 SHA256 
1d7c28b3731906fd1b2955946c1d052303881585fc14baedd675e4cf2bc1ecab SHA512 
16775f13a4bc2e9bec32b2838434dace7f04fb49461d65a8e44a4142c9742930a91f07bf1db498d3f68bfaa1be49387f36039354280edb7cd9d6783e43fc
 WHIRLPOOL 
6f8b99e08054f7c1d2ee24fb2bf84d099dcdf9e61dc6b92a03dc2e0d6747dec81f09769d50d893eee5c4026f2e46d1fecd11a3813b8f7fb9db8c9b3a46926477
 DIST gradle-2.3-all.zip 60081333 SHA256 
515962aeec8c3e67b97f0c13c4575beeed1b5da16181d8b9054416339edc8c2d SHA512 
316a8bcfdab50bba0f0d19d42fff8100cca8bfbaca919255da5beb3ae7f082bf40d021e1c668075260d74116058acee8f52911b0dce036800701824ecbc26343
 WHIRLPOOL 
4a8fe3a6fffb26cb13f9ff4e70f99e9d13f0a9bec5a3267f310d5987ff93a1df8c446816a463654e84f5b179ad72bdab01404087ddcac212576268b7adfada5b
 DIST gradle-2.4-all.zip 65433094 SHA256 
371cb9fbebbe9880d147f59bab36d61eee122854ef8c9ee1ecf12b82368bcf10 SHA512 
a09b94f3453043ee3d73fbf9e029df8f82f94f27071338a1557e9504a0cf69ddd0f58821a021e23d798d66872c54c52c9e850bdfb559c674b9d418de78de60d5
 WHIRLPOOL 
816e04e67c55c36f1224534a40f5398f7aa32abe8f40d336d5596b260d784de0fa86e8684e7cae3b1c00a0d3067d61294aca44e23bef50ddd7627e41

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

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

2016-08-29 Thread James Le Cuirot
commit: cbd8af1a608e1860447e3dd6a38fbf70552df02d
Author: Vladislav Rassokhin  jetbrains  com>
AuthorDate: Mon Jun 27 07:43:16 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Aug 29 21:53:58 2016 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=cbd8af1a

dev-java/gradle-bin: Version bump to 2.14

Closes: https://github.com/gentoo/java-overlay/pull/33

Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/dev-java/gradle-bin/Manifest b/dev-java/gradle-bin/Manifest
index b700a81..97ee7e2 100644
--- a/dev-java/gradle-bin/Manifest
+++ b/dev-java/gradle-bin/Manifest
@@ -4,6 +4,7 @@ DIST gradle-2.10-all.zip 68425872 SHA256 
496d60c331f8666f99b66d08ff67a880697a7e8
 DIST gradle-2.11-all.zip 69319677 SHA256 
a1242e4db8f979998796b1844e608c2acf8f8f54df518bbb3d5954e52253ba71 SHA512 
05be0ed4dbb085837020381537683e9ee29e974cf03bd9d7546cf571ea5e4b104b3559b5b60232b554310fd1825c142189d9f7bf5e93d94ac06e9875e69f8aee
 WHIRLPOOL 
4372a6a70e0ee260e7afdba2b15e0db87215ef192db87ba7ccf3e2d39b9adf5a979f56721f5ae2a10aba78f9e591ac5230ce9a17fce088eea785d370aa910898
 DIST gradle-2.12-all.zip 69509213 SHA256 
d8b1948a575dc9ec13e03db94502ce91815d73da023f611296c04b852164cb5f SHA512 
55429b8066458408c1bd8a4ecb34ae027ecb925d0ca4123edee78c7afb522600236b6d2d6af3834bca39b7082f767e2474c65566ed59da334dd27849f6d77591
 WHIRLPOOL 
a11f6f3d31bad69850bb326b4f6f38c0a30c50a0424e8c5b474fb05be96264ee733f0ca3e3345163fb45acc580ca4bfc632660e5816ffe90e913ad3063576e7a
 DIST gradle-2.13-all.zip 69869079 SHA256 
fb126ed684150f9dc39a811cbcf4daada4292fd387ed998c151ff2cf2536d94d SHA512 
78fd6fe5f6540e13bac476bf8c34cc8a175ccf5350a970dd85c7ac003102a55cf10544fcb7cfe5e74c47458a6aed39b3fed5975ffec24bcd3029af884389faf2
 WHIRLPOOL 
d30f5efb346b878f8c74708a3e16f58ee5b0b27be4fcf0e96af4c43784bca09d22bbcd8872f0f367de1708620ee8578da19d3a638867210dd938119cc36561c0
+DIST gradle-2.14-all.zip 68973218 SHA256 
65bbc0ef9c48be86fb06522fc927d59dcc7c04266f2bb8156be76971f7c3fc4a SHA512 
1d5448183d1ba7ff12f9f8714bc77c55788b8bbd5c9736a9eb764433e877a56deb2f2445cdc9e9a6d0bfcf26fe0aa9ff5f825a58ff3d2a868ef38c87d7562c64
 WHIRLPOOL 
2782b04c17322b964a8551c8a8892731ffc35c5136186c6070b051c18c44794b39f7c6ff5e3c4b6caa0ade98998304c20fbe63978388b4f921159de504664375
 DIST gradle-2.2.1-all.zip 58602849 SHA256 
1d7c28b3731906fd1b2955946c1d052303881585fc14baedd675e4cf2bc1ecab SHA512 
16775f13a4bc2e9bec32b2838434dace7f04fb49461d65a8e44a4142c9742930a91f07bf1db498d3f68bfaa1be49387f36039354280edb7cd9d6783e43fc
 WHIRLPOOL 
6f8b99e08054f7c1d2ee24fb2bf84d099dcdf9e61dc6b92a03dc2e0d6747dec81f09769d50d893eee5c4026f2e46d1fecd11a3813b8f7fb9db8c9b3a46926477
 DIST gradle-2.3-all.zip 60081333 SHA256 
515962aeec8c3e67b97f0c13c4575beeed1b5da16181d8b9054416339edc8c2d SHA512 
316a8bcfdab50bba0f0d19d42fff8100cca8bfbaca919255da5beb3ae7f082bf40d021e1c668075260d74116058acee8f52911b0dce036800701824ecbc26343
 WHIRLPOOL 
4a8fe3a6fffb26cb13f9ff4e70f99e9d13f0a9bec5a3267f310d5987ff93a1df8c446816a463654e84f5b179ad72bdab01404087ddcac212576268b7adfada5b
 DIST gradle-2.4-all.zip 65433094 SHA256 
371cb9fbebbe9880d147f59bab36d61eee122854ef8c9ee1ecf12b82368bcf10 SHA512 
a09b94f3453043ee3d73fbf9e029df8f82f94f27071338a1557e9504a0cf69ddd0f58821a021e23d798d66872c54c52c9e850bdfb559c674b9d418de78de60d5
 WHIRLPOOL 
816e04e67c55c36f1224534a40f5398f7aa32abe8f40d336d5596b260d784de0fa86e8684e7cae3b1c00a0d3067d61294aca44e23bef50ddd7627e41

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

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

2016-08-29 Thread James Le Cuirot
commit: e82499d74296ea3937d6a245e66067ec5f5b46f3
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Sat Aug  6 15:07:48 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Aug 29 21:44:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e82499d7

dev-lang/scala: remove unused patch

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

Signed-off-by: James Le Cuirot  gentoo.org>

 dev-lang/scala/files/scala-2.7.3-build.xml.patch | 10 --
 1 file changed, 10 deletions(-)

diff --git a/dev-lang/scala/files/scala-2.7.3-build.xml.patch 
b/dev-lang/scala/files/scala-2.7.3-build.xml.patch
deleted file mode 100644
index 3401bac..
--- a/dev-lang/scala/files/scala-2.7.3-build.xml.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 build.xml.orig 2009-02-11 22:47:38.0 +1300
-+++ build.xml  2009-02-11 22:47:58.0 +1300
-@@ -627,7 +627,6 @@
-   
-   
-   
--  
- 
-   
-   



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

2016-08-29 Thread Michał Górny
commit: 6b3fc923145a19ae5bf212ed7fac4969c6fef1c5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 29 21:40:51 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 29 21:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3fc923

sys-devel/llvm: Fix cmake unused arg warnings with USE=-doc

 sys-devel/llvm/llvm-.ebuild | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/sys-devel/llvm/llvm-.ebuild b/sys-devel/llvm/llvm-.ebuild
index e4be885..6fbe8c8 100644
--- a/sys-devel/llvm/llvm-.ebuild
+++ b/sys-devel/llvm/llvm-.ebuild
@@ -188,16 +188,15 @@ multilib_src_configure() {
-DLLVM_BUILD_DOCS=$(usex doc)
-DLLVM_ENABLE_SPHINX=$(usex doc)
-DLLVM_ENABLE_DOXYGEN=OFF
+   -DLLVM_INSTALL_UTILS=ON
+   )
+   use doc && mycmakeargs+=(

-DLLVM_INSTALL_HTML="${EPREFIX}/usr/share/doc/${PF}/html"
-DSPHINX_WARNINGS_AS_ERRORS=OFF
-   -DLLVM_INSTALL_UTILS=ON
)
-
-   if use gold; then
-   mycmakeargs+=(
-   -DLLVM_BINUTILS_INCDIR="${EPREFIX}"/usr/include
-   )
-   fi
+   use gold && mycmakeargs+=(
+   -DLLVM_BINUTILS_INCDIR="${EPREFIX}"/usr/include
+   )
fi
 
if tc-is-cross-compiler; then



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

2016-08-29 Thread Michał Górny
commit: 9046a22556866234773a494af9dd1657f2765d1a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 29 21:41:24 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 29 21:43:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9046a225

sys-devel/clang: Fetch llvm src with USE=test, to support unittests

 sys-devel/clang/clang-.ebuild | 13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/sys-devel/clang/clang-.ebuild 
b/sys-devel/clang/clang-.ebuild
index 5d96509..8d472da 100644
--- a/sys-devel/clang/clang-.ebuild
+++ b/sys-devel/clang/clang-.ebuild
@@ -75,10 +75,19 @@ pkg_setup() {
 src_unpack() {
git-r3_fetch "http://llvm.org/git/clang-tools-extra.git
https://github.com/llvm-mirror/clang-tools-extra.git;
+   if use test; then
+   # needed for patched gtest
+   git-r3_fetch "http://llvm.org/git/llvm.git
+   https://github.com/llvm-mirror/llvm.git;
+   fi
git-r3_fetch
 
git-r3_checkout http://llvm.org/git/clang-tools-extra.git \
"${S}"/tools/clang/tools/extra
+   if use test; then
+   git-r3_checkout http://llvm.org/git/llvm.git \
+   "${WORKDIR}"/llvm
+   fi
git-r3_checkout
 }
 
@@ -140,10 +149,12 @@ multilib_src_configure() {
-DCLANG_ENABLE_ARCMT=$(usex static-analyzer)
-DCLANG_ENABLE_STATIC_ANALYZER=$(usex static-analyzer)
)
+   use test && mycmakeargs+=(
+   -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm"
+   )
 
if multilib_is_native_abi; then
mycmakeargs+=(
-   # TODO: docs don't work out-of-llvm
-DLLVM_BUILD_DOCS=$(usex doc)
-DLLVM_ENABLE_SPHINX=$(usex doc)
-DLLVM_ENABLE_DOXYGEN=OFF



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

2016-08-29 Thread Michał Górny
commit: 9beeb68834b2bdbb1bb3ad4747194346d7adeaf8
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 29 21:42:40 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 29 21:43:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9beeb688

sys-devel/clang: Fix cmake unused arg warnings with USE=-doc

 sys-devel/clang/clang-.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-devel/clang/clang-.ebuild 
b/sys-devel/clang/clang-.ebuild
index 8d472da..862afbd 100644
--- a/sys-devel/clang/clang-.ebuild
+++ b/sys-devel/clang/clang-.ebuild
@@ -158,6 +158,8 @@ multilib_src_configure() {
-DLLVM_BUILD_DOCS=$(usex doc)
-DLLVM_ENABLE_SPHINX=$(usex doc)
-DLLVM_ENABLE_DOXYGEN=OFF
+   )
+   use doc && mycmakeargs+=(

-DCLANG_INSTALL_HTML="${EPREFIX}/usr/share/doc/${PF}/clang"
-DSPHINX_WARNINGS_AS_ERRORS=OFF
)



[gentoo-commits] repo/gentoo:master commit in: media-sound/tuxguitar/

2016-08-29 Thread James Le Cuirot
commit: 3dabd1e26db8d0c520bc2a5a916f383d82bec882
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Aug 29 21:30:00 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Aug 29 21:30:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dabd1e2

media-sound/tuxguitar: Only call append-flags once to avoid duplicates

Package-Manager: portage-2.3.0

 media-sound/tuxguitar/tuxguitar-1.3.2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-sound/tuxguitar/tuxguitar-1.3.2.ebuild 
b/media-sound/tuxguitar/tuxguitar-1.3.2.ebuild
index 001b67c..fe46d5c 100644
--- a/media-sound/tuxguitar/tuxguitar-1.3.2.ebuild
+++ b/media-sound/tuxguitar/tuxguitar-1.3.2.ebuild
@@ -65,11 +65,12 @@ src_compile() {
local build_order=( ${LIBRARY_LIST[@]} ${PLUGIN_LIST[@]/#/TuxGuitar-} )
local directory
 
+   append-flags -fPIC $(java-pkg_get-jni-cflags)
+
for directory in ${build_order[@]}; do
cd "${S}"/${directory} || die "cd ${directory} failed"
eant
if [[ -d jni ]]; then
-   append-flags -fPIC $(java-pkg_get-jni-cflags)
CC=$(tc-getCC) emake -C jni
fi
done



[gentoo-commits] repo/gentoo:master commit in: media-sound/tuxguitar/, media-sound/tuxguitar/files/

2016-08-29 Thread James Le Cuirot
commit: 6ed0c1e3e76aed0126175dbe7a9db4dd98782e90
Author: Jonathan Scruggs  gmail  com>
AuthorDate: Fri Aug 26 14:28:21 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Aug 29 21:30:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ed0c1e3

media-sound/tuxguitar: New package

A multitrack tablature editor and player that allows you to
compose music using the following features:
- Tablature editor
- Score Viewer
- Multitrack display
- Autoscroll while playing
- Note duration management
- Various effects (bend, slide, vibrato, hammer-on/pull-off)
- Support for triplets (5,6,7,9,10,11,12)
- Repeat open and close
- Time signature management
- Tempo management
- Imports and exports gp3,gp4 and gp5 files

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=360117

Package-Manager: portage-2.3.0

Signed-off-by: Jonathan Scruggs (j.scruggs  gmail.com)
Closes: https://github.com/gentoo/gentoo/pull/2149
Signed-off-by: James Le Cuirot  gentoo.org>

 media-sound/tuxguitar/Manifest |   1 +
 .../files/tuxguitar-fixed-ant-files.patch  | 237 +
 media-sound/tuxguitar/metadata.xml |  42 
 media-sound/tuxguitar/tuxguitar-1.3.2.ebuild   | 130 +++
 4 files changed, 410 insertions(+)

diff --git a/media-sound/tuxguitar/Manifest b/media-sound/tuxguitar/Manifest
new file mode 100644
index ..c687c7d
--- /dev/null
+++ b/media-sound/tuxguitar/Manifest
@@ -0,0 +1 @@
+DIST tuxguitar-1.3.2-src.tar.gz 82294553 SHA256 
1295cded91a76e4310648036578a6631faaa7231cd5524786891fbfdc3a0b551 SHA512 
fb94472df25578d94ad11cd385cfc9347bfefcdd8ebedd2e785f3645d6b2e0d6d87d3fc457af159865b3fae77ad443ac4246b3c6fbe42397f4d15908dd3b7149
 WHIRLPOOL 
35e538692ca546d045c607347d57a7f4601f7444753a208065458efc40d24060dfc5aca2d5b3a66869136a42e143676366334c5d49ef6913b2ad15583b2a3e3f

diff --git a/media-sound/tuxguitar/files/tuxguitar-fixed-ant-files.patch 
b/media-sound/tuxguitar/files/tuxguitar-fixed-ant-files.patch
new file mode 100644
index ..9e1cbf7
--- /dev/null
+++ b/media-sound/tuxguitar/files/tuxguitar-fixed-ant-files.patch
@@ -0,0 +1,237 @@
+diff -purN a/TuxGuitar/build.properties b/TuxGuitar/build.properties
+--- a/TuxGuitar/build.properties   2016-03-16 21:26:23.0 +
 b/TuxGuitar/build.properties   2016-08-23 10:55:06.271917712 +0100
+@@ -5,4 +5,5 @@ ant.build.javac.source=1.5
+ ant.build.javac.target=1.5
+ 
+ path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
++path.tuxguitar-editor-utils=../TuxGuitar-editor-utils/tuxguitar-editor-utils.jar
+ path.swt=../TuxGuitar/lib/swt.jar
+diff -purN a/TuxGuitar/build.xml b/TuxGuitar/build.xml
+--- a/TuxGuitar/build.xml  2016-03-16 21:26:23.0 +
 b/TuxGuitar/build.xml  2016-08-23 08:59:03.987797193 +0100
+@@ -12,6 +12,7 @@
+   
+   
+   
++  
+   
+   
+   
+diff -purN a/TuxGuitar-awt-graphics/build.properties 
b/TuxGuitar-awt-graphics/build.properties
+--- a/TuxGuitar-awt-graphics/build.properties  1970-01-01 01:00:00.0 
+0100
 b/TuxGuitar-awt-graphics/build.properties  2016-08-23 09:11:06.737851049 
+0100
+@@ -0,0 +1,7 @@
++### ANT Flags
++#
++# build.compiler=gcj
++ant.build.javac.source=1.5
++ant.build.javac.target=1.5
++
++path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
+diff -purN a/TuxGuitar-awt-graphics/build.xml 
b/TuxGuitar-awt-graphics/build.xml
+--- a/TuxGuitar-awt-graphics/build.xml 1970-01-01 01:00:00.0 +0100
 b/TuxGuitar-awt-graphics/build.xml 2016-08-23 12:40:24.005858183 +0100
+@@ -0,0 +1,45 @@
++
++
++
++  
++  TuxGuitar AWT Graphics
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  +-+
++  |  B U I L D I N G   P L U G I N  |
++  +-+
++  
++  
++  
++  
++  
++  
++  +---+
++  |P A C K A G I N G   P L U G I N|
++  +---+
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++
+diff -purN a/TuxGuitar-editor-utils/build.properties 
b/TuxGuitar-editor-utils/build.properties
+--- a/TuxGuitar-editor-utils/build.properties  1970-01-01 01:00:00.0 
+0100
 b/TuxGuitar-editor-utils/build.properties  2016-08-23 08:46:42.164749665 
+0100
+@@ -0,0 +1,7 @@
++### ANT Flags
++#
++# build.compiler=gcj
++ant.build.javac.source=1.5
++ant.build.javac.target=1.5
++
++path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
+diff -purN 

[gentoo-commits] proj/baselayout:master commit in: etc/

2016-08-29 Thread William Hubbs
commit: db65c12659a298d3795d042079868f171432eb5c
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Aug 29 21:28:33 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Aug 29 21:28:33 2016 +
URL:https://gitweb.gentoo.org/proj/baselayout.git/commit/?id=db65c126

etc/services: add assignment for ircs-u

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

 etc/services | 1 +
 1 file changed, 1 insertion(+)

diff --git a/etc/services b/etc/services
index 6b75586..d6b2bb4 100644
--- a/etc/services
+++ b/etc/services
@@ -1166,6 +1166,7 @@ x11-ssh   6010/tcpx11-ssh-offset
 x11-ssh6010/udpx11-ssh-offset
 ircd   6667/tcp# Internet Relay Chat
 ircd   6667/udp
+ircs-u 6697/tcp# Internet Relay Chat via 
TLS/SSL
 jetdirect  9100/tcp# HP JetDirect card
 jetdirect  9100/udp
 mandelspawn9359/udpmandelbrot  # network mandelbrot



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

2016-08-29 Thread Christoph Junghans
commit: 797b54ace17be65a88dbba7253a2bd03f0cf792e
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 21:11:33 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Aug 29 21:22:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=797b54ac

sci-libs/fftw: re-add keywords for multilib ebuild

Package-Manager: portage-2.2.28

 sci-libs/fftw/fftw-3.3.5-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/fftw/fftw-3.3.5-r2.ebuild 
b/sci-libs/fftw/fftw-3.3.5-r2.ebuild
index 43c316e..e577bdc 100644
--- a/sci-libs/fftw/fftw-3.3.5-r2.ebuild
+++ b/sci-libs/fftw/fftw-3.3.5-r2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} = * ]]; then
EGIT_REPO_URI="https://github.com/FFTW/fftw3.git;
 else
SRC_URI="http://www.fftw.org/${P}.tar.gz;
-   KEYWORDS=""
+   KEYWORDS="~alpha ~ia64 ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 fi
 
 LICENSE="GPL-2+"



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

2016-08-29 Thread Christoph Junghans
commit: 972476956bb1b5d808cad10ea39fdfad44f20a16
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 21:09:53 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Aug 29 21:22:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97247695

virtual/mpi: re-add keywords for multilib ebuild

Package-Manager: portage-2.2.28

 virtual/mpi/mpi-2.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/mpi/mpi-2.0-r4.ebuild b/virtual/mpi/mpi-2.0-r4.ebuild
index ce14b39..92e3b14 100644
--- a/virtual/mpi/mpi-2.0-r4.ebuild
+++ b/virtual/mpi/mpi-2.0-r4.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE=""
 SRC_URI=""
 LICENSE=""
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux"
 IUSE="cxx fortran romio threads"
 
 RDEPEND="|| (



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

2016-08-29 Thread Christoph Junghans
commit: 93db8016a17d55975c724caf302e5df75c79362b
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 21:16:07 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Aug 29 21:22:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93db8016

dev-libs/boost: re-add keywords for mpi multilib ebuild

Package-Manager: portage-2.2.28

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

diff --git a/dev-libs/boost/boost-1.61.0-r1.ebuild 
b/dev-libs/boost/boost-1.61.0-r1.ebuild
index 937dbb4..300cbf9 100644
--- a/dev-libs/boost/boost-1.61.0-r1.ebuild
+++ b/dev-libs/boost/boost-1.61.0-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/boost/${MY_P}.tar.bz2"
 
 LICENSE="Boost-1.0"
 SLOT="0/${PV}" # ${PV} instead ${MAJOR_V} due to bug 486122
-KEYWORDS=""
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt"
 
 IUSE="context debug doc icu +nls mpi python static-libs +threads tools"
 



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

2016-08-29 Thread Zac Medico
commit: 195b7b8b4527988d9bfd97c8bc0c98bad04569ef
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Aug 29 21:21:24 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Aug 29 21:22:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=195b7b8b

dev-python/pyformance: PYTHON_COMPAT: add python3_5

Package-Manager: portage-2.3.0

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

diff --git a/dev-python/pyformance/pyformance-0.3.2.ebuild 
b/dev-python/pyformance/pyformance-0.3.2.ebuild
index 1da5985..a9dcc8c 100644
--- a/dev-python/pyformance/pyformance-0.3.2.ebuild
+++ b/dev-python/pyformance/pyformance-0.3.2.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_4} )
+PYTHON_COMPAT=( python{2_7,3_{4,5}} )
 
 inherit distutils-r1
 



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

2016-08-29 Thread Christoph Junghans
commit: 45e8f6896672681be46532ea45b46d4975d2832a
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 20:54:50 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Aug 29 20:58:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45e8f689

sys-cluster/mpich: re-add keyword for multilib ebuild

Package-Manager: portage-2.2.28

 sys-cluster/mpich/mpich-3.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/mpich/mpich-3.2-r1.ebuild 
b/sys-cluster/mpich/mpich-3.2-r1.ebuild
index 90b3ee3..a61ef87 100644
--- a/sys-cluster/mpich/mpich-3.2-r1.ebuild
+++ b/sys-cluster/mpich/mpich-3.2-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="http://www.mpich.org/static/downloads/${PV}/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="mpich"
-KEYWORDS=""
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



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

2016-08-29 Thread Christoph Junghans
commit: 51de2691ca375d31e13a48b83e755abc3b7f59d7
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 20:52:10 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Aug 29 20:58:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51de2691

sys-cluster/openmpi: re-add keyword for multilib ebuild

Package-Manager: portage-2.2.28

 sys-cluster/openmpi/openmpi-1.10.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/openmpi/openmpi-1.10.3-r1.ebuild 
b/sys-cluster/openmpi/openmpi-1.10.3-r1.ebuild
index 30db1e1..c4fe80b 100644
--- a/sys-cluster/openmpi/openmpi-1.10.3-r1.ebuild
+++ b/sys-cluster/openmpi/openmpi-1.10.3-r1.ebuild
@@ -33,7 +33,7 @@ HOMEPAGE="http://www.open-mpi.org;
 SRC_URI="http://www.open-mpi.org/software/ompi/v$(get_version_component_range 
1-2)/downloads/${MY_P}.tar.bz2"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux"
 IUSE="cma cuda +cxx elibc_FreeBSD fortran heterogeneous ipv6 java mpi-threads 
numa romio threads vt
${IUSE_OPENMPI_FABRICS} ${IUSE_OPENMPI_RM} 
${IUSE_OPENMPI_OFED_FEATURES}"
 



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

2016-08-29 Thread Christoph Junghans
commit: fe4f2611be6a44409e65cec56a3eb0e2dfde68ce
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 20:52:39 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Aug 29 20:58:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe4f2611

sys-cluster/openmpi: clean up

Package-Manager: portage-2.2.28

 sys-cluster/openmpi/Manifest |   1 -
 sys-cluster/openmpi/openmpi-1.10.2-r1.ebuild | 194 ---
 2 files changed, 195 deletions(-)

diff --git a/sys-cluster/openmpi/Manifest b/sys-cluster/openmpi/Manifest
index de4c9f3..92cd929 100644
--- a/sys-cluster/openmpi/Manifest
+++ b/sys-cluster/openmpi/Manifest
@@ -1,4 +1,3 @@
-DIST openmpi-1.10.2.tar.bz2 13349195 SHA256 
8846e7e69a203db8f50af90fa037f0ba47e3f32e4c9ccdae2db22898fd4d1f59 SHA512 
d34d625ef6ff98919d68f6339c5f880c6afea0d5b4caf0012bdc2dc0097038e6e2585b60f252cd2f97c811a9c936fc67a22e4037a045fe9d6ae66f3752020c8c
 WHIRLPOOL 
59c31a3940eac4c1782669ab3bc71821182fddcb4789f136a1b8895af03cb565d7e57357a5bb6c05342adde0a5c49c3914e2ca4b8e6e203f45afb98d480f5e30
 DIST openmpi-1.10.3.tar.bz2 13368112 SHA256 
7484bb664312082fd12edc2445b42362089b53b17fb5fce12efd4fe452cc254d SHA512 
1ddad1ffecfd07e68e891a2cfdb9d2f5baa1a91ad5286347f2884820839455c002eb4316ae62d30a4ee2efbcfe460eade7606187ea862ac4aef77ab6a2e2475d
 WHIRLPOOL 
bbe9cb0ee0ba34bab71ca10957b694d7e964b78c0efda1fff8da0361f84a8890553aad7e766f062259322dbf478918781853eb743f56ed505ff542f00a1868bd
 DIST openmpi-1.4.3.tar.bz2 6626909 SHA256 
220b72b1c7ee35469ff74b4cfdbec457158ac6894635143a33e9178aa3981015 SHA512 
c33d5e019ba0b080aa34ecfa085182349da806e4bff26c1bf4dbdc8fb3f8f3c38899b9d96d671e1ae337b523ac9d634ae25c49d9af6eef2bc340c29dba75b1b8
 WHIRLPOOL 
92349d7bd16ff6e8563df602c215ce98ce5624b38a2975c13832d5b9504691c844206acad4c45376fe53e0116fe591782a3e5f8a132c4ac18ae793470d57db55
 DIST openmpi-1.4.5.tar.bz2 6643760 SHA256 
a3857bc69b7d5258cf7fc1ed1581d9ac69110f5c17976b949cb7ec789aae462d SHA512 
f89922345cde8978483e397e9016103626db3f1787f9afccaf0f60d59caa2a4409b47b01ac221d60e24e241f2afecb636ca89688bf326dc0ca5c817de96b3e99
 WHIRLPOOL 
2008bd952f9cc93ead6508267f5a45ee6d9ebf9136e35e25b798400d162173514da73349518bfada4777471c32d315e8556bbee8847a5268719d6b32fd0fd811

diff --git a/sys-cluster/openmpi/openmpi-1.10.2-r1.ebuild 
b/sys-cluster/openmpi/openmpi-1.10.2-r1.ebuild
deleted file mode 100644
index db334b5..
--- a/sys-cluster/openmpi/openmpi-1.10.2-r1.ebuild
+++ /dev/null
@@ -1,194 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-FORTRAN_NEEDED=fortran
-
-inherit cuda flag-o-matic fortran-2 java-pkg-opt-2 toolchain-funcs versionator 
multilib-minimal
-
-MY_P=${P/-mpi}
-S=${WORKDIR}/${MY_P}
-
-IUSE_OPENMPI_FABRICS="
-   openmpi_fabrics_ofed
-   openmpi_fabrics_knem
-   openmpi_fabrics_psm"
-
-IUSE_OPENMPI_RM="
-   openmpi_rm_pbs
-   openmpi_rm_slurm"
-
-IUSE_OPENMPI_OFED_FEATURES="
-   openmpi_ofed_features_control-hdr-padding
-   openmpi_ofed_features_connectx-xrc
-   openmpi_ofed_features_udcm
-   openmpi_ofed_features_rdmacm
-   openmpi_ofed_features_dynamic-sl
-   openmpi_ofed_features_failover"
-
-DESCRIPTION="A high-performance message passing library (MPI)"
-HOMEPAGE="http://www.open-mpi.org;
-SRC_URI="http://www.open-mpi.org/software/ompi/v$(get_version_component_range 
1-2)/downloads/${MY_P}.tar.bz2"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="cma cuda +cxx elibc_FreeBSD fortran heterogeneous ipv6 java mpi-threads 
numa romio threads vt
-   ${IUSE_OPENMPI_FABRICS} ${IUSE_OPENMPI_RM} 
${IUSE_OPENMPI_OFED_FEATURES}"
-
-REQUIRED_USE="openmpi_rm_slurm? ( !openmpi_rm_pbs )
-   openmpi_rm_pbs? ( !openmpi_rm_slurm )
-   openmpi_fabrics_psm? ( openmpi_fabrics_ofed )
-   openmpi_ofed_features_control-hdr-padding? ( openmpi_fabrics_ofed )
-   openmpi_ofed_features_connectx-xrc? ( openmpi_fabrics_ofed )
-   openmpi_ofed_features_udcm? ( openmpi_fabrics_ofed )
-   openmpi_ofed_features_rdmacm? ( openmpi_fabrics_ofed )
-   openmpi_ofed_features_dynamic-sl? ( openmpi_fabrics_ofed )
-   openmpi_ofed_features_failover? ( openmpi_fabrics_ofed )"
-
-MPI_UNCLASSED_DEP_STR="
-   vt? (
-   !dev-libs/libotf
-   !app-text/lcdf-typetools
-   )"
-
-# dev-util/nvidia-cuda-toolkit is always multilib
-CDEPEND="
-   !sys-cluster/mpich
-   !sys-cluster/mpich2
-   !sys-cluster/mpiexec
-   >=dev-libs/libevent-2.0.21[${MULTILIB_USEDEP}]
-   dev-libs/libltdl:0[${MULTILIB_USEDEP}]
-   >=sys-apps/hwloc-1.10.0-r2[${MULTILIB_USEDEP},numa?]
-   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
-   cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1 )
-   elibc_FreeBSD? ( dev-libs/libexecinfo )
-   openmpi_fabrics_ofed? ( sys-fabric/ofed:* )
-   openmpi_fabrics_knem? ( sys-cluster/knem )
-   openmpi_fabrics_psm? ( 

[gentoo-commits] proj/sci:master commit in: sys-cluster/mpich/

2016-08-29 Thread Christoph Junghans
commit: 5d752bc268225622a3238238d44a5b7da904aca9
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 20:49:22 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Aug 29 20:49:22 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=5d752bc2

sys-cluster/mpich: fixed another typo

Package-Manager: portage-2.2.28

 sys-cluster/mpich/mpich-3.2-r2.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-cluster/mpich/mpich-3.2-r2.ebuild 
b/sys-cluster/mpich/mpich-3.2-r2.ebuild
index 64ebfc0..d0eba49 100644
--- a/sys-cluster/mpich/mpich-3.2-r2.ebuild
+++ b/sys-cluster/mpich/mpich-3.2-r2.ebuild
@@ -91,7 +91,6 @@ multilib_src_configure() {
--with-pm=hydra \
--disable-fast \
--enable-versioning \
-   --with-hwloc-prefix=/usr \
$(use_enable romio) \
$(use_enable cxx) \
$(multilib_native_use_enable fortran fortran all)



[gentoo-commits] proj/sci:master commit in: sys-cluster/mpich/

2016-08-29 Thread Justin Bronder
commit: 8aa5f237c622b4305b33fdba0c3fab964f1cf945
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 20:03:41 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 20:11:29 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=8aa5f237

sys-cluster/mpich: bring back sysconfdir logic

Package-Manager: portage-2.2.28

 sys-cluster/mpich/mpich-3.2-r2.ebuild | 11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/sys-cluster/mpich/mpich-3.2-r2.ebuild 
b/sys-cluster/mpich/mpich-3.2-r2.ebuild
index 33fe443..64ebfc0 100644
--- a/sys-cluster/mpich/mpich-3.2-r2.ebuild
+++ b/sys-cluster/mpich/mpich-3.2-r2.ebuild
@@ -69,6 +69,13 @@ multilib_src_configure() {
c="${c} --enable-threads=single"
fi
 
+   if ! mpi_classed; then
+   c="${c} --sysconfdir=${EPREFIX}/etc/${PN}"
+   c="${c} --docdir=${EPREFIX}/usr/share/doc/${PF}"
+   else
+   c="${c} --docdir=$(mpi_root)/usr/share/doc/${PF}"
+   fi
+
export MPICHLIB_CFLAGS="${CFLAGS}"
export MPICHLIB_CPPFLAGS="${CPPFLAGS}"
export MPICHLIB_CXXFLAGS="${CXXFLAGS}"
@@ -77,16 +84,14 @@ multilib_src_configure() {
export MPICHLIB_LDFLAGS="${LDFLAGS}"
unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
 
-   ECONF_SOURCE=${S} $(mpi_econf_args) econf \
+   ECONF_SOURCE=${S} econf $(mpi_econf_args) \
--enable-shared \
-   --sysconfdir="${EPREFIX}/etc/${PN}" \
--with-hwloc-prefix="${EPREFIX}/usr" \
${c} \
--with-pm=hydra \
--disable-fast \
--enable-versioning \
--with-hwloc-prefix=/usr \
-   $(mpi_classed && echo 
"--docdir=$(mpi_root)/usr/share/doc/${PF}") \
$(use_enable romio) \
$(use_enable cxx) \
$(multilib_native_use_enable fortran fortran all)



[gentoo-commits] proj/sci:master commit in: sys-cluster/mpich/

2016-08-29 Thread Justin Bronder
commit: 3c184306caac1d028bc6608e8579b83566ee3e01
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 19:58:49 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 19:58:49 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=3c184306

sys-cluster/mpich: re-add keywords for multilib ebuild

Package-Manager: portage-2.2.28

 sys-cluster/mpich/mpich-3.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/mpich/mpich-3.2-r2.ebuild 
b/sys-cluster/mpich/mpich-3.2-r2.ebuild
index 28dad07..33fe443 100644
--- a/sys-cluster/mpich/mpich-3.2-r2.ebuild
+++ b/sys-cluster/mpich/mpich-3.2-r2.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="http://www.mpich.org/static/downloads/${PV}/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="mpich"
-KEYWORDS=""
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



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

2016-08-29 Thread Justin Bronder
commit: 38018248611beb56550f01820dd5e83b3b23b77a
Author: Justin Bronder  gentoo  org>
AuthorDate: Mon Aug 29 20:45:07 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 20:45:07 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=38018248

Merge remote-tracking branch 'github/multilib_mpi'

 eclass/mpi.eclass  |   3 +
 .../{mpich-3.1.4-r1.ebuild => mpich-3.2-r2.ebuild} |  82 --
 ...nmpi-1.10.3.ebuild => openmpi-1.10.3-r2.ebuild} | 121 -
 3 files changed, 119 insertions(+), 87 deletions(-)



[gentoo-commits] proj/sci:master commit in: sys-cluster/mpich/

2016-08-29 Thread Justin Bronder
commit: d223fbab4e43b5b2bb78f3a4df7c3caf3632ab5a
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 19:57:46 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 19:57:46 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=d223fbab

sys-cluster/mpich: bring back thread logic

Package-Manager: portage-2.2.28

 sys-cluster/mpich/mpich-3.2-r2.ebuild | 21 +
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/sys-cluster/mpich/mpich-3.2-r2.ebuild 
b/sys-cluster/mpich/mpich-3.2-r2.ebuild
index d66b32d..28dad07 100644
--- a/sys-cluster/mpich/mpich-3.2-r2.ebuild
+++ b/sys-cluster/mpich/mpich-3.2-r2.ebuild
@@ -18,7 +18,6 @@ SLOT="0"
 LICENSE="mpich"
 KEYWORDS=""
 IUSE="+cxx doc fortran mpi-threads romio threads"
-REQUIRED_USE="mpi-threads? ( threads )"
 
 COMMON_DEPEND="
>=dev-libs/libaio-0.3.109-r5[${MULTILIB_USEDEP}]
@@ -53,7 +52,22 @@ src_prepare() {
 multilib_src_configure() {
# The configure statements can be somewhat confusing, as they
# don't all show up in the top level configure, however, they
-   # are picked up in the children directories.
+   # are picked up in the children directories.  Hence the separate
+   # local vars.
+
+   local c=
+   if use mpi-threads; then
+   # MPI-THREAD requries threading.
+   c="${c} --with-thread-package=pthreads"
+   c="${c} --enable-threads=runtime"
+   else
+   if use threads ; then
+   c="${c} --with-thread-package=pthreads"
+   else
+   c="${c} --with-thread-package=none"
+   fi
+   c="${c} --enable-threads=single"
+   fi
 
export MPICHLIB_CFLAGS="${CFLAGS}"
export MPICHLIB_CPPFLAGS="${CPPFLAGS}"
@@ -67,8 +81,7 @@ multilib_src_configure() {
--enable-shared \
--sysconfdir="${EPREFIX}/etc/${PN}" \
--with-hwloc-prefix="${EPREFIX}/usr" \
-   --enable-threads=$(usex mpi-threads runtime single) \
-   --with-thread-package=$(usex threads pthreads none) \
+   ${c} \
--with-pm=hydra \
--disable-fast \
--enable-versioning \



[gentoo-commits] proj/sci:master commit in: eclass/

2016-08-29 Thread Justin Bronder
commit: 8a4ee23dab12892aa93bbb9b3b66ff5763771547
Author: Christoph Junghans  gentoo  org>
AuthorDate: Sat Aug 27 00:37:45 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 16:47:03 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=8a4ee23d

mpi.eclass: block multilib mpi from gx86 (bug #519700)

 eclass/mpi.eclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/eclass/mpi.eclass b/eclass/mpi.eclass
index b7ace33..3c20101 100644
--- a/eclass/mpi.eclass
+++ b/eclass/mpi.eclass
@@ -56,6 +56,9 @@ mpi_classed() {
[[ ${CATEGORY} == mpi-* ]]
 }
 
+#empi has no support for multilib yet
+mpi_classed && [[ ${_MULTILIB_BUILD} ]] && REQUIRED_USE="abi_x86_64? ( 
!abi_x86_32 )"
+
 # @FUNCTION: mpi_class
 # @RETURN: The name of the current class, or nothing if unclassed.
 mpi_class() {



[gentoo-commits] proj/sci:master commit in: sys-cluster/mpich/

2016-08-29 Thread Justin Bronder
commit: a40fade4c2eb4f40309b042d43b8f25659dfdf09
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 18:45:01 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 18:46:23 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=a40fade4

sys-cluster/mpich: add forgotten mpi_root

Package-Manager: portage-2.2.28

 sys-cluster/mpich/mpich-3.2-r2.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-cluster/mpich/mpich-3.2-r2.ebuild 
b/sys-cluster/mpich/mpich-3.2-r2.ebuild
index 7f5dcf7..d66b32d 100644
--- a/sys-cluster/mpich/mpich-3.2-r2.ebuild
+++ b/sys-cluster/mpich/mpich-3.2-r2.ebuild
@@ -89,18 +89,18 @@ multilib_src_install() {
# fortran header cannot be wrapped (bug #540508), workaround part 1
if multilib_is_native_abi && use fortran; then
mkdir "${T}"/fortran || die
-   mv "${ED}"usr/include/mpif* "${T}"/fortran || die
-   mv "${ED}"usr/include/*.mod "${T}"/fortran || die
+   mv "${ED}"/$(mpi_root)/usr/include/mpif* "${T}"/fortran || die
+   mv "${ED}"/$(mpi_root)/usr/include/*.mod "${T}"/fortran || die
else
# some fortran files get installed unconditionally
-   rm "${ED}"usr/include/mpif* "${ED}"usr/include/*.mod || die
+   rm "${ED}"/$(mpi_root)/usr/include/mpif* 
"${ED}"usr/include/*.mod || die
fi
 }
 
 multilib_src_install_all() {
# fortran header cannot be wrapped (bug #540508), workaround part 2
if use fortran; then
-   mv "${T}"/fortran/* "${ED}"usr/include || die
+   mv "${T}"/fortran/* "${ED}"/$(mpi_root)/usr/include || die
fi
 
mpi_dodir /usr/share/doc/${PF}



[gentoo-commits] proj/sci:master commit in: sys-cluster/openmpi/

2016-08-29 Thread Justin Bronder
commit: 4520a6855fc4f4810f66fbb87571847f526d3ee2
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 19:59:32 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 19:59:32 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=4520a685

sys-cluster/openmpi: re-add keywords for multilib ebuild

Package-Manager: portage-2.2.28

 sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild 
b/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild
index 1e4278c..adea314 100644
--- a/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild
+++ b/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild
@@ -33,7 +33,7 @@ HOMEPAGE="http://www.open-mpi.org;
 SRC_URI="http://www.open-mpi.org/software/ompi/v$(get_version_component_range 
1-2)/downloads/${MY_P}.tar.bz2"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux"
 IUSE="cma cuda +cxx elibc_FreeBSD fortran heterogeneous ipv6 java mpi-threads 
numa romio threads vt
${IUSE_OPENMPI_FABRICS} ${IUSE_OPENMPI_RM} 
${IUSE_OPENMPI_OFED_FEATURES}"
 



[gentoo-commits] proj/sci:master commit in: sys-cluster/openmpi/

2016-08-29 Thread Justin Bronder
commit: 91299b30842d08569330de9cacca21294db759b7
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 18:39:37 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 18:46:12 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=91299b30

sys-cluster/openmpi: add forgotten mpi_root

Package-Manager: portage-2.2.28

 sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild 
b/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild
index 6042f1a..1e4278c 100644
--- a/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild
+++ b/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild
@@ -158,10 +158,10 @@ multilib_src_install() {
# fortran header cannot be wrapped (bug #540508), workaround part 1
if multilib_is_native_abi && use fortran; then
mkdir "${T}"/fortran || die
-   mv "${ED}"usr/include/mpif* "${T}"/fortran || die
+   mv "${ED}"/$(mpi_root)/usr/include/mpif* "${T}"/fortran || die
else
# some fortran files get installed unconditionally
-   rm "${ED}"usr/include/mpif* "${ED}"usr/bin/mpif* || die
+   rm "${ED}"/$(mpi_root)/usr/include/mpif* "${ED}"usr/bin/mpif* 
|| die
fi
 }
 
@@ -171,7 +171,7 @@ multilib_src_install_all() {
 
# fortran header cannot be wrapped (bug #540508), workaround part 2
if use fortran; then
-   mv "${T}"/fortran/mpif* "${ED}"usr/include || die
+   mv "${T}"/fortran/mpif* "${ED}"/$(mpi_root)/usr/include || die
fi
 
# Avoid collisions with libevent



[gentoo-commits] proj/sci:master commit in: sys-cluster/openmpi/

2016-08-29 Thread Justin Bronder
commit: 19d37085dc0d09bd4546828d633ead2a7f09408b
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 15:36:20 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 16:47:16 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=19d37085

sys-cluster/openmpi: add multilib version

Package-Manager: portage-2.2.28

 sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild | 193 +++
 1 file changed, 193 insertions(+)

diff --git a/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild 
b/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild
new file mode 100644
index 000..6042f1a
--- /dev/null
+++ b/sys-cluster/openmpi/openmpi-1.10.3-r2.ebuild
@@ -0,0 +1,193 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+FORTRAN_NEEDED=fortran
+
+inherit cuda flag-o-matic fortran-2 java-pkg-opt-2 toolchain-funcs versionator 
multilib-minimal mpi
+
+MY_P=${P/-mpi}
+S=${WORKDIR}/${MY_P}
+
+IUSE_OPENMPI_FABRICS="
+   openmpi_fabrics_ofed
+   openmpi_fabrics_knem
+   openmpi_fabrics_psm"
+
+IUSE_OPENMPI_RM="
+   openmpi_rm_pbs
+   openmpi_rm_slurm"
+
+IUSE_OPENMPI_OFED_FEATURES="
+   openmpi_ofed_features_control-hdr-padding
+   openmpi_ofed_features_connectx-xrc
+   openmpi_ofed_features_udcm
+   openmpi_ofed_features_rdmacm
+   openmpi_ofed_features_dynamic-sl
+   openmpi_ofed_features_failover"
+
+DESCRIPTION="A high-performance message passing library (MPI)"
+HOMEPAGE="http://www.open-mpi.org;
+SRC_URI="http://www.open-mpi.org/software/ompi/v$(get_version_component_range 
1-2)/downloads/${MY_P}.tar.bz2"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS=""
+IUSE="cma cuda +cxx elibc_FreeBSD fortran heterogeneous ipv6 java mpi-threads 
numa romio threads vt
+   ${IUSE_OPENMPI_FABRICS} ${IUSE_OPENMPI_RM} 
${IUSE_OPENMPI_OFED_FEATURES}"
+
+REQUIRED_USE="openmpi_rm_slurm? ( !openmpi_rm_pbs )
+   openmpi_rm_pbs? ( !openmpi_rm_slurm )
+   openmpi_fabrics_psm? ( openmpi_fabrics_ofed )
+   openmpi_ofed_features_control-hdr-padding? ( openmpi_fabrics_ofed )
+   openmpi_ofed_features_connectx-xrc? ( openmpi_fabrics_ofed )
+   openmpi_ofed_features_udcm? ( openmpi_fabrics_ofed )
+   openmpi_ofed_features_rdmacm? ( openmpi_fabrics_ofed )
+   openmpi_ofed_features_dynamic-sl? ( openmpi_fabrics_ofed )
+   openmpi_ofed_features_failover? ( openmpi_fabrics_ofed )"
+
+MPI_UNCLASSED_DEP_STR="
+   vt? (
+   !dev-libs/libotf
+   !app-text/lcdf-typetools
+   )"
+
+CDEPEND="
+   >=dev-libs/libevent-2.0.21[${MULTILIB_USEDEP}]
+   dev-libs/libltdl:0[${MULTILIB_USEDEP}]
+   >=sys-apps/hwloc-1.10.0-r2[${MULTILIB_USEDEP},numa?]
+   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
+   cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1 )
+   elibc_FreeBSD? ( dev-libs/libexecinfo )
+   openmpi_fabrics_ofed? ( sys-fabric/ofed:* )
+   openmpi_fabrics_knem? ( sys-cluster/knem )
+   openmpi_fabrics_psm? ( sys-fabric/infinipath-psm:* )
+   openmpi_rm_pbs? ( sys-cluster/torque )
+   openmpi_rm_slurm? ( sys-cluster/slurm )
+   openmpi_ofed_features_rdmacm? ( sys-fabric/librdmacm:* )
+   $(mpi_imp_deplist)"
+
+RDEPEND="${CDEPEND}
+   java? ( >=virtual/jre-1.6 )"
+
+DEPEND="${CDEPEND}
+   java? ( >=virtual/jdk-1.6 )"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/mpi.h
+)
+
+pkg_setup() {
+   fortran-2_pkg_setup
+   java-pkg-opt-2_pkg_setup
+   MPI_ESELECT_FILE="eselect.mpi.openmpi"
+
+   if use mpi-threads; then
+   ewarn
+   ewarn "WARNING: use of MPI_THREAD_MULTIPLE is still disabled by"
+   ewarn "default and officially unsupported by upstream."
+   ewarn "You may stop now and set USE=-mpi-threads"
+   ewarn
+   fi
+
+   elog
+   elog "OpenMPI has an overwhelming count of configuration options."
+   elog "Don't forget the EXTRA_ECONF environment variable can let you"
+   elog "specify configure options if you find them necessary."
+   elog
+}
+
+src_prepare() {
+   default
+
+   # Necessary for scalibility, see
+   # http://www.open-mpi.org/community/lists/users/2008/09/6514.php
+   if use threads; then
+   echo 'oob_tcp_listen_mode = listen_thread' \
+   >> opal/etc/openmpi-mca-params.conf || die
+   fi
+}
+
+multilib_src_configure() {
+   if use java; then
+   # We must always build with the right -source and -target
+   # flags. Passing flags to javac isn't explicitly supported here
+   # but we can cheat by overriding the configure test for javac.
+   export ac_cv_path_JAVAC="$(java-pkg_get-javac) 
$(java-pkg_javac-args)"
+   fi
+
+   ECONF_SOURCE=${S} econf $(mpi_econf_args) \
+   --sysconfdir="${EPREFIX}/etc/${PN}" \
+   

[gentoo-commits] proj/sci:master commit in: sys-cluster/mpich/

2016-08-29 Thread Justin Bronder
commit: d2354e659f484aab41b16820da9700b404e9b801
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 15:53:42 2016 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Aug 29 16:47:16 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=d2354e65

sys-cluster/mpich: add multilib version

Package-Manager: portage-2.2.28

 sys-cluster/mpich/mpich-3.2-r2.ebuild | 120 ++
 1 file changed, 120 insertions(+)

diff --git a/sys-cluster/mpich/mpich-3.2-r2.ebuild 
b/sys-cluster/mpich/mpich-3.2-r2.ebuild
new file mode 100644
index 000..7f5dcf7
--- /dev/null
+++ b/sys-cluster/mpich/mpich-3.2-r2.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+FORTRAN_NEEDED=fortran
+FORTRAN_STANDARD="77 90"
+
+inherit fortran-2 multilib-minimal mpi
+
+MY_PV=${PV/_/}
+DESCRIPTION="A high performance and portable MPI implementation"
+HOMEPAGE="http://www.mpich.org/;
+SRC_URI="http://www.mpich.org/static/downloads/${PV}/${P}.tar.gz;
+
+SLOT="0"
+LICENSE="mpich"
+KEYWORDS=""
+IUSE="+cxx doc fortran mpi-threads romio threads"
+REQUIRED_USE="mpi-threads? ( threads )"
+
+COMMON_DEPEND="
+   >=dev-libs/libaio-0.3.109-r5[${MULTILIB_USEDEP}]
+   >=sys-apps/hwloc-1.10.0-r2[${MULTILIB_USEDEP}]
+   romio? ( net-fs/nfs-utils )
+   $(mpi_imp_deplist)"
+
+DEPEND="${COMMON_DEPEND}
+   dev-lang/perl
+   sys-devel/libtool"
+
+RDEPEND="${COMMON_DEPEND}"
+
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/mpicxx.h
+   /usr/include/mpi.h
+   /usr/include/opa_config.h
+)
+
+src_prepare() {
+   default
+
+   # Using MPICHLIB_LDFLAGS doesn't seem to fully work.
+   sed -i 's| *@WRAPPER_LDFLAGS@ *||' \
+   src/packaging/pkgconfig/mpich.pc.in \
+   src/env/*.in \
+   || die
+}
+
+multilib_src_configure() {
+   # The configure statements can be somewhat confusing, as they
+   # don't all show up in the top level configure, however, they
+   # are picked up in the children directories.
+
+   export MPICHLIB_CFLAGS="${CFLAGS}"
+   export MPICHLIB_CPPFLAGS="${CPPFLAGS}"
+   export MPICHLIB_CXXFLAGS="${CXXFLAGS}"
+   export MPICHLIB_FFLAGS="${FFLAGS}"
+   export MPICHLIB_FCFLAGS="${FCFLAGS}"
+   export MPICHLIB_LDFLAGS="${LDFLAGS}"
+   unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
+
+   ECONF_SOURCE=${S} $(mpi_econf_args) econf \
+   --enable-shared \
+   --sysconfdir="${EPREFIX}/etc/${PN}" \
+   --with-hwloc-prefix="${EPREFIX}/usr" \
+   --enable-threads=$(usex mpi-threads runtime single) \
+   --with-thread-package=$(usex threads pthreads none) \
+   --with-pm=hydra \
+   --disable-fast \
+   --enable-versioning \
+   --with-hwloc-prefix=/usr \
+   $(mpi_classed && echo 
"--docdir=$(mpi_root)/usr/share/doc/${PF}") \
+   $(use_enable romio) \
+   $(use_enable cxx) \
+   $(multilib_native_use_enable fortran fortran all)
+}
+
+multilib_src_test() {
+   emake -j1 check
+}
+
+multilib_src_install() {
+   default
+
+   # fortran header cannot be wrapped (bug #540508), workaround part 1
+   if multilib_is_native_abi && use fortran; then
+   mkdir "${T}"/fortran || die
+   mv "${ED}"usr/include/mpif* "${T}"/fortran || die
+   mv "${ED}"usr/include/*.mod "${T}"/fortran || die
+   else
+   # some fortran files get installed unconditionally
+   rm "${ED}"usr/include/mpif* "${ED}"usr/include/*.mod || die
+   fi
+}
+
+multilib_src_install_all() {
+   # fortran header cannot be wrapped (bug #540508), workaround part 2
+   if use fortran; then
+   mv "${T}"/fortran/* "${ED}"usr/include || die
+   fi
+
+   mpi_dodir /usr/share/doc/${PF}
+   mpi_dodoc COPYRIGHT README{,.envvar} CHANGES RELEASE_NOTES
+   mpi_newdoc src/pm/hydra/README README.hydra
+   if use romio; then
+   mpi_newdoc src/mpi/romio/README README.romio
+   fi
+
+   local d=$(echo ${ED}/$(mpi_root)/ | sed 's,///*,/,g')
+   if ! use doc; then
+   rm -rf "${d}"usr/share/doc/${PF}/www* || die
+   fi
+
+   MPI_ESELECT_FILE="eselect.mpi.mpich"
+   mpi_imp_add_eselect
+}



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

2016-08-29 Thread Lars Wendler
commit: a1115ae69510d929a7dab0476028f0a2b8e5ddf3
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 20:28:08 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 20:28:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1115ae6

net-fs/samba: Bumped to version 4.5.0_rc3. Removed old.

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 net-fs/samba/Manifest   | 2 +-
 net-fs/samba/{samba-4.5.0_rc2.ebuild => samba-4.5.0_rc3.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 63bc1b9..c0652c5 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -3,7 +3,7 @@ DIST samba-4.2.11.tar.gz 20875348 SHA256 
75bce53c922e51352933c9846f2c4b1e251fabb
 DIST samba-4.2.14.tar.gz 20883281 SHA256 
db820a9947e44f04b0eb25e4aa0c3db32c4042fca541775ee8e2905093e888e6 SHA512 
269dd74ba788657434f51ac70953a293c94bcf98280eaa6f44634c5da54169a5ea7865d543a7c23860c4750a40cdee7caeaf5c7fc3dbc137f444e90f31a09890
 WHIRLPOOL 
925369c2f9c222d718bf4aacc7b1a83b8275acd96bbc1eca52ad96c86847327807560674ee9b180173d17a1e6109307ec4f70f1acbebe2efc8a9e67f2141e17d
 DIST samba-4.3.11.tar.gz 20573432 SHA256 
90a967310e34a31d5c9fc5f86855f334fc19815e7e59f5c2d72a9bba23cf4fec SHA512 
7b9bcdf158c64a26c81e5a03a94a521f238a7573ab31c1252e90f2604ae0d1303c998d3bcda18c4feb9049a659371a3af2bdfcc546b5251314f19a500b6a0b7a
 WHIRLPOOL 
b204fdfee8ea071a2fb0431cfc17c1e59307a7228ef7082bf69d63ea5b94a823b0214e09172bb5d397adc8d4dabe1c505e867512922f41da57b73d22b1856b90
 DIST samba-4.4.5.tar.gz 20715838 SHA256 
b876ef2e63f66265490e80a122e66ef2d7616112b839df68f56ac2e1ce17a7bd SHA512 
4e63fabbddc04ebdf08b68a98fe4fa0c525b30f7d949948dd5d2e5cba17d263db820c61bac0c90dcb4e0b530d945a560c358df6c37e225d69788794fef851f0d
 WHIRLPOOL 
420be54d53312b8cef6efd1bce3120de1db1c36a1abccd258d558c598259afb16ca846db461ec7ee94a431ada869c3a4bda34ec741b6dcd1347fc34670dab84e
-DIST samba-4.5.0rc2.tar.gz 20928773 SHA256 
c70261142b28a35bd7918969941fd204a82051c5d8ddb0188abfdc10b26f5319 SHA512 
c489aea1166ec7aee25cc9e067b0d05b229a96bb436ada76749ec15f62f4c56fa6c9dab7550321824b3d64618aef79a367810d468ea80404e74af5a68b56cd42
 WHIRLPOOL 
4b3cd5cb80d0d127adbfc57d1eacbd436e087839911d3fb7b3d10a126f862472d23eed88710e53f5ac4bbd40fc867bb4d24f96c37130d1f8878f8406d6e79d67
+DIST samba-4.5.0rc3.tar.gz 20935494 SHA256 
5dbb6d929ddb1d523dd2868bd2a774db08f01874acbb295c6732d3708646bf6f SHA512 
09114525d4c1f4ce10946e9a2c063acfe7142e0192d209ed018792dff44d57bf0bb480053574f6894095d45d8f6dd4864f45bdf5885591f3def1c077c45c9574
 WHIRLPOOL 
0a6c34a627a548ebd757e49780cc170ef8bfc9e1b2ee891e3e898e9329590c0cd0a722ec7a00a847bba4f20d6e84ddf06b88c868ad7fa11dc07f1392a15941a0
 DIST samba-disable-python-patches-4.2.12.tar.xz 6052 SHA256 
8903eacbabdfaf7b64cbde03d7c367d1efdc92e54090f0f4b9ed5d2a462b1c18 SHA512 
c527d0a052d3211e5b12c17bc94db56cc5e5545189ed65a760c0656c94c22e27a4b159e6439eb0370873e1619873a741f3b3bd10d3876b38eb3914a87eace372
 WHIRLPOOL 
ad63db55d5dc96f56e6c9b30c2092e2f6e206b0ed5d13c249879d10753c8db2f475c5d4e651e2fc042ad992b648d3b4465f1b28c6b4bbf821cf503d27f741f7e
 DIST samba-disable-python-patches-4.2.9.tar.xz 6016 SHA256 
222d0153f03e28a0b906ee2b27076223ac88b84a998aaa285f658861edfa SHA512 
02fc666a36f8e733e522663d80775d130fabee9d5fb4e1c261d28815e07be425ae8977213f9216c7af62dd8b2619e7e13d71f9a25780b058c8119901c2115a18
 WHIRLPOOL 
ebba3a6d41a41844621759672aa8c984d26f44d12007c8e929405470c381bc262523ec68d3972e86cf675c45f092fa287496167e42940e70d704790753e47b03
 DIST samba-disable-python-patches-4.3.9.tar.xz 6116 SHA256 
83206112e04c375e170e86ea6b29d6dc2c172b55ba9fb89130be14708d758cf5 SHA512 
ca8b62337afd1cc6059b9aefc0a3972d18ba90fba3f043d9730f6967e1b80c40bc918b0445b8ae8a1f3df74d3551f90c721df3c0514edccb881ed0b4fc54e1b5
 WHIRLPOOL 
3aebd6758e5e7dc2920b1e8f8825d2b7b7efac7c5f2d91d5ed6fed75597bfdced1b27d9e2a00385af5df19e5462a4e014df6a7274c0b25a660702268235ef746

diff --git a/net-fs/samba/samba-4.5.0_rc2.ebuild 
b/net-fs/samba/samba-4.5.0_rc3.ebuild
similarity index 99%
rename from net-fs/samba/samba-4.5.0_rc2.ebuild
rename to net-fs/samba/samba-4.5.0_rc3.ebuild
index 210f17a..744640a 100644
--- a/net-fs/samba/samba-4.5.0_rc2.ebuild
+++ b/net-fs/samba/samba-4.5.0_rc3.ebuild
@@ -51,7 +51,7 @@ CDEPEND="${PYTHON_DEPS}
dev-python/subunit[${PYTHON_USEDEP},${MULTILIB_USEDEP}]
sys-apps/attr[${MULTILIB_USEDEP}]
sys-libs/libcap
-   >=sys-libs/ldb-1.1.26[${MULTILIB_USEDEP}]
+   >=sys-libs/ldb-1.1.27[${MULTILIB_USEDEP}]
sys-libs/ncurses:0=[${MULTILIB_USEDEP}]
>=sys-libs/talloc-2.1.8[python,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
>=sys-libs/tdb-1.3.10[python,${PYTHON_USEDEP},${MULTILIB_USEDEP}]



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

2016-08-29 Thread Lars Wendler
commit: 51a6e539e17d17ab551c9b938fba565c1fe60d50
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 19:18:01 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 20:28:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51a6e539

sys-libs/tevent: Bump to version 0.9.30

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 sys-libs/tevent/Manifest |  1 +
 sys-libs/tevent/tevent-0.9.30.ebuild | 56 
 2 files changed, 57 insertions(+)

diff --git a/sys-libs/tevent/Manifest b/sys-libs/tevent/Manifest
index d982033..5873a71 100644
--- a/sys-libs/tevent/Manifest
+++ b/sys-libs/tevent/Manifest
@@ -1,3 +1,4 @@
 DIST tevent-0.9.26.tar.gz 581664 SHA256 
262c14d78ede13f2c4fc5e61485ae7250a201782d94735a1d8412652453370bd SHA512 
cc841e4267cdda52d4e236040a82852a29a29427d7d374170cc74b4ff8ec0652f521580a1f69a9b4f2a66d8b2a6e3fcd34f21b2e94d0512dae848d271c090ec1
 WHIRLPOOL 
df159329f30c9bd014be9b33b2f2e6ed1a47b7dd5af7fb964952d1e9aa7d7b72fc3028122b464c933c93253fd72b2f6248af5e7cfbb6d8cfb9259454804618d7
 DIST tevent-0.9.28.tar.gz 581522 SHA256 
04d953379025b1560af5c4ffcce58a3ee84db7aaa09c9f1e3eff5b2945a13529 SHA512 
328d586a5891796a731e6f0d02e1a731d3541a977c16abca355359cd7f60bbdbb0baaad49c05eb42c3a44f97e57a775605974d22d46ca6c26f283c8ca1b5a909
 WHIRLPOOL 
3a572a1c73d564b535b15fca06a1df1ba124cac031026a1cabcbc66e38cac374eb8dad05a25372ab66982ff3c772ed63e890b62545dcce926fa782fe5fc21147
 DIST tevent-0.9.29.tar.gz 584544 SHA256 
a4f519b0bbb718fe2175bee9011ee4d199675f28c2ef80531be38e7bbaa1c42b SHA512 
831289664d3ad22ac3e1a153e0433a583c4a090cd31e25ea7afc5d974c39c1fe5d36784ff5cfffcce344df69a0852a4098834abadfab8d723fe6b6d0d8e91594
 WHIRLPOOL 
23e6df7158747ee2ae702a3198d0c2716668242d795692bc5bb6ddaf9ff681c423e0026fb78dd3f4f13ac46ec352001e65147bd398eade4ab67f6aab6d23f339
+DIST tevent-0.9.30.tar.gz 587303 SHA256 
5785915e6f76a8a7f7251055be1cef7a7465150a2f63d893082a1ab762c48cbd SHA512 
bf3509cbddcc6a36b29cec3a7e5eb6699272a1b7dc66ccd7219e8c1b8daa591d886ac6bd77b35029f45b9e1e1bbe949fbb74ad5b3ddb684e886949f7d4103b1e
 WHIRLPOOL 
83ac49438ce9a8092d97ae1315718cb6ed6c26d9abee5768eda47cdf92995576b1342553e793f61f1b2bf2fec684f142885f30a6f374c31c6c5ad94ddb39d717

diff --git a/sys-libs/tevent/tevent-0.9.30.ebuild 
b/sys-libs/tevent/tevent-0.9.30.ebuild
new file mode 100644
index ..ba458c3
--- /dev/null
+++ b/sys-libs/tevent/tevent-0.9.30.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit waf-utils multilib-minimal python-single-r1
+
+DESCRIPTION="Samba tevent library"
+HOMEPAGE="http://tevent.samba.org/;
+SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+IUSE="python"
+
+RDEPEND=">=sys-libs/talloc-2.1.8[${MULTILIB_USEDEP}]
+   python? ( ${PYTHON_DEPS} )"
+
+DEPEND="${RDEPEND}
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+   ${PYTHON_DEPS}
+"
+# build system does not work with python3
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+WAF_BINARY="${S}/buildtools/bin/waf"
+
+pkg_setup() {
+   python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   waf-utils_src_configure \
+   $(multilib_native_usex python '' '--disable-python')
+}
+
+multilib_src_compile() {
+   # need to avoid parallel building, this looks like the sanest way with 
waf-utils/multiprocessing eclasses
+   unset MAKEOPTS
+   waf-utils_src_compile
+}
+
+multilib_src_install() {
+   waf-utils_src_install
+
+   multilib_is_native_abi && use python && python_domodule tevent.py
+}



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

2016-08-29 Thread Christoph Junghans
commit: 4a826e16ad44b9bdb3cf60ffde8bd9aef310730b
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Aug 29 20:13:06 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Aug 29 20:13:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a826e16

sys-cluster/mpich: drop REQUIRED_USE

See discussion on gentoo-science/sci#664

Package-Manager: portage-2.2.28

 sys-cluster/mpich/mpich-3.2-r1.ebuild | 25 -
 1 file changed, 20 insertions(+), 5 deletions(-)

diff --git a/sys-cluster/mpich/mpich-3.2-r1.ebuild 
b/sys-cluster/mpich/mpich-3.2-r1.ebuild
index 382b2ca..90b3ee3 100644
--- a/sys-cluster/mpich/mpich-3.2-r1.ebuild
+++ b/sys-cluster/mpich/mpich-3.2-r1.ebuild
@@ -18,7 +18,6 @@ SLOT="0"
 LICENSE="mpich"
 KEYWORDS=""
 IUSE="+cxx doc fortran mpi-threads romio threads"
-REQUIRED_USE="mpi-threads? ( threads )"
 
 COMMON_DEPEND="
>=dev-libs/libaio-0.3.109-r5[${MULTILIB_USEDEP}]
@@ -54,7 +53,25 @@ src_prepare() {
 multilib_src_configure() {
# The configure statements can be somewhat confusing, as they
# don't all show up in the top level configure, however, they
-   # are picked up in the children directories.
+   # are picked up in the children directories.  Hence the separate
+   # local vars.
+
+   local c=
+   if use mpi-threads; then
+   # MPI-THREAD requries threading.
+   c="${c} --with-thread-package=pthreads"
+   c="${c} --enable-threads=runtime"
+   else
+   if use threads ; then
+   c="${c} --with-thread-package=pthreads"
+   else
+   c="${c} --with-thread-package=none"
+   fi
+   c="${c} --enable-threads=single"
+   fi
+
+   c="${c} --sysconfdir=${EPREFIX}/etc/${PN}"
+   c="${c} --docdir=${EPREFIX}/usr/share/doc/${PF}"
 
export MPICHLIB_CFLAGS="${CFLAGS}"
export MPICHLIB_CPPFLAGS="${CPPFLAGS}"
@@ -66,10 +83,8 @@ multilib_src_configure() {
 
ECONF_SOURCE=${S} econf \
--enable-shared \
-   --sysconfdir="${EPREFIX}/etc/${PN}" \
--with-hwloc-prefix="${EPREFIX}/usr" \
-   --enable-threads=$(usex mpi-threads runtime single) \
-   --with-thread-package=$(usex threads pthreads none) \
+   ${c} \
--with-pm=hydra \
--disable-fast \
--enable-versioning \



[gentoo-commits] proj/baselayout:master commit in: etc/

2016-08-29 Thread William Hubbs
commit: 4328a2fa4b6abc7f4004da33b351ed6597ac975f
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Aug 29 19:42:06 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Aug 29 19:42:06 2016 +
URL:https://gitweb.gentoo.org/proj/baselayout.git/commit/?id=4328a2fa

etc/services: add gpsd and xmpp-bosh services

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

 etc/services | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/etc/services b/etc/services
index 15aa277..6b75586 100644
--- a/etc/services
+++ b/etc/services
@@ -1153,9 +1153,12 @@ support  1529/tcp# GNATS
 cfinger2003/tcplmtp# GNU Finger
 ninstall   2150/tcp# ninstall service
 ninstall   2150/udp
+gpsd   2947/tcpgpsd# GPS Daemon request/response 
protocol
+gpsd   2947/udpgpsd# GPS Daemon request/response 
protocol
 afbackup   2988/tcp# Afbackup system
 afbackup   2988/udp
 fax4557/tcp# FAX transmission service  
  (old)
+xmpp-bosh   5280/tcp   # Bidirectional-streams Over 
Synchronous HTTP (BOSH)
 rplay  /tcp# RPlay audio service
 rplay  /udp
 canna  5680/tcp# Canna (Japanese Input)



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

2016-08-29 Thread David Seifert
commit: bcbb6eeb5f4870efac32ce3d72458f276f7a4b3e
Author: David Seifert  gentoo  org>
AuthorDate: Mon Aug 29 19:31:47 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Aug 29 19:31:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcbb6eeb

net-misc/bopm: Install bopm.conf.sample in docdir too

Package-Manager: portage-2.3.0

 net-misc/bopm/{bopm-3.1.3-r2.ebuild => bopm-3.1.3-r3.ebuild} | 11 ++-
 net-misc/bopm/files/bopm-3.1.3-autotools.patch   |  2 +-
 net-misc/bopm/files/bopm-3.1.3-remove-njabl.patch|  6 +++---
 3 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/net-misc/bopm/bopm-3.1.3-r2.ebuild 
b/net-misc/bopm/bopm-3.1.3-r3.ebuild
similarity index 95%
rename from net-misc/bopm/bopm-3.1.3-r2.ebuild
rename to net-misc/bopm/bopm-3.1.3-r3.ebuild
index 75d5f68..fda838c 100644
--- a/net-misc/bopm/bopm-3.1.3-r2.ebuild
+++ b/net-misc/bopm/bopm-3.1.3-r3.ebuild
@@ -28,16 +28,17 @@ pkg_setup() {
 }
 
 src_prepare() {
-   mv bopm.conf{.sample,} || die
-   mv configure.{in,ac} || die
-   mv src/libopm/configure.{in,ac} || die
-
sed -i \
-e "s!/some/path/bopm.pid!/run/${PN}/${PN}.pid!" \
-e "s!/some/path/scan.log!/var/log/${PN}/scan.log!" \
-   bopm.conf || die
+   bopm.conf.sample || die
+
+   mv configure.{in,ac} || die
+   mv src/libopm/configure.{in,ac} || die
 
default
+   cp bopm.conf{.sample,} || die
+
eautoreconf
 }
 

diff --git a/net-misc/bopm/files/bopm-3.1.3-autotools.patch 
b/net-misc/bopm/files/bopm-3.1.3-autotools.patch
index 992a1ff..e336150 100644
--- a/net-misc/bopm/files/bopm-3.1.3-autotools.patch
+++ b/net-misc/bopm/files/bopm-3.1.3-autotools.patch
@@ -14,7 +14,7 @@
  SUBDIRS = src
  
 -data_DATA = bopm.conf.sample bopm.conf.blitzed
-+dist_doc_DATA = bopm.conf.blitzed
++dist_doc_DATA = bopm.conf.sample bopm.conf.blitzed
  
 -EXTRA_DIST = ChangeLog contrib INSTALL README bopm.conf.sample 
bopm.conf.blitzed network-bopm
 +EXTRA_DIST = ChangeLog contrib INSTALL README network-bopm

diff --git a/net-misc/bopm/files/bopm-3.1.3-remove-njabl.patch 
b/net-misc/bopm/files/bopm-3.1.3-remove-njabl.patch
index 588ccd6..318dae6 100644
--- a/net-misc/bopm/files/bopm-3.1.3-remove-njabl.patch
+++ b/net-misc/bopm/files/bopm-3.1.3-remove-njabl.patch
@@ -3,10 +3,10 @@ Remove NJABL as an example blacklist.
 NJABL has been shut down and bopm upstream still lists it in its default
 configuration.
 ---
-diff --git a/bopm.conf b/bopm.conf
+diff --git a/bopm.conf.sample b/bopm.conf.sample
 index 74483e1..bc05bf4 100644
 a/bopm.conf
-+++ b/bopm.conf
+--- a/bopm.conf.sample
 b/bopm.conf.sample
 @@ -363,18 +363,6 @@ OPM {
  #};
  



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

2016-08-29 Thread David Seifert
commit: 7676b5d33e6611f855d249fb8fdeb11e467cdb77
Author: Raymond Jennings  gmail  com>
AuthorDate: Sat Aug 27 20:40:33 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Aug 29 19:07:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7676b5d3

net-misc/bopm: revbump, patch config file, and huge cleanup

Fix these issues with r1:

* Upgrade to EAPI 6
* Update the homepage
* Formatting cleanups in the ebuild
* Remove a redundant inherit
* Use fowners and fperms instead of raw chown and chperm
* Nix an unneeded "|| die" call
* Use einstalldocs instead of dodoc
* Use ED instead of D
* Document usage of datadir to store example config file
* Move various operations to the proper ebuild functions

And finally:

* Add patch to remove njabl from example config file
Closes: https://github.com/gentoo/gentoo/pull/2151

Signed-off-by: David Seifert  gentoo.org>

 net-misc/bopm/bopm-3.1.3-r2.ebuild|  64 +++
 net-misc/bopm/files/bopm-3.1.3-autotools.patch| 130 ++
 net-misc/bopm/files/bopm-3.1.3-remove-njabl.patch |  28 +
 3 files changed, 222 insertions(+)

diff --git a/net-misc/bopm/bopm-3.1.3-r2.ebuild 
b/net-misc/bopm/bopm-3.1.3-r2.ebuild
new file mode 100644
index ..75d5f68
--- /dev/null
+++ b/net-misc/bopm/bopm-3.1.3-r2.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools user
+
+DESCRIPTION="Blitzed Open Proxy Monitor"
+HOMEPAGE="http://github.com/blitzed-org/bopm;
+SRC_URI="http://static.blitzed.org/www.blitzed.org/${PN}/files/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-remove-njabl.patch
+   "${FILESDIR}"/${P}-autotools.patch
+)
+
+pkg_setup() {
+   enewuser bopm
+}
+
+src_prepare() {
+   mv bopm.conf{.sample,} || die
+   mv configure.{in,ac} || die
+   mv src/libopm/configure.{in,ac} || die
+
+   sed -i \
+   -e "s!/some/path/bopm.pid!/run/${PN}/${PN}.pid!" \
+   -e "s!/some/path/scan.log!/var/log/${PN}/scan.log!" \
+   bopm.conf || die
+
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf --localstatedir="${EPREFIX}"/var/log/${PN}
+}
+
+src_install() {
+   default
+
+   # Remove libopm related files, because bopm links statically to it
+   # If anybody wants libopm, please install net-libs/libopm
+   rm -r "${ED}"usr/$(get_libdir) "${ED}"usr/include || die
+
+   newinitd "${FILESDIR}"/bopm.init.d-r1 ${PN}
+   newconfd "${FILESDIR}"/bopm.conf.d-r1 ${PN}
+
+   dodir /var/log/bopm
+   fperms 700 /var/log/bopm
+   fowners bopm:root /var/log/bopm
+
+   fperms 600 /etc/bopm.conf
+   fowners bopm:root /etc/bopm.conf
+}

diff --git a/net-misc/bopm/files/bopm-3.1.3-autotools.patch 
b/net-misc/bopm/files/bopm-3.1.3-autotools.patch
new file mode 100644
index ..992a1ff
--- /dev/null
+++ b/net-misc/bopm/files/bopm-3.1.3-autotools.patch
@@ -0,0 +1,130 @@
+--- bopm-3.1.3/configure.ac
 bopm-3.1.3/configure.ac
+@@ -1,5 +1,6 @@
+ dnl Process this file with autoconf to produce a configure script.
+ AC_INIT(bopm, [3.1.3])
++AC_CONFIG_MACRO_DIR([src/libopm/m4])
+ AC_CONFIG_SRCDIR(src/opercmd.h)
+ AM_CONFIG_HEADER(src/setup.h)
+ AM_INIT_AUTOMAKE()
+--- bopm-3.1.3/Makefile.am
 bopm-3.1.3/Makefile.am
+@@ -2,22 +2,9 @@
+ 
+ SUBDIRS = src
+ 
+-data_DATA = bopm.conf.sample bopm.conf.blitzed
++dist_doc_DATA = bopm.conf.blitzed
+ 
+-EXTRA_DIST = ChangeLog contrib INSTALL README bopm.conf.sample 
bopm.conf.blitzed network-bopm
++EXTRA_DIST = ChangeLog contrib INSTALL README network-bopm
+ 
+-install-data-local:
+-  @if test -f $(sysconfdir)/bopm.conf ; then \
+-  echo "$@ will not overwrite existing $(sysconfdir)/bopm.conf"; \
+-  else \
+-  $(mkinstalldirs) $(sysconfdir); \
+-  echo "$(INSTALL_DATA) bopm.conf.sample 
$(sysconfdir)/bopm.conf"; \
+-  $(INSTALL_DATA) bopm.conf.sample $(sysconfdir)/bopm.conf; \
+-  fi
+-  $(mkinstalldirs) $(localstatedir)
++dist_sysconf_DATA = bopm.conf
+ 
+-uninstall-local:
+-  @if test -f $(sysconfdir)/bopm.conf ; then \
+-  echo "rm -f $(sysconfdir)/bopm.conf"; \
+-  $(RM) -f $(sysconfdir)/bopm.conf; \
+-  fi
+--- bopm-3.1.3/src/libopm/configure.ac
 bopm-3.1.3/src/libopm/configure.ac
+@@ -1,5 +1,6 @@
+ dnl Process this file with autoconf to produce a configure script.
+ AC_INIT(libopm, [0.1])
++AC_CONFIG_MACRO_DIR([m4])
+ AC_CONFIG_SRCDIR(src/libopm.h)
+ AM_CONFIG_HEADER(src/setup.h)
+ AM_INIT_AUTOMAKE()
+--- bopm-3.1.3/src/libopm/m4/etr_socket_nsl.m4
 bopm-3.1.3/src/libopm/m4/etr_socket_nsl.m4
+@@ -0,0 +1,81 @@
++dnl @synopsis ETR_SOCKET_NSL
++dnl
++dnl @obsoleted Use LIB_SOCKET_NSL instead.
++dnl
++dnl This macro 

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

2016-08-29 Thread Hans de Graaff
commit: 460dc10964b8ba9ad2554485d399ccf2265fe64a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug 29 18:10:28 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug 29 18:10:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=460dc109

dev-ruby/gherkin: add ruby23

Package-Manager: portage-2.2.28

 dev-ruby/gherkin/gherkin-4.0.0-r1.ebuild | 25 +
 1 file changed, 25 insertions(+)

diff --git a/dev-ruby/gherkin/gherkin-4.0.0-r1.ebuild 
b/dev-ruby/gherkin/gherkin-4.0.0-r1.ebuild
new file mode 100644
index ..e399f19
--- /dev/null
+++ b/dev-ruby/gherkin/gherkin-4.0.0-r1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_DOCDIR="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+# Don't install support scripts to avoid slot collisions.
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Fast Gherkin lexer and parser"
+HOMEPAGE="https://github.com/cucumber/gherkin;
+LICENSE="MIT"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64"
+SLOT="4"
+IUSE=""



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

2016-08-29 Thread Hans de Graaff
commit: ace44e4988c8a279644bca293fea1164a317b441
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug 29 18:17:51 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug 29 18:17:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ace44e49

dev-util/cucumber-core: add ruby23

Package-Manager: portage-2.2.28

 dev-util/cucumber-core/cucumber-core-1.5.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/cucumber-core/cucumber-core-1.5.0.ebuild 
b/dev-util/cucumber-core/cucumber-core-1.5.0.ebuild
index 0adb994..681cc2a 100644
--- a/dev-util/cucumber-core/cucumber-core-1.5.0.ebuild
+++ b/dev-util/cucumber-core/cucumber-core-1.5.0.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
@@ -24,7 +24,7 @@ ruby_add_bdepend "
>=dev-ruby/unindent-1.0
)"
 
-USE_RUBY=${USE_RUBY/ruby22} ruby_add_bdepend "test? ( 
>=dev-ruby/kramdown-1.4.2 )"
+USE_RUBY=${USE_RUBY/ruby23} ruby_add_bdepend "test? ( 
>=dev-ruby/kramdown-1.4.2 )"
 
 ruby_add_rdepend "
>=dev-ruby/gherkin-4.0:4
@@ -32,7 +32,7 @@ ruby_add_rdepend "
 
 each_ruby_prepare() {
case ${RUBY} in
-   *ruby22)
+   *ruby23)
# Avoid dependency on kramdown so we can add the ruby22
# target.
rm -f spec/readme_spec.rb || die



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

2016-08-29 Thread Hans de Graaff
commit: e43eef6521a2ca4a0173f0abdcf5c0fa42d5b4d4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug 29 17:54:10 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug 29 17:54:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e43eef65

dev-ruby/unindent: add ruby23

Package-Manager: portage-2.2.28

 dev-ruby/unindent/unindent-1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/unindent/unindent-1.0.ebuild 
b/dev-ruby/unindent/unindent-1.0.ebuild
index eb55877..a166e71 100644
--- a/dev-ruby/unindent/unindent-1.0.ebuild
+++ b/dev-ruby/unindent/unindent-1.0.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



[gentoo-commits] dev/graaff:master commit in: dev-ruby/terminal-table/

2016-08-29 Thread Hans de Graaff
commit: d47578e6e633541ab49316ebb05acb111b857754
Author: Hans de Graaff  degraaff  org>
AuthorDate: Mon Aug 29 17:59:42 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug 29 17:59:42 2016 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=d47578e6

dev-ruby/terminal-table: cleanup

Package-Manager: portage-2.2.28

 dev-ruby/terminal-table/Manifest   |  1 -
 .../terminal-table/terminal-table-1.4.5.ebuild | 28 --
 2 files changed, 29 deletions(-)

diff --git a/dev-ruby/terminal-table/Manifest b/dev-ruby/terminal-table/Manifest
index 5200489..8cf81e1 100644
--- a/dev-ruby/terminal-table/Manifest
+++ b/dev-ruby/terminal-table/Manifest
@@ -1,2 +1 @@
-DIST terminal-table-1.4.5.gem 14336 SHA256 
bf81561a406d3389fcd08fc7fb980f2810d1aaf99b9e06fc1916c83d1999 SHA512 
c5ed0c9d8058056d9b4da4cb6ccdc4854821585b1d5bee56e8bf8829e8cd9e6a97bb9da7314c1475c7b89a39dad60e9ad957d4659ba0b4f0f8197296dd612eb9
 WHIRLPOOL 
cd598eac06f781d121e4bda5c172d996ee14f3b356c9482473bd5e4804ee173558170dcf1bf37287f1b7ab3f054bd7a255485ad9b9b2a7c82e68034cb5e382db
 DIST terminal-table-1.5.2.tar.gz 10934 SHA256 
14ff47258ac1ab0d6d80a44df5cadb1424eda90432a9070dcce48ecfe92a7a82 SHA512 
770bad294e6e4bcb4afd3d4735c456521ec28d84653b3f1753ec26b448c2179f5bbff9a5ecc05ebd15348224172d0650dedd324552b9b79c05c4d3295518610c
 WHIRLPOOL 
71026ed63c3c5f8670c10765be9f5883ff2ede4fecda6643661f66a08fd3f2c14df57b1309575420697388777e127f043864c5b21d91b7f8ab853ad4822d7572

diff --git a/dev-ruby/terminal-table/terminal-table-1.4.5.ebuild 
b/dev-ruby/terminal-table/terminal-table-1.4.5.ebuild
deleted file mode 100644
index 72cd22c..000
--- a/dev-ruby/terminal-table/terminal-table-1.4.5.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header:  $
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-
-RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc Todo.rdoc"
-
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_TASK_DOC="" # Currently broken
-
-inherit ruby-fakegem
-
-DESCRIPTION="Simple, feature rich ascii table generation library"
-HOMEPAGE="http://github.com/visionmedia/terminal-table;
-LICENSE="MIT"
-
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE="test"
-
-# Test failures: https://github.com/visionmedia/terminal-table/issues/33
-RESTRICT="test"
-
-ruby_add_bdepend "test? ( dev-ruby/term-ansicolor )"



[gentoo-commits] dev/graaff:master commit in: dev-ruby/terminal-table/

2016-08-29 Thread Hans de Graaff
commit: 5fa010b440fd6ecd5850572cb0f56a56801d97b0
Author: Hans de Graaff  degraaff  org>
AuthorDate: Mon Aug 29 18:08:29 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug 29 18:08:29 2016 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=5fa010b4

dev-ruby/terminal-table: add 1.7.0, enable tests, add ruby23

Package-Manager: portage-2.2.28

 dev-ruby/terminal-table/Manifest   |  1 +
 .../terminal-table/terminal-table-1.7.0.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/terminal-table/Manifest b/dev-ruby/terminal-table/Manifest
index 8cf81e1..47e64fd 100644
--- a/dev-ruby/terminal-table/Manifest
+++ b/dev-ruby/terminal-table/Manifest
@@ -1 +1,2 @@
 DIST terminal-table-1.5.2.tar.gz 10934 SHA256 
14ff47258ac1ab0d6d80a44df5cadb1424eda90432a9070dcce48ecfe92a7a82 SHA512 
770bad294e6e4bcb4afd3d4735c456521ec28d84653b3f1753ec26b448c2179f5bbff9a5ecc05ebd15348224172d0650dedd324552b9b79c05c4d3295518610c
 WHIRLPOOL 
71026ed63c3c5f8670c10765be9f5883ff2ede4fecda6643661f66a08fd3f2c14df57b1309575420697388777e127f043864c5b21d91b7f8ab853ad4822d7572
+DIST terminal-table-1.7.0.tar.gz 11395 SHA256 
f35331150a525b18686747583ca20ed72288099cd63e18dbed0e8ac48e950de1 SHA512 
bb92d8236ba7347dd24bf561f5d7e39d84332e33fc77fb65399bb75254335872a84ed43ec11f22f59a563242bbf1d37d58e10e61a234c5b0b1894f322ba8dcd3
 WHIRLPOOL 
5d12c9e90ac652eb789ee583bfbdc0f09a6ad7fd6807355340e30faa5ae44b1c0ceca1de3e05128b049fcd07cfe7905933570b7781ef15041bd362aba4443889

diff --git a/dev-ruby/terminal-table/terminal-table-1.7.0.ebuild 
b/dev-ruby/terminal-table/terminal-table-1.7.0.ebuild
new file mode 100644
index 000..308bafe
--- /dev/null
+++ b/dev-ruby/terminal-table/terminal-table-1.7.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc Todo.rdoc"
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_TASK_DOC="" # Currently broken
+
+inherit ruby-fakegem
+
+DESCRIPTION="Simple, feature rich ascii table generation library"
+HOMEPAGE="https://github.com/tj/terminal-table;
+SRC_URI="https://github.com/tj/terminal-table/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE="test"
+
+# Test failures: https://github.com/visionmedia/terminal-table/issues/33
+#RESTRICT="test"
+
+ruby_add_rdepend ">=dev-ruby/unicode-display_width-1.1:1"
+
+ruby_add_bdepend "test? ( dev-ruby/term-ansicolor )"
+
+all_ruby_prepare() {
+   # Avoid single test still broken upstream
+   sed -i -e '/should only increase column size for multi-column if it is 
unavoidable/,/^end/ s:^:#:' spec/table_spec.rb || die
+}



[gentoo-commits] dev/graaff:master commit in: dev-ruby/terminal-table/

2016-08-29 Thread Hans de Graaff
commit: 56292f31e24d592e3196b920cbefa732fb5c5c69
Author: Hans de Graaff  degraaff  org>
AuthorDate: Mon Aug 29 18:00:45 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug 29 18:00:45 2016 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=56292f31

dev-ruby/terminal-table: fix repoman warnings

Package-Manager: portage-2.2.28

 dev-ruby/terminal-table/terminal-table-1.5.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/terminal-table/terminal-table-1.5.2.ebuild 
b/dev-ruby/terminal-table/terminal-table-1.5.2.ebuild
index 7e4a686..82593a2 100644
--- a/dev-ruby/terminal-table/terminal-table-1.5.2.ebuild
+++ b/dev-ruby/terminal-table/terminal-table-1.5.2.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
-# $Header:  $
+# $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



[gentoo-commits] proj/devmanual:master commit in: ebuild-writing/users-and-groups/

2016-08-29 Thread Göktürk Yüksek
commit: b6eb727944e8fffc8c9b9e2ee97944007a3cc850
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Mon Aug 29 17:58:03 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Aug 29 17:58:03 2016 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=b6eb7279

ebuild-writing/users-and-groups: clarify the language wrt sandbox in pkg_setup.

pkg_setup is not sandbox safe, it's sandbox-disabled.

Reported-By: David Seifert  gentoo.org>

 ebuild-writing/users-and-groups/text.xml | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/ebuild-writing/users-and-groups/text.xml 
b/ebuild-writing/users-and-groups/text.xml
index 5030318..e1d0fcd 100644
--- a/ebuild-writing/users-and-groups/text.xml
+++ b/ebuild-writing/users-and-groups/text.xml
@@ -8,8 +8,10 @@
 If your ebuild requires a user or group to be added for a daemon, for example,
 this should be performed via the functions available in user.eclass.
 Regardless of whether you are adding a group or a user, this should be 
performed
-in the pkg_setup function: pkg_setup is sandbox-safe,
-is called before the compile process so a build that requires the user to 
exist will
+in the pkg_setup phase function. pkg_setup is called
+before the compile process, with
+sandbox
+disabled, so a build that requires the user to exist will
 have it, and is also called for both binary and source packages. You may also
 use the pkg_preinst or pkg_postinst functions for user creation, 
if
 the user is not required during or before src_install.



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

2016-08-29 Thread Alexis Ballier
commit: 230cf9adddf268f7467989e2aec75bf9598f7995
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Aug 29 16:04:30 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Aug 29 16:04:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=230cf9ad

media-plugins/frei0r-plugins: bump to 1.5.0

Package-Manager: portage-2.3.0

 media-plugins/frei0r-plugins/Manifest  |  1 +
 .../frei0r-plugins/frei0r-plugins-1.5.0.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/media-plugins/frei0r-plugins/Manifest 
b/media-plugins/frei0r-plugins/Manifest
index c61cafb..10688df 100644
--- a/media-plugins/frei0r-plugins/Manifest
+++ b/media-plugins/frei0r-plugins/Manifest
@@ -1,2 +1,3 @@
 DIST frei0r-plugins-1.3.tar.gz 1092809 SHA256 
b25da901115aa7f960cf5e541057266fddf132a7521d628e6cb344c9f16c0236 SHA512 
3fcbdb61b656db42b841df6485ca06e2fe2bb8ca16dc054f9154408f843c4170454f8b9fc619b49989f6da9990b67eb7ac6b548dd0fbfb560fdb0f2789346f90
 WHIRLPOOL 
d79a14eae912bd9739b498c7e4d2949529f3e212835a337023bd9760bc9a1dbf239fb4e8cb7f038060d945932df725559fbf283c6362e2777d171126859eff05
 DIST frei0r-plugins-1.4.tar.gz 1164909 SHA256 
8470fcabde9f341b729be3be16385ffc8383d6f3328213907a43851b6e83be57 SHA512 
48e5da48a8886242bc5f38911f943d28d507d802076f5fcd2b5c9adc29ed40cb37f30316d4f4c253d279f17eb00c6acad47a7be3aeeec0def7a4aca1130b34fa
 WHIRLPOOL 
6245799e4c56e80ca75db0a75836912412b7b91d55719a5d1d76c27f11a1df0f3ca8d3106903b6535a250cd5579be981bf8b01373c2bca7db1cf2857e449eb5e
+DIST frei0r-plugins-1.5.0.tar.gz 1519006 SHA256 
781cf84a6c2a9a3252f54d2967b57f6de75a31fc1684371e112638c981f72b60 SHA512 
9be0384421ff5ac9000dcda9acefb5cb2b6dc05ea72d9771fae990cb5fad4424dcef8dd15c1e5031a89169f914af8c7a30e47934ad007a3bc0150f3c005bc6bf
 WHIRLPOOL 
c582118da0d832edd10bf3e4473edb5ff352d67d723d84381befda0cee7deaaeb5f200b5db49603055d620921669d9e0346a7654db2f12e8d922419e7456eaf3

diff --git a/media-plugins/frei0r-plugins/frei0r-plugins-1.5.0.ebuild 
b/media-plugins/frei0r-plugins/frei0r-plugins-1.5.0.ebuild
new file mode 100644
index ..992ae73
--- /dev/null
+++ b/media-plugins/frei0r-plugins/frei0r-plugins-1.5.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+inherit cmake-utils multilib
+
+DESCRIPTION="A minimalistic plugin API for video effects"
+HOMEPAGE="http://www.dyne.org/software/frei0r/;
+SRC_URI="http://files.dyne.org/frei0r/releases/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="doc +facedetect +scale0tilt"
+
+RDEPEND="x11-libs/cairo
+   facedetect? ( >=media-libs/opencv-2.3.0 )
+   scale0tilt? ( >=media-libs/gavl-1.2.0 )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   doc? ( app-doc/doxygen )"
+
+DOCS=( AUTHORS.txt ChangeLog.txt README.txt TODO.txt )
+
+src_prepare() {
+   local f=CMakeLists.txt
+
+   sed -i \
+   -e '/set(CMAKE_C_FLAGS/d' \
+   -e "/LIBDIR.*frei0r-1/s:lib:$(get_libdir):" \
+   ${f} || die
+
+   # https://bugs.gentoo.org/418243
+   sed -i \
+   -e '/set.*CMAKE_C_FLAGS/s:"): ${CMAKE_C_FLAGS}&:' \
+   src/filter/*/${f} || die
+}
+
+src_configure() {
+local mycmakeargs=(
+   $(cmake-utils_use "!facedetect" "WITHOUT_OPENCV" )
+   $(cmake-utils_use "!scale0tilt" "WITHOUT_GAVL"   )
+)
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+
+   if use doc; then
+   pushd doc
+   doxygen || die
+   popd
+   fi
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   use doc && dohtml -r doc/html
+}



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

2016-08-29 Thread Lars Wendler
commit: 54b5799c8f262d5ed9281df1de554d7c31e3
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 15:46:40 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 15:49:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54b5799c

app-i18n/man-pages-de: Bump to version 1.15 (bug #592386).

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 app-i18n/man-pages-de/Manifest |  1 +
 app-i18n/man-pages-de/man-pages-de-1.15.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/app-i18n/man-pages-de/Manifest b/app-i18n/man-pages-de/Manifest
index 7e84861..c9fa604 100644
--- a/app-i18n/man-pages-de/Manifest
+++ b/app-i18n/man-pages-de/Manifest
@@ -1,2 +1,3 @@
 DIST manpages-de-1.13.tar.xz 1487316 SHA256 
d8e278055008ffb11e662fed10aa5b9200caa963ebac41697f38d4f2e9641fff SHA512 
ba7c95c83550318c5453bc45c78d162aa83c5d95802c539d62b4e85cc432d20dcace5ab8482f496eca6c50728497a71888f1274df64344a99d6370a256c9e20c
 WHIRLPOOL 
fffc6fcb65662dd740253e45bcee00d0539332503392f198db0abd086feaeef5b43f48e303e060fd9d2669ed20d611ac5ba34618884e5549f2f82854af008d5e
 DIST manpages-de-1.14.tar.xz 1508600 SHA256 
b5b8baecb7a7fb414e825a90377e96546f7b6c503a800ab6fe19f9ed60db1047 SHA512 
096f883f430311fb5be56905d30d6c79e516842cb1d7338f24b5fffaf89d287f235ddc0839040bea3318b96cd5c291317a103992ed4a1735065eac74f4fba6dc
 WHIRLPOOL 
a542ac7f844144dfbf0a69fee6e74725dd9ed56a58d36215b2ab9aa4587d950d8eab990c6c6b05a66f5bab36fa5f675988d79555eef14f804e174977641034b5
+DIST manpages-de-1.15.tar.xz 1529576 SHA256 
dd2d5f30fb221db23fdd54d1ca27356beaad8257705658252deb0aff242f6303 SHA512 
d1f1b9f60c4713d6be650e21b7664ff594dbd542b53148c00d1a2269413d39615dd76be4c4095eeb72e2598b94af134ca5d128b85d9520a1ac404364b8a53948
 WHIRLPOOL 
b0cce22e6cb9e028cae86ff32bf033308df118db49731b65642b065e37f02b614e0af7772db8acf856415ed0c65391a7949930b8e59b9e48ed8fb97ac30355b6

diff --git a/app-i18n/man-pages-de/man-pages-de-1.15.ebuild 
b/app-i18n/man-pages-de/man-pages-de-1.15.ebuild
new file mode 100644
index ..8eb53fa
--- /dev/null
+++ b/app-i18n/man-pages-de/man-pages-de-1.15.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+MY_P="${PN/-/}-${PV}"
+
+DESCRIPTION="A somewhat comprehensive collection of Linux german man page 
translations"
+HOMEPAGE="http://alioth.debian.org/projects/manpages-de/;
+SRC_URI="http://manpages-de.alioth.debian.org/downloads/${MY_P}.tar.xz;
+
+LICENSE="GPL-3+ man-pages GPL-2+ GPL-2 BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE=""
+
+RDEPEND="virtual/man"
+DEPEND="app-text/po4a"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.3-bzip2.patch"
+)
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+
+   # Use the same compression as every other manpage
+   local PORTAGE_COMPRESS_LOCAL=${PORTAGE_COMPRESS-bzip2}
+   if [[ ${PORTAGE_COMPRESS+set} == "set" ]] ; then
+   PORTAGE_COMPRESS_LOCAL="#"
+   fi
+   if [[ ${PORTAGE_COMPRESS_FLAGS+set} != "set" ]] ; then
+   case ${PORTAGE_COMPRESS_LOCAL} in
+   bzip2|gzip)  local PORTAGE_COMPRESS_FLAGS_LOCAL="-9"
+   ;;
+   esac
+   fi
+   sed -i -e "s/gzip --best/${PORTAGE_COMPRESS_LOCAL} 
${PORTAGE_COMPRESS_FLAGS_LOCAL}/"\
+   po/man{1,2,3,4,5,6,7,8}/Makefile.in po/common.mk || die
+   eautoreconf
+}
+
+src_compile() { :; }
+
+src_install() {
+   emake mandir="${ED}"/usr/share/man install
+   dodoc CHANGES README
+}



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

2016-08-29 Thread Lars Wendler
commit: e2dcec4d569ddcbc72fe2de05d7616eb4eb7e65a
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 15:47:29 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 15:49:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2dcec4d

app-i18n/man-pages-de: Version 1.14 stable for all arches.

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

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

diff --git a/app-i18n/man-pages-de/man-pages-de-1.14.ebuild 
b/app-i18n/man-pages-de/man-pages-de-1.14.ebuild
index 8eb53fa..b65845a 100644
--- a/app-i18n/man-pages-de/man-pages-de-1.14.ebuild
+++ b/app-i18n/man-pages-de/man-pages-de-1.14.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://manpages-de.alioth.debian.org/downloads/${MY_P}.tar.xz;
 
 LICENSE="GPL-3+ man-pages GPL-2+ GPL-2 BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86"
 IUSE=""
 
 RDEPEND="virtual/man"



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

2016-08-29 Thread Lars Wendler
commit: e96557ebeb5ff2402cd6c4c64450b64ad677bb92
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 15:48:58 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 15:49:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e96557eb

app-i18n/man-pages-de: Removed old.

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 app-i18n/man-pages-de/Manifest |  1 -
 app-i18n/man-pages-de/man-pages-de-1.13.ebuild | 53 --
 2 files changed, 54 deletions(-)

diff --git a/app-i18n/man-pages-de/Manifest b/app-i18n/man-pages-de/Manifest
index c9fa604..eaf413b 100644
--- a/app-i18n/man-pages-de/Manifest
+++ b/app-i18n/man-pages-de/Manifest
@@ -1,3 +1,2 @@
-DIST manpages-de-1.13.tar.xz 1487316 SHA256 
d8e278055008ffb11e662fed10aa5b9200caa963ebac41697f38d4f2e9641fff SHA512 
ba7c95c83550318c5453bc45c78d162aa83c5d95802c539d62b4e85cc432d20dcace5ab8482f496eca6c50728497a71888f1274df64344a99d6370a256c9e20c
 WHIRLPOOL 
fffc6fcb65662dd740253e45bcee00d0539332503392f198db0abd086feaeef5b43f48e303e060fd9d2669ed20d611ac5ba34618884e5549f2f82854af008d5e
 DIST manpages-de-1.14.tar.xz 1508600 SHA256 
b5b8baecb7a7fb414e825a90377e96546f7b6c503a800ab6fe19f9ed60db1047 SHA512 
096f883f430311fb5be56905d30d6c79e516842cb1d7338f24b5fffaf89d287f235ddc0839040bea3318b96cd5c291317a103992ed4a1735065eac74f4fba6dc
 WHIRLPOOL 
a542ac7f844144dfbf0a69fee6e74725dd9ed56a58d36215b2ab9aa4587d950d8eab990c6c6b05a66f5bab36fa5f675988d79555eef14f804e174977641034b5
 DIST manpages-de-1.15.tar.xz 1529576 SHA256 
dd2d5f30fb221db23fdd54d1ca27356beaad8257705658252deb0aff242f6303 SHA512 
d1f1b9f60c4713d6be650e21b7664ff594dbd542b53148c00d1a2269413d39615dd76be4c4095eeb72e2598b94af134ca5d128b85d9520a1ac404364b8a53948
 WHIRLPOOL 
b0cce22e6cb9e028cae86ff32bf033308df118db49731b65642b065e37f02b614e0af7772db8acf856415ed0c65391a7949930b8e59b9e48ed8fb97ac30355b6

diff --git a/app-i18n/man-pages-de/man-pages-de-1.13.ebuild 
b/app-i18n/man-pages-de/man-pages-de-1.13.ebuild
deleted file mode 100644
index b65845a..
--- a/app-i18n/man-pages-de/man-pages-de-1.13.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit autotools
-
-MY_P="${PN/-/}-${PV}"
-
-DESCRIPTION="A somewhat comprehensive collection of Linux german man page 
translations"
-HOMEPAGE="http://alioth.debian.org/projects/manpages-de/;
-SRC_URI="http://manpages-de.alioth.debian.org/downloads/${MY_P}.tar.xz;
-
-LICENSE="GPL-3+ man-pages GPL-2+ GPL-2 BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86"
-IUSE=""
-
-RDEPEND="virtual/man"
-DEPEND="app-text/po4a"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.3-bzip2.patch"
-)
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   default
-
-   # Use the same compression as every other manpage
-   local PORTAGE_COMPRESS_LOCAL=${PORTAGE_COMPRESS-bzip2}
-   if [[ ${PORTAGE_COMPRESS+set} == "set" ]] ; then
-   PORTAGE_COMPRESS_LOCAL="#"
-   fi
-   if [[ ${PORTAGE_COMPRESS_FLAGS+set} != "set" ]] ; then
-   case ${PORTAGE_COMPRESS_LOCAL} in
-   bzip2|gzip)  local PORTAGE_COMPRESS_FLAGS_LOCAL="-9"
-   ;;
-   esac
-   fi
-   sed -i -e "s/gzip --best/${PORTAGE_COMPRESS_LOCAL} 
${PORTAGE_COMPRESS_FLAGS_LOCAL}/"\
-   po/man{1,2,3,4,5,6,7,8}/Makefile.in po/common.mk || die
-   eautoreconf
-}
-
-src_compile() { :; }
-
-src_install() {
-   emake mandir="${ED}"/usr/share/man install
-   dodoc CHANGES README
-}



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

2016-08-29 Thread Jeroen Roovers
commit: 61ffd52bc6a32bef40c8fe975cb6f3aafb34fd68
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Aug 29 14:01:51 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Aug 29 14:01:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61ffd52b

sys-fs/ncdu: Drop obsolete patch.

Package-Manager: portage-2.3.0

 sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch | 39 --
 1 file changed, 39 deletions(-)

diff --git a/sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch 
b/sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch
deleted file mode 100644
index 0d180b3..
--- a/sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch
+++ /dev/null
@@ -1,39 +0,0 @@
- configure.in | 21 -
- 1 file changed, 12 insertions(+), 9 deletions(-)
-
-diff --git a/configure.in b/configure.in
-index f4a4a2d..1333234 100644
 a/configure.in
-+++ b/configure.in
-@@ -36,19 +36,22 @@ AC_ARG_WITH([ncursesw],
- AC_HELP_STRING([--with-ncursesw], [compile/link with wide-char 
ncurses library @<:@default@:>@]),
- [ncurses=ncursesw])
- if test "$ncurses" = "auto" -o "$ncurses" = "ncursesw"; then
--  AC_CHECK_LIB([ncursesw],
--   [initscr],
--   [LIBS="$LIBS -lncursesw"; ncurses=ncursesw],
--   [ncurses=ncurses])
-+  PKG_CHECK_MODULES([NCURSES], [ncursesw], [LIBS="$LIBS $NCURSES_LIBS"; 
ncurses=ncursesw],
-+[AC_CHECK_LIB([ncursesw],
-+ [initscr],
-+ [LIBS="$LIBS -lncursesw"; ncurses=ncursesw],
-+ [ncurses=ncurses])
-+])
- fi
- if test "$ncurses" = "ncurses"; then
--  AC_CHECK_LIB([ncurses],
--   [initscr],
--   [LIBS="$LIBS -lncurses"],
--   [AC_MSG_ERROR(ncurses library is required)])
-+  PKG_CHECK_MODULES([NCURSES], [ncurses], [LIBS="$LIBS $NCURSES_LIBS"],
-+[AC_CHECK_LIB([ncurses],
-+ [initscr],
-+ [LIBS="$LIBS -lncurses"],
-+ [AC_MSG_ERROR(ncurses library is required)])
-+])
- fi
- 
- 
- 
- AC_OUTPUT([Makefile])
--



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

2016-08-29 Thread Jeroen Roovers
commit: bb60eeff6209ce34ece2b18439fb3615924bd5dd
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Aug 29 14:01:10 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Aug 29 14:01:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb60eeff

sys-fs/ncdu: Version bump.

Package-Manager: portage-2.3.0

 sys-fs/ncdu/Manifest |  1 +
 sys-fs/ncdu/ncdu-1.12.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/sys-fs/ncdu/Manifest b/sys-fs/ncdu/Manifest
index d43b80f..1000a7b 100644
--- a/sys-fs/ncdu/Manifest
+++ b/sys-fs/ncdu/Manifest
@@ -1 +1,2 @@
 DIST ncdu-1.11.tar.gz 134093 SHA256 
d0aea772e47463c281007f279a9041252155a2b2349b18adb9055075e141bb7b SHA512 
4b9319900dd11da7c3bd2ba9a478c52b8280e3560b8b5b6610fc145c5d81d726715db69cd21bd400d75339a5bcf140bcafb3b4430075427a51b65763e81d8c48
 WHIRLPOOL 
a0ff88adde70ce7f95f9bf172dc0fd5001d5e909bc0db86258d9d2a5f4dba45e511247c71b784b74b73da3b16f695e2eba4d3e89ce445b241801067dac248608
+DIST ncdu-1.12.tar.gz 140596 SHA256 
820e4e4747a2a2ec7a2e9f06d2f5a353516362c22496a10a9834f871b877499a SHA512 
20620dd79d2af878442769e097f13806f64f23875dcb85ebccd573a3de43aba5663d496049b64015d13f9a79d624298032c008ef61dfb6f61d8b12902b8dca12
 WHIRLPOOL 
1ec3e97a9b0172cc312e5ee1b641c298d0cb1c20af031767ec8f87e387c9b2992c4fe60a02e49e9741133eb1c92daffb23024ccd4bd8124a5f0f472df59ad684

diff --git a/sys-fs/ncdu/ncdu-1.12.ebuild b/sys-fs/ncdu/ncdu-1.12.ebuild
new file mode 100644
index ..d72d60f
--- /dev/null
+++ b/sys-fs/ncdu/ncdu-1.12.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="NCurses Disk Usage"
+HOMEPAGE="http://dev.yorhel.nl/ncdu/;
+SRC_URI="http://dev.yorhel.nl/download/${P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
+
+RDEPEND="
+   sys-libs/ncurses:0=[unicode]
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+"



[gentoo-commits] repo/gentoo:master commit in: media-video/guvcview/

2016-08-29 Thread Alexis Ballier
commit: a01eb9279f13401db42e6a9adcd85d1fde213df0
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Aug 29 13:24:15 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Aug 29 13:24:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a01eb927

media-video/guvcview: bump to 2.0.4

Package-Manager: portage-2.3.0

 media-video/guvcview/Manifest  |  1 +
 media-video/guvcview/guvcview-2.0.4.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/media-video/guvcview/Manifest b/media-video/guvcview/Manifest
index 25d4cf1..e0d82fb 100644
--- a/media-video/guvcview/Manifest
+++ b/media-video/guvcview/Manifest
@@ -4,3 +4,4 @@ DIST guvcview-src-1.7.2.tar.gz 508179 SHA256 
4bedf9ce57edf60e761e7de9563a39a3ae4
 DIST guvcview-src-1.7.3.tar.gz 761780 SHA256 
d98612fa7bb6a5a408b26755bcefdee9c5d505e5dc0e2a45a7f316652d96da99 SHA512 
36ec97e127043d9548bed2f915cd45611ba751cee3c38119382911d0c037944b0fb0abd2486155eade39c9b14c7ef3657c9b4bde1cc62666004fbf77de58db91
 WHIRLPOOL 
225eaad1fd40356b4699e51de1b14d6f367809d8f7bf0288392083ace20b433a770d4cba666f4edb7c636089ac3b9bf144830507d1dee13088ca44b872104483
 DIST guvcview-src-2.0.1.tar.gz 960661 SHA256 
dffb86c01bd2e25216d9fbc0c246342246818036d9f63e0488111d757d9b018d SHA512 
b3877f00f4caf224eac2010f62e1c3d575b94f84cd0a8da7a5f1df6c851384c7a9e356de905ce27e143dc9761137ae1cce146bb4f6c0aa6d270dd53551bce67a
 WHIRLPOOL 
9cbf94219f5816e5fb0b98f3a7b7ad618bf3162dcd5a7b6dc9162a842470c2643f4503f6d15fc0c1c00de4901ecde5bf188680bacac279f4721bda02a7efecf5
 DIST guvcview-src-2.0.3.tar.gz 1062788 SHA256 
1f2c79f2dccbf512a0aa1c397ce8e5d37fb0a48008ef72a0d3f10f9dc0758bce SHA512 
976e62ffe26bd9c815ff754337a42512c6fcc9d55285e79e0505f6211a7ca2407546e433fc0e8439ea541ef51a23101b0badda2f9fcc9d197d3a2ab27983b704
 WHIRLPOOL 
8d94d9e669bee2f551745af03efba22d956d37927edf9b1a8b901ac943dc8c0d4e59a0aeada904b7c45e4ce693f9b49ef6e383485b827323fea066e28de0f220
+DIST guvcview-src-2.0.4.tar.gz 1120666 SHA256 
670ef45168a9b58d36ac42f09c498db5e56b76b0be25b0a6dc97528569334fa2 SHA512 
9339e9cf7dc5224f1b87bb21e0ad711d9c27f4197d5f758c70edf465eb01c8c9c51542c75d686f0439f9e843a1c14c2f76835e8529b87b35a737fc5ccb01fe0a
 WHIRLPOOL 
ff168a9c785f4f165891a4e9f4541bcd1774fbd7b3c98d2259f10b1fe02689f4c1f91b0cdd966ea82905a9a23ad8af40081a80df9389b01640bbfca32f4734df

diff --git a/media-video/guvcview/guvcview-2.0.4.ebuild 
b/media-video/guvcview/guvcview-2.0.4.ebuild
new file mode 100644
index ..119ca04
--- /dev/null
+++ b/media-video/guvcview/guvcview-2.0.4.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools eutils qmake-utils
+
+MY_P=${PN}-src-${PV}
+
+DESCRIPTION="GTK+ UVC Viewer"
+HOMEPAGE="http://guvcview.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gsl libav pulseaudio qt5"
+
+RDEPEND=">=dev-libs/glib-2.10
+   media-libs/libpng:0=
+   media-libs/libsdl2
+   media-libs/libv4l
+   >=media-libs/portaudio-19_pre
+   !libav? ( >=media-video/ffmpeg-2.8:0= )
+   libav? ( media-video/libav:= )
+   virtual/ffmpeg
+   virtual/libusb:1
+   virtual/udev
+   pulseaudio? ( >=media-sound/pulseaudio-0.9.15 )
+   gsl? ( >=sci-libs/gsl-1.15 )
+   qt5? ( dev-qt/qtwidgets:5 )
+   !qt5? ( >=x11-libs/gtk+-3.6:3 )
+   !

[gentoo-commits] repo/gentoo:master commit in: media-video/dvdstyler/

2016-08-29 Thread Alexis Ballier
commit: c56ea05876761cf9b2792507468d45151033897c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Aug 29 13:19:08 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Aug 29 13:19:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c56ea058

media-video/dvdstyler: bump to 3.0.2

Package-Manager: portage-2.3.0

 media-video/dvdstyler/Manifest   |  1 +
 media-video/dvdstyler/dvdstyler-3.0.2.ebuild | 73 
 2 files changed, 74 insertions(+)

diff --git a/media-video/dvdstyler/Manifest b/media-video/dvdstyler/Manifest
index 8bb8aa2..4a8b7ee 100644
--- a/media-video/dvdstyler/Manifest
+++ b/media-video/dvdstyler/Manifest
@@ -1 +1,2 @@
 DIST DVDStyler-2.9.6.tar.bz2 8373340 SHA256 
d9ac1c2fa8812c194d4a79a5954f96919a4823498a4200018964df549270c6e3 SHA512 
7e45a61ecc5df29957c6ff71bf7d5032bc1cba3b43b8444f7cd065aabf3991961f998e220d41c05c3d4e9a3bc213c96bc484b467a40d1b10ab33630ea4cbbcea
 WHIRLPOOL 
d7b6f714fcde76c74f5f4dee66918ddfb17066f85147a7efd355fe19d057d3c56bf0f1116595cfa361b09f1d82ebc09ab0fad6f5fc8ab029df01a9abe267b564
+DIST DVDStyler-3.0.2.tar.bz2 8818276 SHA256 
fda2105c83c7bf31492573cc81a3ae8730bbab804286dad4d86b5e0bd053158e SHA512 
2ae54a3679bea0a6ea6b98c6bd26af13b9e2cb938dd58cf263e2ca2999d5ad48b58598d6f6a4a230e1ca1988cf6095c5ce17c1c2d8c103e28238ddedc5ead006
 WHIRLPOOL 
e9f9a587368a02c17a8166025dc1e1484f91a709a77f6a56e61fc8b5e70bcada4a0ae63037dbd9a89817bbb46eda6bf75a305913731d424f07d146507cda8045

diff --git a/media-video/dvdstyler/dvdstyler-3.0.2.ebuild 
b/media-video/dvdstyler/dvdstyler-3.0.2.ebuild
new file mode 100644
index ..c24b9f5
--- /dev/null
+++ b/media-video/dvdstyler/dvdstyler-3.0.2.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MY_P=${P/dvds/DVDS}
+WX_GTK_VER=3.0
+
+inherit wxwidgets eutils
+
+DESCRIPTION="A cross-platform free DVD authoring application"
+HOMEPAGE="http://www.dvdstyler.org/;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug libav +udev"
+
+COMMON_DEPEND="
+   >=app-cdr/dvd+rw-tools-7.1
+   media-libs/libexif:=
+   >=media-libs/wxsvg-1.5.9:=
+   >=media-video/dvdauthor-0.7.1
+   >=media-video/xine-ui-0.99.7
+   virtual/cdrtools
+   libav? ( >=media-video/libav-9:0=[encode] )
+   !libav? ( >=media-video/ffmpeg-2.6:0=[encode] )
+   virtual/jpeg:0
+   x11-libs/wxGTK:${WX_GTK_VER}=[gstreamer,X]
+   sys-apps/dbus
+   udev? ( >=virtual/libudev-215:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   >=app-cdr/dvdisaster-0.72.4
+   media-video/mjpegtools
+"
+DEPEND="${COMMON_DEPEND}
+   app-arch/zip
+   app-text/xmlto
+   sys-devel/gettext
+   virtual/yacc
+   virtual/pkgconfig
+"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   need-wxwidgets unicode
+   # disable obsolete GNOME 2.x libraries wrt #508854
+   sed -i -e '/PKG_CONFIG/s:libgnomeui-2.0:dIsAbLeAuToMaGiC&:' configure 
|| die
+   # rmdir: failed to remove `tempfoobar': Directory not empty
+   sed -i -e '/rmdir "$$t"/d' docs/Makefile.in || die
+   # fix underlinking wrt #367863
+   sed -i -e 's:@LIBS@:& -ljpeg:' wxVillaLib/Makefile.in || die
+   # silence desktop-file-validate QA check
+   sed -i \
+   -e '/Icon/s:.png::' -e '/^Encoding/d' -e 
'/Categories/s:Application;::' \
+   data/dvdstyler.desktop || die
+}
+
+src_configure() {
+   econf \
+   --docdir=/usr/share/doc/${PF} \
+   $(use_enable debug) \
+   --with-wx-config=${WX_CONFIG}
+}
+
+src_install() {
+   default
+   rm -f "${ED}"/usr/share/doc/${PF}/{COPYING*,INSTALL*}
+}



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

2016-08-29 Thread Alexis Ballier
commit: 4921a9e6646bb6ce5f959a5a4bccb23052c16be3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Aug 29 13:17:25 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Aug 29 13:19:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4921a9e6

media-libs/wxsvg: bump to 1.5.9

Package-Manager: portage-2.3.0

 media-libs/wxsvg/Manifest   |  1 +
 media-libs/wxsvg/wxsvg-1.5.9.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/media-libs/wxsvg/Manifest b/media-libs/wxsvg/Manifest
index 7ef7f18..27ceb96 100644
--- a/media-libs/wxsvg/Manifest
+++ b/media-libs/wxsvg/Manifest
@@ -2,3 +2,4 @@ DIST wxsvg-1.1.13.tar.bz2 669378 SHA256 
ebaecb322bb7fad97a3cd686bed9827b00afe840
 DIST wxsvg-1.4.2.tar.bz2 461580 SHA256 
c7555eacb786583dda4288fa6f3e914a14ec175be0a02b31d9c4e19f173bd760 SHA512 
6b6c8c5bf5b369da75ee9d034f6be8611019f48066d352b7268a127f1d9f9487c4aa694b0f0529efa3c0b63d51f7c38ba503d7cf83f9e930b876ebc4bcbce9e1
 WHIRLPOOL 
84cc8a7b849cac5ad1045572c5ee0aa267d8a6e0e97db0c61f2896def7e347055330a61bf89cfb64360411681c15e0df567c05b5efe4bc5dc456ba9285d9d219
 DIST wxsvg-1.5.4.tar.bz2 478568 SHA256 
5ca0ce0fcb45a3f0801b645000e9b5179bab4d62fb56df51f027d75cbef5a655 SHA512 
89d909c1db975dcbca464e3d7850277b72e596bb6020d3c796cb235c55fcb9282472b522a1a3a15cc773eb98e8e2c69f463c5085cfc1b66221316d19ca87cf46
 WHIRLPOOL 
c2caf28102c908e6efdaff413224afde2d83a0e24b199b7904696a334b8b9e64f51f91ab6d3a2ed57c69f3ebaaef96bf1ba890d1af600adb92db47ccfcfbf4cf
 DIST wxsvg-1.5.5.tar.bz2 478828 SHA256 
e6664de4ee2a0481f47f8b718793ef7c14d296ebe7aee4edbf099258cd9525fc SHA512 
4b42ba6ea5675f5794e0450809980030175583813db7e4e216dd5d53e92f43c67c0e62208c77e8e455703d62d1e30606a001b28b924c17ed26fd949638340a1b
 WHIRLPOOL 
abc95e7b14d0e298d44b0b7d36731f5099de10bd095400ca9c90af67957bc138c2dc0d91c7477b381a88debf6c24a000fb94ebd0b73d31c4d31ff96dc693dcc2
+DIST wxsvg-1.5.9.tar.bz2 512874 SHA256 
145d10789aab73b352212afb1ac7b2f5b202d620b1aebc20d36fea16e497214f SHA512 
eda51832dfa646cd4a681acdbbc1282b9d82d3a0571633c1212f89093ac23cad57f8f8e03fb7c35591b956a9b18c48852d439c44204830f1efd813549bc7eada
 WHIRLPOOL 
bd47ea6d31d3e8646b65c003d35039b158222d684821d62c08337fb858cead42f98e1cd935e7521c51afe4ea5ce84ff7ff87fc8b512db2e0734006ddcda587d0

diff --git a/media-libs/wxsvg/wxsvg-1.5.9.ebuild 
b/media-libs/wxsvg/wxsvg-1.5.9.ebuild
new file mode 100644
index ..8eb4eb2
--- /dev/null
+++ b/media-libs/wxsvg/wxsvg-1.5.9.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+WX_GTK_VER=3.0
+inherit eutils wxwidgets
+
+DESCRIPTION="C++ library to create, manipulate and render SVG files"
+HOMEPAGE="http://wxsvg.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="wxWinLL-3"
+SLOT="0/3" # based on SONAME of libwxsvg.so
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs libav"
+
+RDEPEND=">=dev-libs/expat-2:=
+   >=dev-libs/glib-2.28:2=
+   dev-libs/libxml2:=
+   media-libs/fontconfig:=
+   media-libs/freetype:2=
+   x11-libs/cairo:=
+   x11-libs/pango:=
+   x11-libs/wxGTK:${WX_GTK_VER}=[X]
+   libav? ( >=media-video/libav-9:0= )
+   !libav? ( >=media-video/ffmpeg-2.6:0= )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog TODO )
+
+src_configure() {
+   need-wxwidgets base-unicode
+   econf \
+   $(use_enable static-libs static) \
+   --with-wx-config=${WX_CONFIG}
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/pamix/

2016-08-29 Thread Lars Wendler
commit: 52e6a24b4b6f36060fdc5cdaef15b5686662f2bb
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 12:03:24 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 12:03:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52e6a24b

media-sound/pamix: Bump to version 1.3

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/pamix/Manifest |  1 +
 media-sound/pamix/pamix-1.3.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/media-sound/pamix/Manifest b/media-sound/pamix/Manifest
index 689c6ae..bff9f86 100644
--- a/media-sound/pamix/Manifest
+++ b/media-sound/pamix/Manifest
@@ -1,2 +1,3 @@
 DIST pamix-1.1.tar.gz 7955 SHA256 
81e88b5c305b2864ea5c6adda79a9a2fe18c7ed7721354e865862e779acb6f5f SHA512 
cdec746bfbb1887d558762a0247370616f480b4695a7802f4ac47c7d9f545efe77af228b1992dd61e2bed09118ca095546bde206be4b8dfea1839b91c768cdbc
 WHIRLPOOL 
c1113e4783637c1ec5f77be735d4a96ffc3060449571ad3f32d06e9d369c7dba6140863ab5b2f0a19f78b7a591614c32980e1e87c8ec950fe3e589514e5759a2
 DIST pamix-1.2.tar.gz 9907 SHA256 
4da3a60376cfb3eb2863743782cbb4a2d3a18a336ec45f6a33e93f17cde8f149 SHA512 
af368778bd731c0887c5a01f5c6f3010f56600eaaf68e13e0ff38b4e484ac24ad094df0b3607c5fdb4517e48cb196cc235462a5e83b4ced00d06d821222bd1c6
 WHIRLPOOL 
b4624e3b0452856d423ed19868bfb70e7fe8bd7ced0688295210261514e45bee85aaa445933cd43fe5a7cad62901ea7b16d76c9f53f978a502228881da5d2002
+DIST pamix-1.3.tar.gz 11061 SHA256 
b74b24cccaa62130a3b8650443f59fc99d6c1f5ef1b1601756fc7f775845ec01 SHA512 
38cb2635e92c086671930fc9ffc94b02785ca3034750c05f92af8084133a48cbc370fd52b507b310b7e4d8500d6e9b3ad43b9242119b4d50c5fad05cba1865c7
 WHIRLPOOL 
20ed887974c9386c7df1f22204ea9990e25407f98340861f7ca715767db8498fd61ceeba84ebdbb31fc370d9499954f61d4651be546df15168c4311f706b9a99

diff --git a/media-sound/pamix/pamix-1.3.ebuild 
b/media-sound/pamix/pamix-1.3.ebuild
new file mode 100644
index ..0c2702c
--- /dev/null
+++ b/media-sound/pamix/pamix-1.3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+SCM=""
+[[ "${PV}" ==  ]] && SCM="git-r3"
+inherit autotools ${SCM}
+unset SCM
+
+DESCRIPTION="A PulseAudio NCurses mixer"
+HOMEPAGE="https://github.com/patroclos/PAmix;
+LICENSE="MIT"
+SLOT="0"
+IUSE="+unicode"
+
+if [[ ${PV} ==  ]] ; then
+   EGIT_REPO_URI="git://github.com/patroclos/PAmix.git"
+else
+   SRC_URI="https://github.com/patroclos/PAmix/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+   S="${WORKDIR}/PAmix-${PV}"
+fi
+
+RDEPEND="media-sound/pulseaudio
+   sys-libs/ncurses:0=[unicode?]"
+DEPEND="virtual/pkgconfig
+   ${RDEPEND}"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_enable unicode)
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/pamix/

2016-08-29 Thread Lars Wendler
commit: 1f5d9e3578edeedee44e76df36c88c88f9bbfaf3
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 12:01:31 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 12:01:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f5d9e35

media-sound/pamix: Added unicode USE flag to live ebuild.

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/pamix/pamix-.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/media-sound/pamix/pamix-.ebuild 
b/media-sound/pamix/pamix-.ebuild
index 4c7c30f..0c2702c 100644
--- a/media-sound/pamix/pamix-.ebuild
+++ b/media-sound/pamix/pamix-.ebuild
@@ -13,6 +13,7 @@ DESCRIPTION="A PulseAudio NCurses mixer"
 HOMEPAGE="https://github.com/patroclos/PAmix;
 LICENSE="MIT"
 SLOT="0"
+IUSE="+unicode"
 
 if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="git://github.com/patroclos/PAmix.git"
@@ -23,7 +24,7 @@ else
 fi
 
 RDEPEND="media-sound/pulseaudio
-   sys-libs/ncurses:0=[unicode]"
+   sys-libs/ncurses:0=[unicode?]"
 DEPEND="virtual/pkgconfig
${RDEPEND}"
 
@@ -31,3 +32,7 @@ src_prepare() {
default
eautoreconf
 }
+
+src_configure() {
+   econf $(use_enable unicode)
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/pamix/

2016-08-29 Thread Lars Wendler
commit: 8fee1a5c61eef865be9aa92a2dff1364ebc164f2
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 12:03:51 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 12:03:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fee1a5c

media-sound/pamix: Removed old.

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/pamix/Manifest |  1 -
 media-sound/pamix/pamix-1.1.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/media-sound/pamix/Manifest b/media-sound/pamix/Manifest
index bff9f86..759f0c3 100644
--- a/media-sound/pamix/Manifest
+++ b/media-sound/pamix/Manifest
@@ -1,3 +1,2 @@
-DIST pamix-1.1.tar.gz 7955 SHA256 
81e88b5c305b2864ea5c6adda79a9a2fe18c7ed7721354e865862e779acb6f5f SHA512 
cdec746bfbb1887d558762a0247370616f480b4695a7802f4ac47c7d9f545efe77af228b1992dd61e2bed09118ca095546bde206be4b8dfea1839b91c768cdbc
 WHIRLPOOL 
c1113e4783637c1ec5f77be735d4a96ffc3060449571ad3f32d06e9d369c7dba6140863ab5b2f0a19f78b7a591614c32980e1e87c8ec950fe3e589514e5759a2
 DIST pamix-1.2.tar.gz 9907 SHA256 
4da3a60376cfb3eb2863743782cbb4a2d3a18a336ec45f6a33e93f17cde8f149 SHA512 
af368778bd731c0887c5a01f5c6f3010f56600eaaf68e13e0ff38b4e484ac24ad094df0b3607c5fdb4517e48cb196cc235462a5e83b4ced00d06d821222bd1c6
 WHIRLPOOL 
b4624e3b0452856d423ed19868bfb70e7fe8bd7ced0688295210261514e45bee85aaa445933cd43fe5a7cad62901ea7b16d76c9f53f978a502228881da5d2002
 DIST pamix-1.3.tar.gz 11061 SHA256 
b74b24cccaa62130a3b8650443f59fc99d6c1f5ef1b1601756fc7f775845ec01 SHA512 
38cb2635e92c086671930fc9ffc94b02785ca3034750c05f92af8084133a48cbc370fd52b507b310b7e4d8500d6e9b3ad43b9242119b4d50c5fad05cba1865c7
 WHIRLPOOL 
20ed887974c9386c7df1f22204ea9990e25407f98340861f7ca715767db8498fd61ceeba84ebdbb31fc370d9499954f61d4651be546df15168c4311f706b9a99

diff --git a/media-sound/pamix/pamix-1.1.ebuild 
b/media-sound/pamix/pamix-1.1.ebuild
deleted file mode 100644
index 986dad7..
--- a/media-sound/pamix/pamix-1.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-[[ "${PV}" ==  ]] && inherit git-r3
-
-DESCRIPTION="A PulseAudio NCurses mixer"
-HOMEPAGE="https://github.com/patroclos/PAmix;
-LICENSE="MIT"
-SLOT="0"
-
-if [[ ${PV} ==  ]] ; then
-   EGIT_REPO_URI="git://github.com/patroclos/PAmix.git"
-else
-   SRC_URI="https://github.com/patroclos/PAmix/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-   S="${WORKDIR}/PAmix-${PV}"
-fi
-
-RDEPEND="media-sound/pulseaudio
-   sys-libs/ncurses:0=[unicode]"
-DEPEND="virtual/pkgconfig
-   ${RDEPEND}"
-
-src_unpack() {
-   [[ "${PV}" ==  ]] && git-r3_src_unpack
-   default
-}



[gentoo-commits] dev/xmw:master commit in: virtual/xmwce/

2016-08-29 Thread Michael Weber
commit: eed49c981aeb173ac794e47ded0d0dcdceb0aff6
Author: Michael Weber  xmw  de>
AuthorDate: Mon Aug 29 11:54:47 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Aug 29 11:54:47 2016 +
URL:https://gitweb.gentoo.org/dev/xmw.git/commit/?id=eed49c98

virtual/xmwce: {sys,net}-fs/sshfs.

Package-Manager: portage-2.2.28
Manifest-Sign-Key: 0x71D573A82F434065

 virtual/xmwce/xmwce-0_p20160322-r1.ebuild  | 97 -
 virtual/xmwce/xmwce-0_p20160531.ebuild | 98 --
 ...20160607.ebuild => xmwce-0_p20160607-r1.ebuild} |  2 +-
 3 files changed, 1 insertion(+), 196 deletions(-)

diff --git a/virtual/xmwce/xmwce-0_p20160322-r1.ebuild 
b/virtual/xmwce/xmwce-0_p20160322-r1.ebuild
deleted file mode 100644
index 9ee371c..000
--- a/virtual/xmwce/xmwce-0_p20160322-r1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="Michael Weber (xmw) console environment"
-SRC_URI=""
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+dev +root +wlan +kernel mpc"
-
-RDEPEND="
-   app-admin/makepasswd
-   app-arch/hardlink
-   app-arch/zip
-   app-editors/vim
-   app-misc/screen
-   app-misc/when
-   app-portage/eix
-   app-portage/genlop
-   app-portage/pfl
-   app-shells/zsh
-   app-vim/gnupg
-   app-vim/pathogen
-   dev-util/strace
-   dev-vcs/git
-   media-gfx/exif
-   net-analyzer/netcat6
-   net-analyzer/nmap
-   net-dns/bind-tools
-   net-misc/mosh
-   net-misc/openssh
-   net-misc/telnet-bsd
-   net-misc/whois
-   sys-apps/iproute2
-   sys-apps/less
-   sys-apps/mlocate
-   sys-apps/pv
-   sys-block/buffer
-   sys-fs/ncdu
-   sys-fs/sshfs
-   sys-process/glances
-   sys-process/htop
-   sys-process/iotop
-   sys-process/parallel
-   dev? (
-   app-portage/gentoolkit
-   app-portage/gentoolkit-dev
-   )
-   kernel? (
-   app-admin/eclean-kernel
-   app-arch/cpio
-   app-arch/lz4
-   app-arch/lzop
-   )
-   mpc? (
-   media-sound/ncmpcpp[outputs,clock,visualizer,curl]
-   media-sound/alsa-utils
-   )
-   root? (
-   app-admin/logrotate
-   app-admin/syslog-ng
-   app-admin/tmpreaper
-   app-portage/layman
-   app-portage/layman[git]
-   app-portage/porticron
-   app-portage/smart-live-rebuild
-   mail-mta/postfix
-   net-analyzer/iptraf-ng
-   net-analyzer/tcpdump
-   net-firewall/iptables
-   net-misc/dhcp
-   net-misc/ntp
-   sys-apps/ethtool
-   sys-apps/hwloc
-   sys-apps/lm_sensors
-   sys-apps/lshw
-   sys-apps/pciutils
-   sys-apps/usbutils
-   sys-fs/ddrescue
-   sys-libs/gpm
-   sys-process/dcron
-   amd64? (
-   sys-apps/smartmontools
-   sys-power/acpid
-   sys-power/cpupower
-   )
-   )
-   wlan? (
-   net-wireless/iw
-   net-wireless/wireless-tools
-   net-wireless/wpa_supplicant
-   )
-   "
-DEPEND=""

diff --git a/virtual/xmwce/xmwce-0_p20160531.ebuild 
b/virtual/xmwce/xmwce-0_p20160531.ebuild
deleted file mode 100644
index f8a2f03..000
--- a/virtual/xmwce/xmwce-0_p20160531.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="Michael Weber (xmw) console environment"
-SRC_URI=""
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+dev +root +wlan +kernel mpc"
-
-RDEPEND="
-   app-admin/makepasswd
-   app-arch/hardlink
-   app-arch/zip
-   app-editors/vim
-   app-misc/screen
-   app-misc/when
-   app-portage/eix
-   app-portage/genlop
-   app-portage/pfl
-   app-shells/zsh
-   app-vim/gnupg
-   app-vim/pathogen
-   dev-util/strace
-   dev-vcs/git
-   media-gfx/exif
-   net-analyzer/netcat6
-   net-analyzer/nmap
-   net-dns/bind-tools
-   net-misc/mosh
-   net-misc/openssh
-   net-misc/telnet-bsd
-   net-misc/whois
-   sys-apps/iproute2
-   sys-apps/less
-   sys-apps/mlocate
-   sys-apps/pv
-   sys-block/buffer
-   sys-fs/ncdu
-   sys-fs/sshfs
-   sys-process/glances
-   sys-process/htop
-   sys-process/iotop
-   sys-process/lsof
-   sys-process/parallel
-   dev? (
-   app-portage/gentoolkit
-   app-portage/gentoolkit-dev
-   )
-   kernel? (
-   

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

2016-08-29 Thread Patrice Clement
commit: 3582a6c5d0be45d9c7c8056e675cb825090eb99a
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug 29 10:21:03 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug 29 10:21:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3582a6c5

dev-db/mycli: Clean up old.

Package-Manager: portage-2.2.28

 dev-db/mycli/Manifest  |  3 ---
 dev-db/mycli/mycli-1.4.0.ebuild| 31 ---
 dev-db/mycli/mycli-1.5.2-r1.ebuild | 32 
 dev-db/mycli/mycli-1.5.2.ebuild| 31 ---
 dev-db/mycli/mycli-1.6.0.ebuild| 32 
 5 files changed, 129 deletions(-)

diff --git a/dev-db/mycli/Manifest b/dev-db/mycli/Manifest
index 13fc82c..a73b249 100644
--- a/dev-db/mycli/Manifest
+++ b/dev-db/mycli/Manifest
@@ -1,4 +1 @@
-DIST mycli-1.4.0.tar.gz 250369 SHA256 
300b26d21fc75fecdff04133dac7a22550f8f537b8571985ec02e8e346b00fb5 SHA512 
06176a62646be4bac2b90f72bc728afc8920e9ff1b0c04749a5601ee63d35ba2159f48e61e23df6ca3bc5477486f3e3917b3a8de8b7034594f4ed2c544f2969f
 WHIRLPOOL 
6ade59f9c8d7927710df0e2cd4e77cd450468b7558ce9ce763cc54e172a75fd2a84017fe3cc0e9d20a5dbd05585d80d135063b96a7692cd23c76a90806ff1aac
-DIST mycli-1.5.2.tar.gz 260595 SHA256 
205f381f2c894863f6bce5d72856032e5e70fb9cc6bf02654943481457d7a63b SHA512 
5015cadf10f0a2d31bffe6d2af620b7e4fdc9a40eb1760de49a5080524309330612ca3c75676925fb62c29a6f8ebdc599e725b4ba9b2ec9b741e84a8c9b9363b
 WHIRLPOOL 
b1ff602ec341f019c53eef9aca6d2167f95a9b6648f10075ec9f3cf5c5e1eaa590d17b42c561a606781c24a113975903836893e0a8e83f65fe479b7c232f34f4
-DIST mycli-1.6.0.tar.gz 265464 SHA256 
e398b18d81a8d16f8e9d9fa46dec16bafade22e83ca5693effe26b36afe0f556 SHA512 
783f42381778902f66756bf26ed04edce8a868d9ec43268b22b659bd7fb13dfdfffe6915d3ed9054f43b97cc198cefa362049fa643a29f0ba8bed4a94e1a80a5
 WHIRLPOOL 
eb0f73df8a2a0372c8b24b7e4b89ba074ad3fae22aae283c7655734160463322301683c50efca26fdd911df321753a510f806c8697ef9a3a9ff12c3f193341d2
 DIST mycli-1.7.1.tar.gz 266597 SHA256 
27c1bbaa100b1a3fe4adaaf09eab3a372c14a9c27d07fe41b3d6dad6c800bbe6 SHA512 
5c61fe67f3205dd1123ed8d38441cda0574db04dd46b7e075d216f7aa8cd856a2f06a1b4bf7dbe9fd0b07f3e91c151fe3f885d10d3db488b6c306e0ce9ac9e7c
 WHIRLPOOL 
265aa82c9c2306576abdb4a90e81baeea74b74c8ab31e430051f9b7de6125c568366efdec76a95d75e1d0bce2fbf4c3bb57e85e69a09a4632dfa56fba3546d5d

diff --git a/dev-db/mycli/mycli-1.4.0.ebuild b/dev-db/mycli/mycli-1.4.0.ebuild
deleted file mode 100644
index 147548d..
--- a/dev-db/mycli/mycli-1.4.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-inherit distutils-r1
-
-DESCRIPTION="CLI for MySQL Database with auto-completion and syntax 
highlighting"
-
-HOMEPAGE="http://mycli.net;
-SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/pygments-2.0[${PYTHON_USEDEP}]
-   =dev-python/prompt_toolkit-0.46[${PYTHON_USEDEP}]
-   >=dev-python/pymysql-0.6.6[${PYTHON_USEDEP}]
-   >=dev-python/python-sqlparse-0.1.16[${PYTHON_USEDEP}]
-"
-
-src_prepare() {
-   rm mycli/packages/counter.py || die "Could not remove python 2.6 
counter.py"
-   distutils-r1_src_prepare
-}

diff --git a/dev-db/mycli/mycli-1.5.2-r1.ebuild 
b/dev-db/mycli/mycli-1.5.2-r1.ebuild
deleted file mode 100644
index 4b5c124..
--- a/dev-db/mycli/mycli-1.5.2-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# 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,3_4} )
-inherit distutils-r1
-
-DESCRIPTION="CLI for MySQL Database with auto-completion and syntax 
highlighting"
-
-HOMEPAGE="http://mycli.net;
-SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   =dev-python/prompt_toolkit-0.46[${PYTHON_USEDEP}]
-   >=dev-python/pycrypto-2.6.1[${PYTHON_USEDEP}]
-   >=dev-python/pygments-2.0[${PYTHON_USEDEP}]
-   >=dev-python/pymysql-0.6.6[${PYTHON_USEDEP}]
-   >=dev-python/python-sqlparse-0.1.16[${PYTHON_USEDEP}]
-"
-
-src_prepare() {
-   rm mycli/packages/counter.py || die "Could not remove python 2.6 
counter.py"
-   distutils-r1_src_prepare
-}

diff --git a/dev-db/mycli/mycli-1.5.2.ebuild b/dev-db/mycli/mycli-1.5.2.ebuild
deleted file mode 100644
index 147548d..
--- 

[gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/

2016-08-29 Thread Manuel Rüger
commit: 754de78ca20c320a8602f4cbcdf5a5eae5111bdc
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Aug 29 10:11:12 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Aug 29 10:11:12 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=754de78c

www-apps/redmine_git_hosting: Add ruby22

Package-Manager: portage-2.3.0

 www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild 
b/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild
index 7d4c427..4f07464 100644
--- a/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild
+++ b/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21"
+USE_RUBY="ruby20 ruby21 ruby22"
 inherit ruby-ng user
 
 DESCRIPTION="A Redmine plugin which makes configuring your own Git hosting 
easy"



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/gitolite-rugged/

2016-08-29 Thread Manuel Rüger
commit: 2c7fa9dfecfa23746deb4bae4590bfb0f71d8cb5
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Aug 29 08:18:13 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Aug 29 08:18:13 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=2c7fa9df

dev-ruby/gitolite-rugged: Add ruby22

Package-Manager: portage-2.3.0

 dev-ruby/gitolite-rugged/gitolite-rugged-1.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/gitolite-rugged/gitolite-rugged-1.2.0.ebuild 
b/dev-ruby/gitolite-rugged/gitolite-rugged-1.2.0.ebuild
index cacbc57..ff7b7a0 100644
--- a/dev-ruby/gitolite-rugged/gitolite-rugged-1.2.0.ebuild
+++ b/dev-ruby/gitolite-rugged/gitolite-rugged-1.2.0.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
 
-USE_RUBY="ruby20 ruby21"
+USE_RUBY="ruby20 ruby21 ruby22"
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/github-markup/

2016-08-29 Thread Manuel Rüger
commit: 1ff7d2f325c83e711ea8645aef01c3b55c22deec
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Aug 29 10:10:32 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Aug 29 10:10:32 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=1ff7d2f3

dev-ruby/github-markup: Add ruby22

Package-Manager: portage-2.3.0

 dev-ruby/github-markup/github-markup-1.4.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/github-markup/github-markup-1.4.0.ebuild 
b/dev-ruby/github-markup/github-markup-1.4.0.ebuild
index 4c57273..bbe2c27 100644
--- a/dev-ruby/github-markup/github-markup-1.4.0.ebuild
+++ b/dev-ruby/github-markup/github-markup-1.4.0.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="ruby20 ruby21"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rake"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2016-08-29 Thread Manuel Rüger
commit: cec1882183eee8385b9d4b3b13a04c1fc2201860
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Aug 29 10:08:10 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Aug 29 10:09:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cec18821

x11-misc/sddm: Add user to video group, fix QT dependencies

Gentoo-Bug: 592116

Package-Manager: portage-2.3.0

 x11-misc/sddm/sddm-0.14.0-r1.ebuild | 81 +
 1 file changed, 81 insertions(+)

diff --git a/x11-misc/sddm/sddm-0.14.0-r1.ebuild 
b/x11-misc/sddm/sddm-0.14.0-r1.ebuild
new file mode 100644
index ..d92b86b
--- /dev/null
+++ b/x11-misc/sddm/sddm-0.14.0-r1.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit cmake-utils user
+
+DESCRIPTION="Simple Desktop Display Manager"
+HOMEPAGE="https://github.com/sddm/sddm;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
+KEYWORDS="~amd64 ~arm ~x86"
+
+LICENSE="GPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0 public-domain"
+SLOT="0"
+IUSE="consolekit +pam systemd"
+
+RDEPEND=">=dev-qt/qtcore-5.6:5
+   >=dev-qt/qtdbus-5.6:5
+   >=dev-qt/qtgui-5.6:5
+   >=dev-qt/qtdeclarative-5.6:5
+   >=dev-qt/qtnetwork-5.6:5
+   >=x11-base/xorg-server-1.15.1
+   x11-libs/libxcb[xkb(-)]
+   consolekit? ( >=sys-auth/consolekit-0.9.4 )
+   pam? ( sys-libs/pam )
+   systemd? ( sys-apps/systemd:= )
+   !systemd? ( || ( sys-power/upower sys-power/upower-pm-utils ) )"
+
+DEPEND="${RDEPEND}
+   dev-python/docutils
+   >=dev-qt/linguist-tools-5.6:5
+   >=dev-qt/qttest-5.6:5
+   kde-frameworks/extra-cmake-modules
+   virtual/pkgconfig"
+
+pkg_pretend() {
+   if [[ ${MERGE_TYPE} != binary  && $(tc-getCC) == *gcc* ]]; then
+   if [[ $(gcc-major-version) -lt 4 || $(gcc-major-version) == 4 
&& $(gcc-minor-version) -lt 7 ]] ; then
+   die 'The active compiler needs to be gcc 4.7 (or newer)'
+   fi
+   fi
+}
+
+src_prepare() {
+   eapply "${FILESDIR}/${PN}-0.13.0-pam_kwallet.patch"
+   # fix for flags handling and bug 563108
+   eapply "${FILESDIR}/${PN}-0.12.0-respect-user-flags.patch"
+   use consolekit && eapply "${FILESDIR}/${P}-consolekit.patch"
+
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_PAM=$(usex pam)
+   -DNO_SYSTEMD=$(usex '!systemd')
+   -DBUILD_MAN_PAGES=ON
+   -DDBUS_CONFIG_FILENAME="org.freedesktop.sddm.conf"
+   )
+
+   cmake-utils_src_configure
+}
+
+pkg_postinst() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN},video
+
+   if use consolekit && use pam && [[ -e "${ROOT}"/etc/pam.d/system-login 
]]; then
+   local line=$(grep "pam_ck_connector.*nox11" 
"${ROOT}"/etc/pam.d/system-login)
+   if [[ -z ${line} ]]; then
+   ewarn
+   ewarn "Erroneous /etc/pam.d/system-login settings 
detected!"
+   ewarn "Please restore 'nox11' option in the line 
containing pam_ck_connector:"
+   ewarn
+   ewarn "session  optional  pam_ck_connector.so 
nox11"
+   ewarn
+   ewarn "or 'emerge -1 sys-auth/pambase' and run 
etc-update."
+   ewarn
+   fi
+   fi
+}



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

2016-08-29 Thread Patrice Clement
commit: 36edcef73868209c3da3566ccc057e7e5b7c7449
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug 29 09:41:19 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug 29 09:45:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36edcef7

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

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/wcwidth/wcwidth-0.1.7.ebuild 
b/dev-python/wcwidth/wcwidth-0.1.7.ebuild
index bbc123d..c667a7c 100644
--- a/dev-python/wcwidth/wcwidth-0.1.7.ebuild
+++ b/dev-python/wcwidth/wcwidth-0.1.7.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND=""



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

2016-08-29 Thread Patrice Clement
commit: 9a797728b53fd5e44b393a130f3b375e90c25ce6
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug 29 09:44:52 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug 29 09:45:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a797728

dev-python/wcwidth: Clean up old.

Package-Manager: portage-2.2.28

 dev-python/wcwidth/Manifest|  3 ---
 dev-python/wcwidth/wcwidth-0.1.4.ebuild| 18 --
 dev-python/wcwidth/wcwidth-0.1.5.ebuild| 28 
 dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild | 28 
 dev-python/wcwidth/wcwidth-0.1.6.ebuild| 28 
 5 files changed, 105 deletions(-)

diff --git a/dev-python/wcwidth/Manifest b/dev-python/wcwidth/Manifest
index d4af6f0..83bc871 100644
--- a/dev-python/wcwidth/Manifest
+++ b/dev-python/wcwidth/Manifest
@@ -1,4 +1 @@
-DIST wcwidth-0.1.4.tar.gz 19584 SHA256 
906d3123045d77027b49fe912458e1a1e1d6ca1a51558a4bd9168d143b129d2b SHA512 
3882d7a4309b868593586e7bc52ce5328504db2f37a4152d53a8b7b8632375866cc07900965d1dd9c84d22c4e2b5cb161b3091c6b3ce4a37d51aeca9c76fe36d
 WHIRLPOOL 
432cff1f6e206c9daf35406d485436c9f7b9a3e7c48f14384f9804d69c6a39099bb9ca4ee99547504c4fa2db8f70259796019f008d1c678c6b73c7de9c09cf60
-DIST wcwidth-0.1.5.tar.gz 19553 SHA256 
66c7ce3199c878331fe1241b63261ce53c1062597c189a16a54713e0919d SHA512 
1235a3fecea0a18d0c3fe160fd3518e05b37b64a232ce3e8a17dee102d6a6d06095c395b07bbd6a812723a78c44df5afaae19c479dae591b6c9aecb3d0001173
 WHIRLPOOL 
16e2efdf99700c3f04e6c2bab9f429e4df0db78ef248041ea0fbddd5934fed53e55611fec9bd0a7cb7b24a461ede574df991d422ca86ebf0739877993c13dbad
-DIST wcwidth-0.1.6.tar.gz 20483 SHA256 
dcb3ec4771066cc15cf6aab5d5c4a499a5f01c677ff5aeb46cf20500dccd920b SHA512 
da22fbbd8172673532b47d07f5285fbbb1c9e5d72f6593c5e194af6c94520653025805ff94b9cd829cd2d44e263349eb9896ebd3c2982059d1b2772850863ab3
 WHIRLPOOL 
a852fc3a0b22be683b5bfabecd47ecc051e3bc3a3ea134ca7c1b26edc5a14ef5c0a72d5cf192e6918d3ae43f122aafdccf24f76c10c2edb70b9f2fb5b7029632
 DIST wcwidth-0.1.7.tar.gz 22884 SHA256 
3df37372226d6e63e1b1e1eda15c594bca98a22d33a23832a90998faa96bc65e SHA512 
5bc9625fbd10721a50a3ac7d7f91012cca8e4f83533f265cf56890498bc52a53b155c82e67d6bc5523a5593c8d7992a1dec2a0f590318170eddf987c56f9c368
 WHIRLPOOL 
3e45d689500952b69fdd78190454bae95b0f124206ad43d3bad9aa1e41d54885c326de60b67290e8ffe60dd4330a65b286f534d0bbb52572da30c958a9dfe10a

diff --git a/dev-python/wcwidth/wcwidth-0.1.4.ebuild 
b/dev-python/wcwidth/wcwidth-0.1.4.ebuild
deleted file mode 100644
index 5367f2c..
--- a/dev-python/wcwidth/wcwidth-0.1.4.ebuild
+++ /dev/null
@@ -1,18 +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,4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Measures number of Terminal column cells of wide-character codes"
-HOMEPAGE="https://pypi.python.org/pypi/wcwidth/ 
https://github.com/jquast/wcwidth;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""

diff --git a/dev-python/wcwidth/wcwidth-0.1.5.ebuild 
b/dev-python/wcwidth/wcwidth-0.1.5.ebuild
deleted file mode 100644
index c0c6c3f..
--- a/dev-python/wcwidth/wcwidth-0.1.5.ebuild
+++ /dev/null
@@ -1,28 +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,4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Measures number of Terminal column cells of wide-character codes"
-HOMEPAGE="https://pypi.python.org/pypi/wcwidth/ 
https://github.com/jquast/wcwidth;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
-"
-
-python_test() {
-   py.test -rs --strict wcwidth/tests || die
-}

diff --git a/dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild 
b/dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild
deleted file mode 100644
index bbc123d..
--- a/dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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} )
-
-inherit distutils-r1
-
-DESCRIPTION="Measures number of Terminal column cells of wide-character codes"
-HOMEPAGE="https://pypi.python.org/pypi/wcwidth/ 
https://github.com/jquast/wcwidth;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( 

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

2016-08-29 Thread Patrice Clement
commit: 9dcd1f697f4db6751bb7420830bfa14bfb349002
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug 29 09:43:11 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug 29 09:45:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dcd1f69

dev-python/prompt_toolkit: Clean up old.

Package-Manager: portage-2.2.28

 dev-python/prompt_toolkit/Manifest | 11 ---
 .../prompt_toolkit/prompt_toolkit-0.45.ebuild  | 34 --
 .../prompt_toolkit/prompt_toolkit-0.46.ebuild  | 34 --
 .../prompt_toolkit/prompt_toolkit-0.47.ebuild  | 34 --
 .../prompt_toolkit/prompt_toolkit-0.48.ebuild  | 34 --
 .../prompt_toolkit/prompt_toolkit-0.50.ebuild  | 34 --
 .../prompt_toolkit/prompt_toolkit-0.52.ebuild  | 34 --
 .../prompt_toolkit/prompt_toolkit-0.53.ebuild  | 34 --
 .../prompt_toolkit/prompt_toolkit-0.54.ebuild  | 34 --
 .../prompt_toolkit/prompt_toolkit-0.57.ebuild  | 31 
 .../prompt_toolkit/prompt_toolkit-0.58.ebuild  | 30 ---
 .../prompt_toolkit/prompt_toolkit-0.60.ebuild  | 30 ---
 12 files changed, 374 deletions(-)

diff --git a/dev-python/prompt_toolkit/Manifest 
b/dev-python/prompt_toolkit/Manifest
index 9473bc2..8c1b019 100644
--- a/dev-python/prompt_toolkit/Manifest
+++ b/dev-python/prompt_toolkit/Manifest
@@ -1,13 +1,2 @@
-DIST prompt_toolkit-0.45.tar.gz 125907 SHA256 
553fd2b9169674adacf227ede2e056c2bbd7181a4a3ca614960467c0720997a6 SHA512 
ed3f374ccbedbcb82c013f499d8344001844c63d7f7fcd08de4d6776ef8ad23f5a85da94da04625de1e6197f197a78d6504954e189ddc6028f666f930f651e0c
 WHIRLPOOL 
f7c519473aa73be1d2165bdba7c6a359af108c8bcf8891444e55c5c8ebdbea8425721033dd0bbb2328da3e188bb87301805aa68e9f572d7aacde1752d7ba2b71
-DIST prompt_toolkit-0.46.tar.gz 127462 SHA256 
1aa25cb9772e1e27d12f7920b5a514421ab763231067119bbd2f8b1574b409fb SHA512 
43b7617484ba4c072fc8ac86450450ba127b54ccc1b0ac964cced075f63f470c0ba2d1c7a39be3a0911362baaa9e24e47d299fb48fd26b168f8bad60c1547780
 WHIRLPOOL 
3ee7c579073c577ab91bee80c7ed350905106c314350c389b5193def43d95d2fcabd739f90cc00989279ddfd407dcb357be8d27deb449c8f78ef51a6edd5fc33
-DIST prompt_toolkit-0.47.tar.gz 129902 SHA256 
8ab6c63f7de394b50bc56c9c9e62bed39d523db40b2ba44a2eed57d1ce5f79f6 SHA512 
7971ffb7252b461c109c95c9fa245d89da6c3ad24d6792ac84f2640556d76034271248ec01bef6e00dba171216bd9db13787bbc4723116ae3d7df2a974b5eb6f
 WHIRLPOOL 
c20c5cabdc80819543ea346fa1d6505f8cd9c87ffc00f7c6b996a3ce32ab7e9e99531a6116733017edb5916333283f4eb63278ac346a150b6cd17355c7a68e24
-DIST prompt_toolkit-0.48.tar.gz 131543 SHA256 
054a8f710d585ff994cf92f648bcb78abb1cd14295be3016dcf0214bbbc3b991 SHA512 
cec2b8fad25722a2f58895ab50ad9ceb168748bf85d94972c3652d1c46589b55a87e9b78246a138633ce9e7d1c45eab39bad8e3576fdce845a2d68a1c7803d89
 WHIRLPOOL 
67f9482fbb5814826137f4673db40cd843cb24f9f04011379cc2a83aca8a2a56734c156c421578f6ae4c9b8c5f877d018f6fd22ff39188ced3b187a4fa18b9f5
-DIST prompt_toolkit-0.50.tar.gz 149902 SHA256 
6acd7c7d158b1dfb5907659abfae0cee2e5354fabc943aed411843d7fb2bd4aa SHA512 
afe708baf8a06823e417c3b9444123e315b32526d49e918f9fde20eaa042989134f511f8dfd8e7ed99c0514d714585b3f82fa72cdf39c70ee85a7e1a27305b23
 WHIRLPOOL 
bcdeafbc4a202588f117b3c245399be6d9bfa75277a7e042ba4c0ad2aa7d11ba2fc0fe80edf64fe4762738596b5937df6d192eedc3f9927bb5aac60c55479be5
-DIST prompt_toolkit-0.52.tar.gz 152677 SHA256 
35b8a34df8dea4cba9dc1b8700c30ed7a8ba47cf3bc583768c5571a30902 SHA512 
25fcbbe86bd2fed82c10a4b75671c88fad96559c192b8d722bdb335598856a419a8a99e36eb63ecdc41f4d19c794159d684f0ec1f5c053505b3074472e7ee42a
 WHIRLPOOL 
3fff8864af716821a0d93cef0e0e0cf6174b014c32c49938d64da5ebcdf4724608dce74abc39a66850ff5e111e50aab623cea59501374d241fc5fa35c01e8baa
-DIST prompt_toolkit-0.53.tar.gz 153969 SHA256 
a62b861a52d2a8ff3080c4e23e529c1af8d0110f8e9d378fa3ea997d1c4ce864 SHA512 
5d91527c2de5650c95b42fc202be4237d3f98e9fccb5fdf2b0360ca169c5107015394ace76b06ec19d5c8b8b6e4437c75ad3068b262d26c351910ff97e1d4e9d
 WHIRLPOOL 
b12fd7021c9229332f3863531c54a5ed2b1e5ac276d8531295d7dc83c883f4fba039375e34cf9eacdad708b5ef385b31733120a6a132fbda61006918b32ed222
-DIST prompt_toolkit-0.54.tar.gz 157151 SHA256 
f06eff45c142fb4b82716593b85fabcee260dbcc5458a5680f81edd3cd1b4211 SHA512 
cf5b43a52bc4dd08fcc8aafe9e45172c93ac71e8b32beee000c7f267f792b64265ef00d572e927cef05e3642e197ae1c0573c3ec0e95317f7a065807e86a44b4
 WHIRLPOOL 
bb68c8767d96a9835b8b09607ecaeaf2b3c8a3858733ab1675093544c1a20d29b1098b016210263de781e0ca8d1a5b95b616ffc9a4b50d7e1e16d95220936684
-DIST prompt_toolkit-0.57.tar.gz 178829 SHA256 
de6019e1ebe99647d1b6640f09a02961b26144a91d9964ed93a41ccada9a9fae SHA512 
6ed966f2e4cd91e26aa5477205910db0e62a374c544a5f4fd052b22b5312a2bf49294a0bff6ad384a89e806e79eb8e7f3495ae6261b141c38b9c026f67d2b328
 WHIRLPOOL 

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

2016-08-29 Thread Patrice Clement
commit: e650be5210ff0236b82216f2e82a37d17e94d5b9
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug 29 09:42:35 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug 29 09:45:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e650be52

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

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/prompt_toolkit/prompt_toolkit-1.0.0.ebuild 
b/dev-python/prompt_toolkit/prompt_toolkit-1.0.0.ebuild
index 0b512ca..791c601 100644
--- a/dev-python/prompt_toolkit/prompt_toolkit-1.0.0.ebuild
+++ b/dev-python/prompt_toolkit/prompt_toolkit-1.0.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: mail-mta/postfix/

2016-08-29 Thread Eray Aslan
commit: ee6242709273e68bd36b453a2ea538fc4e8992eb
Author: Eray Aslan  gentoo  org>
AuthorDate: Mon Aug 29 09:28:38 2016 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Mon Aug 29 09:28:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee624270

mail-mta/postfix: version bump to 3.2_pre20160828

Package-Manager: portage-2.3.0

 mail-mta/postfix/Manifest|  2 +-
 ...20160612-r1.ebuild => postfix-3.2_pre20160828.ebuild} | 16 ++--
 2 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/mail-mta/postfix/Manifest b/mail-mta/postfix/Manifest
index 94908b5..0033e32 100644
--- a/mail-mta/postfix/Manifest
+++ b/mail-mta/postfix/Manifest
@@ -5,5 +5,5 @@ DIST postfix-3.0.4.tar.gz 4240805 SHA256 
b81ce81176b9df7183ad99b9c98000135f5e88e
 DIST postfix-3.0.5.tar.gz 4241656 SHA256 
dbe20d011a6fe79d28b5f7e6e86681dafd30f7ed8ad663bec244fc4694c87d1c SHA512 
73ae64d5d5a21a773934b1b334bb7c407a1e8f9652a2de7d4c0563d8b399fbd25b9fcc28d1d5ee724fc13c775ee9af2d5d56cb06d4947cd5a18bcf487c71c24e
 WHIRLPOOL 
022110186e5c2e9a11bfe19bd2712d39f751a47a273f75a3aa61f99f34ce76e4f20552c3df87c3878d0c1b7a1bf5bff893191d94a4951e14ce3d6ff7bcfbf905
 DIST postfix-3.1.0.tar.gz 4336709 SHA256 
88ac3e92755629077d9363319b1fa0db406efb10c2f22cdbb941bd8ab36fd733 SHA512 
06cf4c827de8d613cab6a57a8e76198d293660a263f60d17dd189f511da4b1e12eb98bbcf75695697a62959e26ca204bf2a53eb6657e8bd756a816977e717783
 WHIRLPOOL 
5fe4350d47051cfda00505012493f5c6f70598be901cd94a598a7e3332bc022b41050935c5263f140f0df573e3a3e00f6b97dd1d90c01a4e3d78a039f47a16a8
 DIST postfix-3.1.1.tar.gz 4337295 SHA256 
3deda4c34631970490b1b5fbb559905f93531bf1c7eb00e38b0d0deb1dba9982 SHA512 
e094dae3c3aaf6be23edefb7863d2f9fb57cd4e705464f17799fa4f71f9877efdf3f59ceb1970457a0dc6e6f3237ee06131f4ce1b21a5db9a61fe0c5f95a219d
 WHIRLPOOL 
4dbf26e498cb48ebf5d5721aa69447deed4db25dd2a9159514826eb7d4986dd7fef40980281f0872f565750ed5d316f831856b87eaaabfed3df8b23f982592cd
-DIST postfix-3.2-20160612.tar.gz 4366596 SHA256 
d7a64b6166befe9a0a705144283eec9ea055bb4cba67a5704bfb1a4048b3860c SHA512 
230789ddf9d8cf54325fa00d1643e284aa0284f2e06deb0120c92136d81bfe373c8bcb47fceb7ad934716f8728c1c6117fc4135e5c1a92639d3d8eeb0df4e495
 WHIRLPOOL 
8bf4136d1c24e1b411d6f9116dfd7da0ac442343d0220690fe83cad6d0b19f5499e2f15a611ccfd283828717eaf25187985b3f009e7ac68d2a45839559129065
+DIST postfix-3.2-20160828.tar.gz 4368321 SHA256 
62217029ccd12478129ab78c7dae69b826c103898489bd483e93296b477e71e9 SHA512 
c35e6266d8a65921b2dab0eff77040a3396e7f717b2004cda4e54e263ffc77e69456c656911ceeb3c5a79b0be01cae7e7e3d755a9ab73fa888e9fc613a128ca9
 WHIRLPOOL 
dcdd30a77ce36855df41d7ee5046248cab6d8516776a38c69089fac1dcde8b9e725837f4621ddd6dc1f235600c82d60a144a56895935b2665c0557cbd6d59274
 DIST postfix-vda-v13-2.10.0.patch 55701 SHA256 
6208021eb0b37ac6482e334e538ed5700cc22c4d4dd66ed9e975ae5f20bf935f SHA512 
0b4b53a8cd28abf56eee3b2ed63ca1814251b60816e6ca1143249d25fd6ef7f905bec3134125ac6e851af685db8aae878012113693261529ae2ddbcf1bd93e62
 WHIRLPOOL 
d98b7d2177b8b69738086880fd08c336fa60b99ff7413624e628fd5f17be2064f2ccaa37c047d3013ed41c0ff1bcb76e7962f8390c4179f28ab11733dd3b59d3

diff --git a/mail-mta/postfix/postfix-3.2_pre20160612-r1.ebuild 
b/mail-mta/postfix/postfix-3.2_pre20160828.ebuild
similarity index 95%
rename from mail-mta/postfix/postfix-3.2_pre20160612-r1.ebuild
rename to mail-mta/postfix/postfix-3.2_pre20160828.ebuild
index 47e4efa..cb6d45b 100644
--- a/mail-mta/postfix/postfix-3.2_pre20160612-r1.ebuild
+++ b/mail-mta/postfix/postfix-3.2_pre20160828.ebuild
@@ -286,7 +286,7 @@ src_install () {
 }
 
 pkg_postinst() {
-   [ "${EROOT}" == "/" ] && pkg_config
+   #[ "${EROOT}" == "/" ] && pkg_config
 
if [[ ! -e /etc/mail/aliases.db ]] ; then
ewarn
@@ -297,12 +297,16 @@ pkg_postinst() {
fi
 }
 
-pkg_config() {
+pkg_postinst() {
# configure tls
if use ssl ; then
-   elog "To configure client side TLS settings:"
-   elog "${EROOT}"usr/sbin/postfix tls enable-client
-   elog "To configure server side TLS settings:"
-   elog "${EROOT}"usr/sbin/postfix tls enable-server
+   if "${EROOT}"/usr/sbin/postfix tls all-default-client; then
+   elog "To configure client side TLS settings:"
+   elog "${EROOT}"usr/sbin/postfix tls enable-client
+   fi
+   if "${EROOT}"/usr/sbin/postfix tls all-default-server; then
+   elog "To configure server side TLS settings:"
+   elog "${EROOT}"usr/sbin/postfix tls enable-server
+   fi
fi
 }



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

2016-08-29 Thread Lars Wendler
commit: 6c9fbc682f264d5d272ce12cf563fea1585fe90b
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 09:20:29 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 09:20:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c9fbc68

net-print/cups-filters: Removed old.

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 net-print/cups-filters/Manifest   |   1 -
 net-print/cups-filters/cups-filters-1.10.0.ebuild | 122 --
 2 files changed, 123 deletions(-)

diff --git a/net-print/cups-filters/Manifest b/net-print/cups-filters/Manifest
index 113da26..c1fefa3 100644
--- a/net-print/cups-filters/Manifest
+++ b/net-print/cups-filters/Manifest
@@ -1,4 +1,3 @@
-DIST cups-filters-1.10.0.tar.xz 1399652 SHA256 
1f708a404164fb8eb341e5410e1b849b19cb47ce1bbe0d97c3673768db3401a1 SHA512 
93517fe81552cac0f1414b04876db54bf94475d3ceb443c4e104e381ea5141296237576f543db0184794ade952a892a4fa6f312c4c8a4e5769827567eb181e2a
 WHIRLPOOL 
ad924de8719c807e78c6c6c7c4a561c2cee279d99a10530d4353aae0ef4e8723d4ce81dc881c7320f174ccf8e6a25491918fec4e7311d3bf49d02fbe9e623132
 DIST cups-filters-1.11.1.tar.xz 1403392 SHA256 
a886497313ca7f405d3b2babb85b3a4edf5702803863df4e15c9450b83ed1274 SHA512 
be475126fb30690b86471733bcfd27a9696fdc0e1053e5c3ac99673608383ad446ecbc8f45ecdeced3ebe70918976f9253ea0097b54bcd01e79e9887c230c22f
 WHIRLPOOL 
752d5cd95c27b729fab6c47af3a1286b51b624d7aa7608e83758cc392e4fb3bf09790fe6ca4d8d668ad4560df7642f114458d051e84d3e92178782d30ad24312
 DIST cups-filters-1.11.2.tar.xz 1404832 SHA256 
4b485408897953889ce41d2981fa71a5479b70d8d1d853829d205492ce250675 SHA512 
7a396a0921ed54f2c6705b00faea9e5f098b0632beb526bf131af134307bbf6f01a952b88c4983fbda4b5367ed84e9cb0e69a78d5f31bef1fc1198bae70e43c5
 WHIRLPOOL 
d9d523202b8337e21a5f9c8de0af68223dfb0282da8f22cfd3523881a81d52befff12a884ba480ae5a95f142b85e884b18c95d73d69ab77e10361767bb9b7aae
 DIST cups-filters-1.5.0.tar.xz 1375588 SHA256 
f22a8864e8d5b693795605a31345c08cc68f85120ebde9a0aa7bc27639815932 SHA512 
81574f8368aaef61aeee4369caa394f2c8cdc717b03687d8a17c7927892f07cff68f1efb8d674757cb97001b55fd58fa5c14784a510ce9d31e385b1a73cd18c7
 WHIRLPOOL 
4201d08a2bb76d349a6b9f7220eb48dea86bb81c0cedbe8dcb8796c49ce26f67f6a7c49677b4fc7b6f865eb20e3c806746f565668e9f9e1e3935630621d032cd

diff --git a/net-print/cups-filters/cups-filters-1.10.0.ebuild 
b/net-print/cups-filters/cups-filters-1.10.0.ebuild
deleted file mode 100644
index 06ee8f4..
--- a/net-print/cups-filters/cups-filters-1.10.0.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-GENTOO_DEPEND_ON_PERL=no
-
-inherit eutils perl-module systemd
-
-if [[ "${PV}" == "" ]] ; then
-   inherit bzr
-   EBZR_REPO_URI="http://bzr.linuxfoundation.org/openprinting/cups-filters;
-else
-   SRC_URI="http://www.openprinting.org/download/${PN}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-fbsd ~m68k-mint"
-fi
-DESCRIPTION="Cups PDF filters"
-HOMEPAGE="https://wiki.linuxfoundation.org/openprinting/pdf_as_standard_print_job_format;
-
-LICENSE="MIT GPL-2"
-SLOT="0"
-IUSE="dbus +foomatic jpeg ldap perl png +postscript static-libs tiff zeroconf"
-
-RDEPEND="
-   postscript? ( >=app-text/ghostscript-gpl-9.09[cups] )
-   >=app-text/poppler-0.32:=[cxx,jpeg?,lcms,tiff?,utils,xpdf-headers(+)]
-   >=app-text/qpdf-3.0.2:=
-   dev-libs/glib:2
-   media-libs/fontconfig
-   media-libs/freetype:2
-   media-libs/lcms:2
-   >=net-print/cups-1.7.3
-   !<=net-print/cups-1.5.
-   sys-devel/bc
-   sys-libs/zlib
-   dbus? ( sys-apps/dbus )
-   foomatic? ( !net-print/foomatic-filters )
-   jpeg? ( virtual/jpeg:0 )
-   ldap? ( net-nds/openldap )
-   perl? ( dev-lang/perl:= )
-   png? ( media-libs/libpng:0= )
-   tiff? ( media-libs/tiff:0 )
-   zeroconf? ( net-dns/avahi[dbus] )
-"
-DEPEND="${RDEPEND}
-   dev-util/gdbus-codegen
-"
-
-src_configure() {
-   econf \
-   --docdir="${EPREFIX}/usr/share/doc/${PF}" \
-   --localstatedir="${EPREFIX}"/var \
-   --with-cups-rundir="${EPREFIX}"/run/cups \
-   $(use_enable dbus) \
-   $(use_enable zeroconf avahi) \
-   $(use_enable static-libs static) \
-   $(use_enable foomatic) \
-   $(use_enable ldap) \
-   $(use_enable postscript ghostscript) \
-   $(use_enable postscript ijs) \
-   --with-fontdir="fonts/conf.avail" \
-   --with-pdftops=pdftops \
-   --enable-imagefilters \
-   $(use_with jpeg) \
-   $(use_with png) \
-   $(use_with tiff) \
-   --with-rcdir=no \
-   --with-browseremoteprotocols=DNSSD,CUPS \
-   

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

2016-08-29 Thread Lars Wendler
commit: 3df3a45db305bf38751cbb87a901275f92e6cc95
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 09:19:58 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 09:19:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df3a45d

net-print/cups-filters: Bump to version 1.11.2

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 net-print/cups-filters/Manifest   |   1 +
 net-print/cups-filters/cups-filters-1.11.2.ebuild | 122 ++
 2 files changed, 123 insertions(+)

diff --git a/net-print/cups-filters/Manifest b/net-print/cups-filters/Manifest
index 74f752e..113da26 100644
--- a/net-print/cups-filters/Manifest
+++ b/net-print/cups-filters/Manifest
@@ -1,4 +1,5 @@
 DIST cups-filters-1.10.0.tar.xz 1399652 SHA256 
1f708a404164fb8eb341e5410e1b849b19cb47ce1bbe0d97c3673768db3401a1 SHA512 
93517fe81552cac0f1414b04876db54bf94475d3ceb443c4e104e381ea5141296237576f543db0184794ade952a892a4fa6f312c4c8a4e5769827567eb181e2a
 WHIRLPOOL 
ad924de8719c807e78c6c6c7c4a561c2cee279d99a10530d4353aae0ef4e8723d4ce81dc881c7320f174ccf8e6a25491918fec4e7311d3bf49d02fbe9e623132
 DIST cups-filters-1.11.1.tar.xz 1403392 SHA256 
a886497313ca7f405d3b2babb85b3a4edf5702803863df4e15c9450b83ed1274 SHA512 
be475126fb30690b86471733bcfd27a9696fdc0e1053e5c3ac99673608383ad446ecbc8f45ecdeced3ebe70918976f9253ea0097b54bcd01e79e9887c230c22f
 WHIRLPOOL 
752d5cd95c27b729fab6c47af3a1286b51b624d7aa7608e83758cc392e4fb3bf09790fe6ca4d8d668ad4560df7642f114458d051e84d3e92178782d30ad24312
+DIST cups-filters-1.11.2.tar.xz 1404832 SHA256 
4b485408897953889ce41d2981fa71a5479b70d8d1d853829d205492ce250675 SHA512 
7a396a0921ed54f2c6705b00faea9e5f098b0632beb526bf131af134307bbf6f01a952b88c4983fbda4b5367ed84e9cb0e69a78d5f31bef1fc1198bae70e43c5
 WHIRLPOOL 
d9d523202b8337e21a5f9c8de0af68223dfb0282da8f22cfd3523881a81d52befff12a884ba480ae5a95f142b85e884b18c95d73d69ab77e10361767bb9b7aae
 DIST cups-filters-1.5.0.tar.xz 1375588 SHA256 
f22a8864e8d5b693795605a31345c08cc68f85120ebde9a0aa7bc27639815932 SHA512 
81574f8368aaef61aeee4369caa394f2c8cdc717b03687d8a17c7927892f07cff68f1efb8d674757cb97001b55fd58fa5c14784a510ce9d31e385b1a73cd18c7
 WHIRLPOOL 
4201d08a2bb76d349a6b9f7220eb48dea86bb81c0cedbe8dcb8796c49ce26f67f6a7c49677b4fc7b6f865eb20e3c806746f565668e9f9e1e3935630621d032cd
 DIST cups-filters-1.8.3.tar.xz 1373028 SHA256 
e1e786f1fbcd3a203d87ebb4106a0ba8d579953cbe22056d12d4ee8143f5341a SHA512 
5c3648670ae141038a373c4e800e81a7584759e3caf8c4e4468cb0da11c0ff521ac80678e603856c7209da6638673400305c38903cb27e3b4d792d17947e2af4
 WHIRLPOOL 
0c0ff9b767f35a61f4b9b2f57392d1a6afce35decf9216e77f7503b62bd67da0fa05f9ed507518599e03d27de50458823499989bf6bfd8d3a3da162292819157

diff --git a/net-print/cups-filters/cups-filters-1.11.2.ebuild 
b/net-print/cups-filters/cups-filters-1.11.2.ebuild
new file mode 100644
index ..06ee8f4
--- /dev/null
+++ b/net-print/cups-filters/cups-filters-1.11.2.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+GENTOO_DEPEND_ON_PERL=no
+
+inherit eutils perl-module systemd
+
+if [[ "${PV}" == "" ]] ; then
+   inherit bzr
+   EBZR_REPO_URI="http://bzr.linuxfoundation.org/openprinting/cups-filters;
+else
+   SRC_URI="http://www.openprinting.org/download/${PN}/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-fbsd ~m68k-mint"
+fi
+DESCRIPTION="Cups PDF filters"
+HOMEPAGE="https://wiki.linuxfoundation.org/openprinting/pdf_as_standard_print_job_format;
+
+LICENSE="MIT GPL-2"
+SLOT="0"
+IUSE="dbus +foomatic jpeg ldap perl png +postscript static-libs tiff zeroconf"
+
+RDEPEND="
+   postscript? ( >=app-text/ghostscript-gpl-9.09[cups] )
+   >=app-text/poppler-0.32:=[cxx,jpeg?,lcms,tiff?,utils,xpdf-headers(+)]
+   >=app-text/qpdf-3.0.2:=
+   dev-libs/glib:2
+   media-libs/fontconfig
+   media-libs/freetype:2
+   media-libs/lcms:2
+   >=net-print/cups-1.7.3
+   !<=net-print/cups-1.5.
+   sys-devel/bc
+   sys-libs/zlib
+   dbus? ( sys-apps/dbus )
+   foomatic? ( !net-print/foomatic-filters )
+   jpeg? ( virtual/jpeg:0 )
+   ldap? ( net-nds/openldap )
+   perl? ( dev-lang/perl:= )
+   png? ( media-libs/libpng:0= )
+   tiff? ( media-libs/tiff:0 )
+   zeroconf? ( net-dns/avahi[dbus] )
+"
+DEPEND="${RDEPEND}
+   dev-util/gdbus-codegen
+"
+
+src_configure() {
+   econf \
+   --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+   --localstatedir="${EPREFIX}"/var \
+   --with-cups-rundir="${EPREFIX}"/run/cups \
+   $(use_enable dbus) \
+   $(use_enable zeroconf avahi) \
+   $(use_enable static-libs static) \
+   $(use_enable foomatic) \
+   $(use_enable ldap) \
+   $(use_enable postscript ghostscript) 

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

2016-08-29 Thread Lars Wendler
commit: 02698677b5ebb43cdb82e580e47eb4d98725caae
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug 29 08:49:22 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Aug 29 08:49:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02698677

user.eclass: Removed superfluous "shift" call (bug #592176).

 eclass/user.eclass | 1 -
 1 file changed, 1 deletion(-)

diff --git a/eclass/user.eclass b/eclass/user.eclass
index 372c769..9c27647 100644
--- a/eclass/user.eclass
+++ b/eclass/user.eclass
@@ -187,7 +187,6 @@ enewuser() {
local egroups=$1; shift
local g egroups_arr
IFS="," read -r -a egroups_arr <<<"${egroups}"
-   shift
if [[ ${#egroups_arr[@]} -gt 0 ]] ; then
local defgroup exgroups
for g in "${egroups_arr[@]}" ; do



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

2016-08-29 Thread Manuel Rüger
commit: 8e6b4eec3e1491c960006567b8a9358b5678f1e4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Aug 29 08:22:47 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Aug 29 08:22:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e6b4eec

dev-ruby/wikicloth: Add ruby22

Package-Manager: portage-2.3.0

 dev-ruby/wikicloth/wikicloth-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/wikicloth/wikicloth-0.8.3.ebuild 
b/dev-ruby/wikicloth/wikicloth-0.8.3.ebuild
index 3315c28..a47e422 100644
--- a/dev-ruby/wikicloth/wikicloth-0.8.3.ebuild
+++ b/dev-ruby/wikicloth/wikicloth-0.8.3.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="README README.textile"



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/gratr19/

2016-08-29 Thread Manuel Rüger
commit: 952aaf664e85b3cceadc278e1d448a2e850022d6
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Aug 29 08:13:31 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Aug 29 08:13:31 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=952aaf66

dev-ruby/gratr19: Add ruby22

Package-Manager: portage-2.3.0

 dev-ruby/gratr19/gratr19-0.4.4.1_p20130805.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/gratr19/gratr19-0.4.4.1_p20130805.ebuild 
b/dev-ruby/gratr19/gratr19-0.4.4.1_p20130805.ebuild
index e2fe833..a1e6a98 100644
--- a/dev-ruby/gratr19/gratr19-0.4.4.1_p20130805.ebuild
+++ b/dev-ruby/gratr19/gratr19-0.4.4.1_p20130805.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21"
+USE_RUBY="ruby20 ruby21 ruby22"
 RUBY_FAKEGEM_EXTRADOC="README"
 RUBY_FAKEGEM_VERSION="0.4.4.1.20130805"
 inherit ruby-fakegem



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

2016-08-29 Thread Manuel Rüger
commit: fce370ba229b2315b31e87aaf3fc363a27769c49
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Aug 29 08:10:13 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Aug 29 08:10:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce370ba

x11-misc/sddm: Add missed dependency on extra-cmake-modules

Gentoo-Bug: 592364

Package-Manager: portage-2.3.0

 x11-misc/sddm/sddm-0.14.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-misc/sddm/sddm-0.14.0.ebuild b/x11-misc/sddm/sddm-0.14.0.ebuild
index eb423b0..5b70acb 100644
--- a/x11-misc/sddm/sddm-0.14.0.ebuild
+++ b/x11-misc/sddm/sddm-0.14.0.ebuild
@@ -32,6 +32,7 @@ DEPEND="${RDEPEND}
dev-python/docutils
dev-qt/linguist-tools:5
dev-qt/qttest:5
+   kde-frameworks/extra-cmake-modules
virtual/pkgconfig"
 
 pkg_pretend() {



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

2016-08-29 Thread Jeroen Roovers
commit: 63d6138c4fb8584e82bad7e305dc5efcc5aa1dfc
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Aug 29 07:28:32 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Aug 29 07:28:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63d6138c

media-gfx/wings: Old.

Package-Manager: portage-2.3.0

 media-gfx/wings/Manifest  |  1 -
 media-gfx/wings/wings-2.0.4-r4.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/media-gfx/wings/Manifest b/media-gfx/wings/Manifest
index 9ec62d8..051527c 100644
--- a/media-gfx/wings/Manifest
+++ b/media-gfx/wings/Manifest
@@ -1,4 +1,3 @@
 DIST wings-1.1.1.tar.bz2 1932572 SHA256 
1a75a39a1a4586b242558a879d611adf1566b86785750f48ba60d851c2e40d08 SHA512 
e60727328c9431738736466444655f54694973e59ad73e60874450845b080bf65c6b784ee0cb06cdff98f3717841dfbeceb5e36a1c55d98f31f280b972b7a2e3
 WHIRLPOOL 
9868a2ef5571291fa98db5239d767026d3cb0962c417bea77d7555ed2ff3d7fcded2200cad9347f5c0bb39591037fac9096cb7518f8285d2a3597a607c557d5e
 DIST wings-1.5.4.tar.bz2 6213585 SHA256 
bd04ca1c1237f3a6f29ce3f653015e21142b849b338a3d1ab8633e3c6bcde663 SHA512 
fb0cab378703dad4a240f13b96b7522acb4c8466d01bc498e54baf8f4ff1ae497edc08f926889ff669f525ee9c6b787903a47fc78c66f2d9632a5fa45535ac3f
 WHIRLPOOL 
1f0414b05b9b4a29bcc2288c31e68bf3c087b0f093951b4ed9c1f563567b3fa86aca57c595f5d656502d1962dc95902d810228845f284f588b24a1865ef759d4
-DIST wings-2.0.4.tar.bz2 2457543 SHA256 
4f76360766f0a76562e8d08d78702cfa3afe02e8e7287e0d518a9e7a743f35c4 SHA512 
237c409261580595056029cb18fad9d4703121ea489d8c4c901b3c47fe9e4badb0dbea9a0718c74c403139aabe74c948241f131c0d2d62f5fb2e01e7fcd7d40c
 WHIRLPOOL 
4827ef5ea6c68c0bd7df566cd6da5bf3e7029153eb648ab15f5e6327837adc90c36cd127c327f17325921844013989af13389e3a24c41d62709bc46330b5c832
 DIST wings-2.0.5.tar.bz2 2455836 SHA256 
318b6f9479b04882f2307b60d78a0020d305ce66ee3293e22cc36bde2a7fe360 SHA512 
d116c4d23043f79f80ecb76c9a0d2d0dec12169fb382ca0fc84a78c462541072ec7820bfbbaadfae39aee2a07512f346b845d3f4c6e133f2d80b0d12b07907b1
 WHIRLPOOL 
51bc7cf6a9bbfa02e04adda8d132ba06df848b822d0836fb66c437571a72d6603adab483407d4c7e037523485f021d92d030f261fb4e614813540178a1bb

diff --git a/media-gfx/wings/wings-2.0.4-r4.ebuild 
b/media-gfx/wings/wings-2.0.4-r4.ebuild
deleted file mode 100644
index 9b046f2..
--- a/media-gfx/wings/wings-2.0.4-r4.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-inherit eutils multilib
-
-DESCRIPTION="Wings 3D is an advanced subdivision modeler"
-HOMEPAGE="http://www.wings3d.com/;
-SRC_URI="mirror://sourceforge/wings/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=dev-lang/erlang-18.1[smp,wxwidgets]
-   dev-libs/cl
-   media-libs/libsdl[opengl]
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   sed -i \
-   -e '/include_lib/s|"wings/|"../|' \
-   $(find . -name '*'.erl) \
-   || die
-
-   eapply_user
-}
-
-src_configure() {
-   export ERL_PATH="/usr/$(get_libdir)/erlang/lib/"
-}
-
-src_compile() {
-   # Work around parallel make issues
-   emake vsn.mk
-   for subdir in intl_tools src e3d icons plugins_src; do
-   emake -C ${subdir}
-   done
-}
-
-src_install() {
-   WINGS_PATH=${ERL_PATH}/${P}
-   dodir ${WINGS_PATH}
-
-   find -name 'Makefile*' -exec rm -f '{}' \;
-
-   insinto ${WINGS_PATH}
-   doins -r e3d ebin icons plugins psd shaders src textures tools
-
-   newbin "${FILESDIR}"/wings.sh-r1 wings
-   dodoc AUTHORS README
-}



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

2016-08-29 Thread Keri Harris
commit: 2672fe1a5d705da7c197a3cc1d8dbe36c30de6e9
Author: Keri Harris  gentoo  org>
AuthorDate: Mon Aug 29 06:40:02 2016 +
Commit: Keri Harris  gentoo  org>
CommitDate: Mon Aug 29 06:40:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2672fe1a

dev-lang/swi-prolog: bump 7.3 development version

Package-Manager: portage-2.2.26

 dev-lang/swi-prolog/Manifest |   1 +
 dev-lang/swi-prolog/swi-prolog-7.3.25.ebuild | 143 +++
 2 files changed, 144 insertions(+)

diff --git a/dev-lang/swi-prolog/Manifest b/dev-lang/swi-prolog/Manifest
index 3b4a186..f36dad2 100644
--- a/dev-lang/swi-prolog/Manifest
+++ b/dev-lang/swi-prolog/Manifest
@@ -4,3 +4,4 @@ DIST swi-prolog-7.2.3-gentoo-patchset-1.tar.gz 1875 SHA256 
c11e48122dc468f21e08d
 DIST swipl-7.2.3.tar.gz 16192142 SHA256 
43657d51b7c5887bc2d2bced50a9822b86a08a6841399b8e76ee877f51d646b5 SHA512 
da27a6b171d3b471401f1a91e86a4dbe98973d8a1db8c72aa27e452311d08b893b01a1de8f9f4dafcdac460774b4ea980050256d37284546941e1bdf84f8cd7b
 WHIRLPOOL 
de695c8e0317921dcc13898f7a3c88d1012e3f87f633cd25766ca5cb6637b29ca81b9245d015614089291a7d9abd0d8c7109ccae1df9297d78301d241cb258b3
 DIST swipl-7.3.23.tar.gz 16393156 SHA256 
ea6d2f8f0ec5fe8c1492f6790c8697b661d14e7b1e7a976c5d5d1c7d65a284d4 SHA512 
1a79e0066dbcdaf49c183ca4344ffd1a5ab4765cc999ab46ff9a31bf2a46298e3b8816a3f0b715446a55d22bd8f1880a36bf43d79acc07506f8674c106eec5ca
 WHIRLPOOL 
b70a03aa549320fbd102362512fa0e4b88cb7c546da997356cbe11a3af89e1be7384dd1fe43cd6a881ab952e6eb7173841acc36070373dd41744b63b2f739349
 DIST swipl-7.3.24.tar.gz 16438721 SHA256 
4fd337d0817373c7c8d59cce5324e068be316d28dc3e81877075cd51168dd7cd SHA512 
40d791bc5b2efc94a131c1895c16b28b361f877bb09587cf0dbdc4a67600d10da69133c2bcc1da0df45db839d70e11412614d140b77f2ba820e8c6516fa4bd4b
 WHIRLPOOL 
161ab7ec73ba1f2fdfd02a6a55bb74eb80cbd05af793792bfea3d98e16ae1e6c6f653394e2c4f988d48f3cdbd78402f687fba0aa5ab40205129787f642d2a917
+DIST swipl-7.3.25.tar.gz 16468055 SHA256 
0ab08807cf84658faea555fdd8bab58b2c240496dd88b60400594329fd7b0736 SHA512 
f16055fe70cd44dcfc9a8f31179e8baaca46158f1af7e243e455992c337ec0c8be6b1fe7bb276f56b3acf9b09a9fdcb381943985d559f7958d4f4222b4ea737f
 WHIRLPOOL 
f3735b26347d24a433a99af9aee02eafa2ec8663210f0557aa0d361dcc875d1accdd07df034df158fd2dfb9d48fdf8f271f8c5612a481533dbb58427b7323067

diff --git a/dev-lang/swi-prolog/swi-prolog-7.3.25.ebuild 
b/dev-lang/swi-prolog/swi-prolog-7.3.25.ebuild
new file mode 100644
index ..f212c56
--- /dev/null
+++ b/dev-lang/swi-prolog/swi-prolog-7.3.25.ebuild
@@ -0,0 +1,143 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils flag-o-matic java-pkg-opt-2 multilib
+
+PATCHSET_VER="0"
+
+DESCRIPTION="free, small, and standard compliant Prolog compiler"
+HOMEPAGE="http://www.swi-prolog.org/;
+SRC_URI="http://www.swi-prolog.org/download/devel/src/swipl-${PV}.tar.gz;
+
+LICENSE="BSD-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="archive berkdb debug doc +gmp hardened java libressl minimal odbc 
+readline ssl static-libs test uuid zlib X"
+
+RDEPEND="sys-libs/ncurses:=
+   archive? ( app-arch/libarchive )
+   berkdb? ( >=sys-libs/db-4:= )
+   zlib? ( sys-libs/zlib )
+   odbc? ( dev-db/unixODBC )
+   readline? ( sys-libs/readline:= )
+   gmp? ( dev-libs/gmp:0 )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0 )
+   libressl? ( dev-libs/libressl )
+   )
+   java? ( >=virtual/jdk-1.5:= )
+   uuid? ( dev-libs/ossp-uuid )
+   X? (
+   virtual/jpeg:0
+   x11-libs/libX11
+   x11-libs/libXft
+   x11-libs/libXpm
+   x11-libs/libXt
+   x11-libs/libICE
+   x11-libs/libSM )"
+
+DEPEND="${RDEPEND}
+   X? ( x11-proto/xproto )
+   java? ( test? ( =dev-java/junit-3.8* ) )"
+
+S="${WORKDIR}/swipl-${PV}"
+
+src_prepare() {
+   EPATCH_FORCE=yes
+   EPATCH_SUFFIX=patch
+   if [[ -d "${WORKDIR}"/${PV} ]] ; then
+   epatch "${WORKDIR}"/${PV}
+   fi
+
+   if ! use uuid; then
+   mv packages/clib/uuid.pl packages/clib/uuid.pl.unused || die
+   fi
+
+   # OSX/Intel ld doesn't like an archive without table of contents
+   sed -i -e 's/-cru/-scru/' packages/nlp/libstemmer_c/Makefile.pl || die
+}
+
+src_configure() {
+   append-flags -fno-strict-aliasing
+   use ppc && append-flags -mno-altivec
+   use hardened && append-flags -fno-unit-at-a-time
+   use debug && append-flags -DO_DEBUG
+
+   # ARCH is used in the configure script to figure out host and target
+   # specific stuff
+   export ARCH=${CHOST}
+
+   export CC_FOR_BUILD=$(tc-getBUILD_CC)
+
+   cd "${S}"/src || die
+   econf \
+   --libdir="${EPREFIX}"/usr/$(get_libdir) \
+   $(use_enable