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

2016-06-29 Thread Benda XU
commit: 699111703bfe3cd30c28d54025ab7515e79c0e85
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jun 30 03:00:23 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jun 30 03:00:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69911170

sys-apps/baselayout: revision bump to have EAPI=5 and support Prefix.

Bug: 532050

Package-Manager: portage-2.2.28

 sys-apps/baselayout/baselayout-2.2-r1.ebuild | 256 +++
 1 file changed, 256 insertions(+)

diff --git a/sys-apps/baselayout/baselayout-2.2-r1.ebuild 
b/sys-apps/baselayout/baselayout-2.2-r1.ebuild
new file mode 100644
index 000..11326dc
--- /dev/null
+++ b/sys-apps/baselayout/baselayout-2.2-r1.ebuild
@@ -0,0 +1,256 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils multilib
+
+DESCRIPTION="Filesystem baselayout and init scripts"
+HOMEPAGE="https://www.gentoo.org/;
+SRC_URI="mirror://gentoo/${P}.tar.bz2
+   https://dev.gentoo.org/~vapier/dist/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+IUSE="build kernel_linux"
+
+pkg_setup() {
+   multilib_layout
+}
+
+# Create our multilib dirs - the Makefile has no knowledge of this
+multilib_warn() {
+   local syms=$1 dirs=$2 def_libdir=$3
+
+   [ -z "${syms}${dirs}" ] && return
+
+   ewarn "Your system profile has SYMLINK_LIB=${SYMLINK_LIB}, so that 
means"
+   if [ -z "${syms}" ] ; then
+   ewarn "you need to have these paths as symlinks to 
${def_libdir}:"
+   ewarn "$1"
+   fi
+}
+multilib_layout() {
+   local libdir libdirs=$(get_all_libdirs) def_libdir=$(get_abi_LIBDIR 
$DEFAULT_ABI)
+   : ${libdirs:=lib}   # it isn't that we don't trust 
multilib.eclass...
+
+   [ -z "${def_libdir}" ] && die "your DEFAULT_ABI=$DEFAULT_ABI appears to 
be invalid"
+
+   # figure out which paths should be symlinks and which should be 
directories
+   local dirs syms exp d
+   for libdir in ${libdirs} ; do
+   exp=( {,usr/,usr/local/}${libdir} )
+   for d in "${exp[@]}" ; do
+   # most things should be dirs
+   if [ "${SYMLINK_LIB}" = "yes" ] && [ "${libdir}" = 
"lib" ] ; then
+   [ ! -h "${d}" ] && [ -e "${d}" ] && dirs+=" 
${d}"
+   else
+   [ -h "${d}" ] && syms+=" ${d}"
+   fi
+   done
+   done
+   if [ -n "${syms}${dirs}" ] ; then
+   ewarn "Your system profile has SYMLINK_LIB=${SYMLINK_LIB:-no}, 
so that means you need to"
+   ewarn "have these paths configured as follows:"
+   [ -n "${dirs}" ] && ewarn "symlinks to '${def_libdir}':${dirs}"
+   [ -n "${syms}" ] && ewarn "directories:${syms}"
+   ewarn "The ebuild will attempt to fix these, but only for 
trivial conversions."
+   ewarn "If things fail, you will need to manually create/move 
the directories."
+   echo
+   fi
+
+   # setup symlinks and dirs where we expect them to be; do not migrate
+   # data ... just fall over in that case.
+   local prefix
+   for prefix in "${EROOT}"{,usr/,usr/local/} ; do
+   if [ "${SYMLINK_LIB}" = yes ] ; then
+   # we need to make sure "lib" points to the native libdir
+   if [ -h "${prefix}lib" ] ; then
+   # it's already a symlink!  assume it's pointing 
to right place ...
+   continue
+   elif [ -d "${prefix}lib" ] ; then
+   # "lib" is a dir, so need to convert to a 
symlink
+   ewarn "Converting ${prefix}lib from a dir to a 
symlink"
+   rm -f "${prefix}lib"/.keep
+   if rmdir "${prefix}lib" 2>/dev/null ; then
+   ln -s ${def_libdir} "${prefix}lib" || 
die
+   else
+   die "non-empty dir found where we 
needed a symlink: ${prefix}lib"
+   fi
+   else
+   # nothing exists, so just set it up sanely
+   ewarn "Initializing ${prefix}lib as a symlink"
+   mkdir -p "${prefix}" || die
+   rm -f "${prefix}lib" || die
+   ln -s ${def_libdir} "${prefix}lib" || die
+   mkdir -p "${prefix}${def_libdir}" #423571
+   fi
+   else
+   # we need to make sure "lib" is a dir
+   if [ 

[gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/

2016-06-29 Thread Göktürk Yüksek
commit: dcc56f301befa4a1374cf91731ba568721e727cf
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Jun 30 02:46:13 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Jun 30 02:46:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc56f30

app-crypt/libu2f-server: fix test dependencies #587472

The configure.ac file checks for the test deps unconditionally.
Remove test USE flag and always depend on test deps.

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

Package-Manager: portage-2.2.28

 app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild 
b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
index e05b3ea..1ff2ecd 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz;
 LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
+IUSE="static-libs"
 
 RDEPEND="
dev-libs/openssl:0=[${MULTILIB_USEDEP}]
@@ -22,7 +22,7 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
virtual/pkgconfig
-   test? ( dev-libs/check[${MULTILIB_USEDEP}] )
+   dev-libs/check[${MULTILIB_USEDEP}]
 "
 
 src_prepare() {



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

2016-06-29 Thread Jason Donenfeld
commit: 06ad6b5ec463e780e68f0e7bffcf4f327742b168
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Thu Jun 30 02:18:50 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Thu Jun 30 02:19:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06ad6b5e

net-misc/wireguard: do not strip binaries on install

 net-misc/wireguard/wireguard-.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/net-misc/wireguard/wireguard-.ebuild 
b/net-misc/wireguard/wireguard-.ebuild
index bfc0a9c..4a27f4c 100644
--- a/net-misc/wireguard/wireguard-.ebuild
+++ b/net-misc/wireguard/wireguard-.ebuild
@@ -38,6 +38,11 @@ pkg_setup() {
kernel_is -lt 4 1 0 && die "This version of ${PN} requires Linux >= 4.1"
 }
 
+src_prepare() {
+   default
+   sed -i 's/install -s/install/' src/tools/Makefile
+}
+
 src_compile() {
linux-mod_src_compile
emake -C src/tools



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

2016-06-29 Thread Rafael Martins
commit: a6608cf57f47f8e6b5ebb95536ba06f211e952c1
Author: Rafael Martins  gentoo  org>
AuthorDate: Thu Jun 30 00:23:16 2016 +
Commit: Rafael Martins  gentoo  org>
CommitDate: Thu Jun 30 00:23:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6608cf5

app-text/blogc: version bump

Package-Manager: portage-2.2.26

 app-text/blogc/Manifest | 2 +-
 app-text/blogc/{blogc-0.10.1.ebuild => blogc-0.10.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/blogc/Manifest b/app-text/blogc/Manifest
index d5c2ef2..012b89b 100644
--- a/app-text/blogc/Manifest
+++ b/app-text/blogc/Manifest
@@ -1 +1 @@
-DIST blogc-0.10.1.tar.xz 266968 SHA256 
c4645607a02ed665ae9b3b07a15a4f54f8312818a3089aa422a5128a7e08b147 SHA512 
fa4bec7e1b5395806b59da360b7eda735b6d702c878e27e54eeff57cbabf1a2d86f409cec8d620a80bb673de5c4dda694704e21e118a31dbb82aba25d43cfd58
 WHIRLPOOL 
cf6e73482fa25ccd77d48be2980e9d05e1338eb2c47667f9bc5e39a7591cb7ca04a8878d34086be3dbb3e0d69afd24faec6d742b52a5e2c44e9b226a89315047
+DIST blogc-0.10.2.tar.xz 268232 SHA256 
3c3b7659206ebe0c7a4fd9360cf362e7ae2284c4fb7ea8e8aaa889faf4fffd95 SHA512 
12a9e0f4236f14a93a0a8adb98d07a0d48ba66da867baeaa185dfece3a6881b892d2f87d8158d1b1f9cf965cecb234c501e44788674e12a822baf3792a414298
 WHIRLPOOL 
2355283d85c77d89fb2a68e76a5b395d8d4fd5e75620b2ca5262ab77e70e7985b0ed4751adedc29d6a9121a358c3341f56a2ebe2ad413105d519740923f1f35b

diff --git a/app-text/blogc/blogc-0.10.1.ebuild 
b/app-text/blogc/blogc-0.10.2.ebuild
similarity index 100%
rename from app-text/blogc/blogc-0.10.1.ebuild
rename to app-text/blogc/blogc-0.10.2.ebuild



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

2016-06-29 Thread Mike Gilbert
commit: 437d19269d6bde348c65d9c074e61327b8ea415e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Jun 29 23:39:45 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Jun 29 23:39:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=437d1926

www-client/google-chrome-unstable: automated update

Package-Manager: portage-2.3.0_p7

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

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index 7cbeb6f..54aa9d1 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_53.0.2774.3-1_amd64.deb 52326730 SHA256 
211a15f0a0bae4608f889f27276df754ed253dd681209c65b1f1327deb011982 SHA512 
dc38e31def19e7d4087e3dc4bedc2650f4a78691647babce26aaaf8938382a63562ec26eb1952d86dbae0819058840b527375f2b19637890681467a76dee16ff
 WHIRLPOOL 
97a94328e6d2d26bb862a0d338c87ba60b072fa7f29cd929032371dec5ed7151662e51a651ab2fa9d93afcfc53dde7397419b36242a435f2c719433306d131ef
+DIST google-chrome-unstable_53.0.2783.2-1_amd64.deb 52069372 SHA256 
427dde62881b55ce0ac29e896dca8676c5a070972e0d8dc490e0d51b94f5c227 SHA512 
cac65f332cda26c5dab63a1245334d7bef434fb68ac4a882fe101bc413e63558996f2dbed34e61d7c0832fc8eda9f82e16051a7361a4de24be758f92ca384d36
 WHIRLPOOL 
8c221adc67c844d984db29d706c0f4ecb317946fc510d3c8e7719c9431cb52d93bcdeceaf60c5a6606bd4b2a513bbcc5ac10392784707b63fd2bcc0e204b4452

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



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

2016-06-29 Thread Mike Gilbert
commit: 07dc2e3141b2b13c9f961ec7f633902d834ffec1
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Jun 29 23:39:59 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Jun 29 23:39:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07dc2e31

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

Package-Manager: portage-2.3.0_p7

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...74.3_alpha.ebuild => chrome-binary-plugins-53.0.2783.2_alpha.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 64bb2a4..8661a3d 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
 DIST google-chrome-beta_52.0.2743.49-1_amd64.deb 53505548 SHA256 
ef057db9380e3b0332191612d283a3fd8c003095881ecef803f6821ea90da094 SHA512 
c6d4f156121e5c11f202103bc1fc679d2b90943ab0b486ad24dc45e8b5b5a2a75ddd5f02bb90459ca834f3c6710aa347eb214787c3c375fde8a15ed30dada243
 WHIRLPOOL 
98a70424d76d4c72a66b04999fe9ed990e9dfc3538ad12ab87d4f17d44a5ca09ff3d12c15a322bc4414153def098723c9d0ad4a448d370be670fedef05615422
 DIST google-chrome-stable_51.0.2704.106-1_amd64.deb 49288366 SHA256 
af8f1243deed908140bb2f18a3c25f7dd658acef9a1246bb17d82e07dcad6f62 SHA512 
32a024252182575707fad2977ebae0250cb1793cacbdd5477a00a31e9a7311e9f165b16f5b2585eed00c3252318fe169ef47ff054ac3a4184a754959a4f5d021
 WHIRLPOOL 
2829f7b25cbfc3341fd9c04c0d62edda7f432350ecc4bd08c4bd38033681e66079f05dc7d057cbb7266909881d3a08b74297f7b8d6bdb1cd6b6669860960caaa
-DIST google-chrome-unstable_53.0.2774.3-1_amd64.deb 52326730 SHA256 
211a15f0a0bae4608f889f27276df754ed253dd681209c65b1f1327deb011982 SHA512 
dc38e31def19e7d4087e3dc4bedc2650f4a78691647babce26aaaf8938382a63562ec26eb1952d86dbae0819058840b527375f2b19637890681467a76dee16ff
 WHIRLPOOL 
97a94328e6d2d26bb862a0d338c87ba60b072fa7f29cd929032371dec5ed7151662e51a651ab2fa9d93afcfc53dde7397419b36242a435f2c719433306d131ef
+DIST google-chrome-unstable_53.0.2783.2-1_amd64.deb 52069372 SHA256 
427dde62881b55ce0ac29e896dca8676c5a070972e0d8dc490e0d51b94f5c227 SHA512 
cac65f332cda26c5dab63a1245334d7bef434fb68ac4a882fe101bc413e63558996f2dbed34e61d7c0832fc8eda9f82e16051a7361a4de24be758f92ca384d36
 WHIRLPOOL 
8c221adc67c844d984db29d706c0f4ecb317946fc510d3c8e7719c9431cb52d93bcdeceaf60c5a6606bd4b2a513bbcc5ac10392784707b63fd2bcc0e204b4452

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



[gentoo-commits] repo/gentoo:master commit in: games-util/etswitch/files/, games-util/etswitch/

2016-06-29 Thread Austin English
commit: ac8d3049ffe6b50811f6f1874cdee650ec88569e
Author: Austin English  gentoo  org>
AuthorDate: Wed Jun 29 23:13:50 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jun 29 23:17:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac8d3049

games-util/etswitch: remove deprecated games eclass

Also update to EAPI 6

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

Package-Manager: portage-2.2.28

 games-util/etswitch/etswitch-0.1.14-r1.ebuild  | 33 ++
 .../files/etswitch-0.1.14-desktop-entry.patch  |  4 +--
 2 files changed, 35 insertions(+), 2 deletions(-)

diff --git a/games-util/etswitch/etswitch-0.1.14-r1.ebuild 
b/games-util/etswitch/etswitch-0.1.14-r1.ebuild
new file mode 100644
index 000..5889357
--- /dev/null
+++ b/games-util/etswitch/etswitch-0.1.14-r1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="*nix minimizer for a few games"
+HOMEPAGE="http://hem.bredband.net/b400150/;
+SRC_URI="http://hem.bredband.net/b400150/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="x11-libs/libX11
+   x11-libs/libXxf86vm
+   x11-libs/libXmu
+   x11-libs/libXpm"
+DEPEND="${RDEPEND}
+   x11-libs/libXt
+   x11-proto/recordproto
+   x11-proto/xf86vidmodeproto
+   x11-proto/xproto"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-desktop-entry.patch
+   "${FILESDIR}"/${P}-glibc.patch
+)
+
+src_configure() {
+   econf --datadir=/usr/share
+}

diff --git a/games-util/etswitch/files/etswitch-0.1.14-desktop-entry.patch 
b/games-util/etswitch/files/etswitch-0.1.14-desktop-entry.patch
index a7c5080..f3e6b5d 100644
--- a/games-util/etswitch/files/etswitch-0.1.14-desktop-entry.patch
+++ b/games-util/etswitch/files/etswitch-0.1.14-desktop-entry.patch
@@ -1,5 +1,5 @@
 etswitch.desktop.in.orig   2008-02-02 10:54:51.0 -0500
-+++ etswitch.desktop.in2008-02-02 11:17:40.0 -0500
+--- a/etswitch.desktop.in  2008-02-02 10:54:51.0 -0500
 b/etswitch.desktop.in  2008-02-02 11:17:40.0 -0500
 @@ -1,5 +1,4 @@
  [Desktop Entry]
 -Encoding=UTF-8



[gentoo-commits] repo/gentoo:master commit in: games-util/gamepick/

2016-06-29 Thread Austin English
commit: aab599ebe4c129829468303881ca71a29e93d223
Author: Austin English  gentoo  org>
AuthorDate: Wed Jun 29 23:05:30 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jun 29 23:05:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aab599eb

games-util/gamepick: remove depreacted games eclass

Also update to EAPI 6

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

Package-Manager: portage-2.2.28

 games-util/gamepick/gamepick-0.35-r1.ebuild | 32 +
 1 file changed, 32 insertions(+)

diff --git a/games-util/gamepick/gamepick-0.35-r1.ebuild 
b/games-util/gamepick/gamepick-0.35-r1.ebuild
new file mode 100644
index 000..6271a2f
--- /dev/null
+++ b/games-util/gamepick/gamepick-0.35-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="Launch opengl games with custom graphic settings"
+HOMEPAGE="http://www.rillion.net/gamepick/index.html;
+SRC_URI="http://www.rillion.net/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="x11-libs/gtk+:2"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   default
+   sed -i \
+   -e 's/-O2//' \
+   src/Makefile.in || die
+}
+
+src_install() {
+   default
+   newicon ${PN}-48x48.xpm ${PN}.xpm
+   make_desktop_entry ${PN} ${PN}
+}



[gentoo-commits] repo/gentoo:master commit in: games-util/gslist/

2016-06-29 Thread Austin English
commit: 4149932ec6fff6292f0431277d4b0273dd51ebd7
Author: Austin English  gentoo  org>
AuthorDate: Wed Jun 29 22:54:02 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jun 29 22:54:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4149932e

games-util/gslist: remove depreacted games eclass

Also update to EAPI 6

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

Package-Manager: portage-2.2.28

 games-util/gslist/gslist-0.8.11a-r1.ebuild | 38 ++
 1 file changed, 38 insertions(+)

diff --git a/games-util/gslist/gslist-0.8.11a-r1.ebuild 
b/games-util/gslist/gslist-0.8.11a-r1.ebuild
new file mode 100644
index 000..b497ce2
--- /dev/null
+++ b/games-util/gslist/gslist-0.8.11a-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="A GameSpy server browser"
+HOMEPAGE="http://aluigi.altervista.org/papers.htm#gslist;
+SRC_URI="mirror://gentoo/${P}.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE="web"
+
+RDEPEND="dev-libs/geoip"
+DEPEND="${RDEPEND}
+   app-arch/unzip"
+
+S="${WORKDIR}"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-build.patch
+)
+
+src_prepare() {
+   default
+   rm -f gslist gslistsql *.exe *.dll || die
+}
+
+src_compile() {
+   emake SQL=0 $(use web || echo GSWEB=0)
+}
+
+src_install() {
+   dobin ${PN}
+   dodoc ${PN}.txt
+}



[gentoo-commits] repo/gentoo:master commit in: games-util/mcrcon/

2016-06-29 Thread Austin English
commit: ce0efe07e55e9d2f09e0fa1c9f7f7bf5672d7c7d
Author: Austin English  gentoo  org>
AuthorDate: Wed Jun 29 22:37:08 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jun 29 22:54:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce0efe07

games-util/mcrcon: remove depreacted games eclass

Also update to EAPI 6

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

Package-Manager: portage-2.2.28

 games-util/mcrcon/mcrcon-0.0.5-r1.ebuild | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/games-util/mcrcon/mcrcon-0.0.5-r1.ebuild 
b/games-util/mcrcon/mcrcon-0.0.5-r1.ebuild
new file mode 100644
index 000..224180e
--- /dev/null
+++ b/games-util/mcrcon/mcrcon-0.0.5-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Remote connection client for Minecraft servers"
+HOMEPAGE="http://sourceforge.net/projects/mcrcon/;
+SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+S="${WORKDIR}"
+
+src_compile() {
+   # Flags taken from COMPILING.txt.
+   $(tc-getCC) ${CFLAGS} ${LDFLAGS} -std=gnu11 -pedantic -Wall -Wextra -o 
"${PN}" "${PN}.c" || die
+}
+
+src_install() {
+   default
+   dobin "${PN}"
+}



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

2016-06-29 Thread Anthony G. Basile
commit: 43220437dbbfef2f5479e6530fee74989c26daae
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jun 29 22:47:09 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jun 29 22:47:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43220437

sys-kernel/hardened-sources: remove older unstable versions

Package-Manager: portage-2.2.28

 sys-kernel/hardened-sources/Manifest   |  2 -
 .../hardened-sources-4.5.7-r3.ebuild   | 45 --
 .../hardened-sources-4.5.7-r4.ebuild   | 45 --
 3 files changed, 92 deletions(-)

diff --git a/sys-kernel/hardened-sources/Manifest 
b/sys-kernel/hardened-sources/Manifest
index 85e8b49..b14e020 100644
--- a/sys-kernel/hardened-sources/Manifest
+++ b/sys-kernel/hardened-sources/Manifest
@@ -11,8 +11,6 @@ DIST genpatches-4.5-9.base.tar.xz 288788 SHA256 
01e613d8bcf6c168c9b129a574fd447f
 DIST hardened-patches-4.3.3-5.extras.tar.bz2 1649484 SHA256 
2a62a5eb4b98f4fbeb43511a0573d58226277d3112401abec37355d85e01ae23 SHA512 
09b7272af44fb1e29cba857f7c3305d97f8997881f228a2f2eb56dda909ae5402a69336c6fccdf3920f8788a7922f10b0977517f5918d44702e1a9b668c708c7
 WHIRLPOOL 
efc152c7680b84b682f9f6857b8c6b2b66b6d505f76b311a8e3289a606f46d4944d90478ff93e3656f41c367fdbcd65dcf3043842354b26b669b462ce49f3471
 DIST hardened-patches-4.4.2-1.extras.tar.bz2 1721230 SHA256 
81f1417d210e0a6d9f5e180b9f828beb87ddc27571a16c40552d0fa1979982ec SHA512 
599dedbef6fa26efc2a62c19e0536accedff6c60968294e9a7246c9844b26491b4414b1b40106eee9bb7540f8cd4ae74ab3720029b0730ce5541e005ba60cb9b
 WHIRLPOOL 
84e22467a6dcc738043e47274ab2476b69f1796f1f23e3ca4ed8e244dd73a7e4998de683c1d93baccdd41eb232327d4ef1eb07d01b8a790510b8690334032f02
 DIST hardened-patches-4.4.8-2.extras.tar.bz2 1743408 SHA256 
5cde9a96f6a47ebe3c8abeb5d5add60480490fd365d4c31da2d7ac1973a4c258 SHA512 
cfb52ee6aee76b125a5a833cd9facc92ea1dff17129a488b66e976e94699cea8109e6f5df90835e818af1ea6e59e12cecc95159601d544f5b008560a1190b530
 WHIRLPOOL 
56facf79d5556aaac3bf08fa3b4be21b7fef561c8d3fd41943ce51c4d15b71e114be2e33914f5bf7e3d981abcebeffb95fb99aedde8d72231edcef72123ea9fa
-DIST hardened-patches-4.5.7-4.extras.tar.bz2 1868492 SHA256 
e373f0389262ba9544eb2a9ed118dfdf38a468770f3155ef8440e9fc093f5ddb SHA512 
ef06ecfd7dbed21340d6e45f03eda1cab3f349746b13fd114ec356891bc00c90552e4f78b89ff7f8508d491dd91bfb669105562aec07d7b3f2e05b6f671924aa
 WHIRLPOOL 
ce1bd1755bcb974dfddeb8d6f2e985ff052ded6b1fc20fd8b813a97b07fdd5e2324efb3cfd4106a966f9295d5f8dc1bcda13f1f22f916eb8d835f80fd146bbed
-DIST hardened-patches-4.5.7-5.extras.tar.bz2 1871121 SHA256 
81c8669bd479cf753209b8d14a45d8975d335a1d9f26328b5d09ec235bd2cca8 SHA512 
0a3a78b3e30b7449c41bcb7871409269b4818093fcbb08c224d536ac3f917f277df3609383e3c02bbc8dc07b4c65990b5a7150b26937f0ae6433e1ca112f4cfa
 WHIRLPOOL 
6a68a21f860dd0b18fdba0f19ac9948203380e4aeba98befa1173a496e4339567d074a97d7d8382f3c554e3a056fbf52bd38d01a885265dbbb63f300c78d2848
 DIST hardened-patches-4.5.7-6.extras.tar.bz2 1870054 SHA256 
8a8c20dc44a0f452f0d2873e4efcf6dd53010e65976ce9986083f906fd2eb223 SHA512 
b1e853689395305d6d902259a952be21d768a60b46cd9dcbb8bd4ee0193a08806414cdcbd642df286bef92a82e08939c0ec3e5d53fcae999b0628a0d35ec3a2d
 WHIRLPOOL 
73d425f3d2faa6aeeeb3007e468ab3c3792f4d3c95122b0a9572579ef8e27fd253b94efcfd2d85483cc3c0250c73679b68ad10a93cc0e38ba36601a7fe8125ac
 DIST linux-4.3.tar.xz 86920812 SHA256 
4a622cc84b8a3c38d39bc17195b0c064d2b46945dfde0dae18f77b120bc9f3ae SHA512 
d25812043850530fdcfdb48523523ee980747f3c2c1266149330844dae2cba0d056d4ddd9c0f129f570f5d1f6df5c20385aec5f6a2e0755edc1e2f5f93e2c6bc
 WHIRLPOOL 
e3f131443acc14d4f67bbd3f4e1c57af3d822c41c85a112564d54667a591c8619dce42327fd8166d30a2d7adfaf433c2e2134d4995c91c08f65ac0cc2190f935
 DIST linux-4.4.tar.xz 87295988 SHA256 
401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 WHIRLPOOL 
02abc203d867404b9934aaa4c1e5b5dcbb0b0021e91a03f3a7e7fd224eed106821d8b4949f32a590536db150e5a88c16fcde88538777a26d0c17900f0257b1bc

diff --git a/sys-kernel/hardened-sources/hardened-sources-4.5.7-r3.ebuild 
b/sys-kernel/hardened-sources/hardened-sources-4.5.7-r3.ebuild
deleted file mode 100644
index 473948b..000
--- a/sys-kernel/hardened-sources/hardened-sources-4.5.7-r3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-ETYPE="sources"
-K_WANT_GENPATCHES="base"
-K_GENPATCHES_VER="9"
-K_DEBLOB_AVAILABLE="1"
-
-inherit kernel-2
-detect_version
-
-HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-4"
-HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
-SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"
-
-UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2"

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

2016-06-29 Thread Anthony G. Basile
commit: 8675fc4c4bccf7d378b3860113b0a98f7e839299
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jun 29 22:29:30 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jun 29 22:43:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8675fc4c

net-libs/mbedtls: remove older versions

Package-Manager: portage-2.2.28

 net-libs/mbedtls/Manifest |  2 -
 net-libs/mbedtls/mbedtls-2.1.3.ebuild | 94 ---
 net-libs/mbedtls/mbedtls-2.2.0.ebuild | 94 ---
 3 files changed, 190 deletions(-)

diff --git a/net-libs/mbedtls/Manifest b/net-libs/mbedtls/Manifest
index c8ddd5c..81f9043 100644
--- a/net-libs/mbedtls/Manifest
+++ b/net-libs/mbedtls/Manifest
@@ -1,3 +1 @@
-DIST mbedtls-2.1.3.tar.gz 1789846 SHA256 
94da4618d5a518b99f7914a5e348be436e3571113d9a9978d130725a1fc7bfac SHA512 
c9ab514779c20b632d3a4027dd7c0027a916ff8d55f1f8ba80b0ef0d47a1d09f4bab7cb8bbd910d4e130e1f19d043d681572ba86ace9c3a4db60b2b051141a93
 WHIRLPOOL 
0547690b76f44c36da0eecf36bc8ce3ae6cd840ad8029f5711b6dc275b371abb6e2a87346ccb0bc9ce14b2b777b665a88364eecd7ab16a0d321dc8bc91c0c000
-DIST mbedtls-2.2.0.tar.gz 1803014 SHA256 
75494361e412444b38ebb9c908b7e17a5fb582eb9c3fadb2fe9b21e96f1bf8cb SHA512 
cf9ea03792ef6c54e77cd4c2410517b6e124f8ee7132c78c0463fc1cf3a6eff656d8436abfb0c6238bd5484fcefc1ec42598ee6d8128ec88df1d04b053739fd1
 WHIRLPOOL 
7bdfdabf043f0eee8edd0af286640a3ae6bee928ede3f74a32d6bafc921a874a9d2af78aa7f6d637394abe1ea92ef0caca9c42e6808d530007fc6b99ab3ee18a
 DIST mbedtls-2.2.1.tar.gz 1807209 SHA256 
32819c62c20e8740a11b49daa5d09ac6f179edf120a87ac559cd63120b66b699 SHA512 
bc97e7ddf2fcbd1c22927f5c01cfd0706a6f1051f5a62f42e97db49dcd98afbee8878b1dd815da830e3fe1b66b04ada8a0a88baf32833b2c13070c2bd29b62d5
 WHIRLPOOL 
2ae84564a0e35de60539030fac913396acf385e948095c2e9ee2cfe9d814c90a448d596a75cdffbb054a63ffe0a1a87b9161d5d512ec4bc7935e97803c39d139

diff --git a/net-libs/mbedtls/mbedtls-2.1.3.ebuild 
b/net-libs/mbedtls/mbedtls-2.1.3.ebuild
deleted file mode 100644
index ec6bd00..000
--- a/net-libs/mbedtls/mbedtls-2.1.3.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib cmake-utils multilib-minimal
-
-DESCRIPTION="Cryptographic library for embedded systems"
-HOMEPAGE="https://tls.mbed.org/;
-SRC_URI="https://github.com/ARMmbed/mbedtls/archive/mbedtls-${PV}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0/10" # slot for libmbedtls.so
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
-IUSE="cpu_flags_x86_sse2 doc havege libressl programs test threads zlib"
-
-RDEPEND="
-   programs? (
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
-   )
-   zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen media-gfx/graphviz )
-   test? ( dev-lang/perl )"
-
-S=${WORKDIR}/${PN}-${P}
-
-enable_mbedtls_option() {
-   local myopt="$@"
-   # check that config.h syntax is the same at version bump
-   sed -i \
-   -e "s://#define ${myopt}:#define ${myopt}:" \
-   include/mbedtls/config.h || die
-}
-
-src_prepare() {
-   use cpu_flags_x86_sse2 && enable_mbedtls_option MBEDTLS_HAVE_SSE2
-   use zlib && enable_mbedtls_option MBEDTLS_ZLIB_SUPPORT
-   use havege && enable_mbedtls_option MBEDTLS_HAVEGE_C
-   use threads && enable_mbedtls_option MBEDTLS_THREADING_C
-   use threads && enable_mbedtls_option MBEDTLS_THREADING_PTHREAD
-}
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   $(multilib_is_native_abi && cmake-utils_use_enable programs 
PROGRAMS \
-   || echo -DENABLE_PROGRAMS=OFF)
-   $(cmake-utils_use_enable zlib ZLIB_SUPPORT)
-   -DUSE_STATIC_MBEDTLS_LIBRARY=OFF
-   $(cmake-utils_use_enable test TESTING)
-   -DUSE_SHARED_MBEDTLS_LIBRARY=ON
-   -DINSTALL_MBEDTLS_HEADERS=ON
-   -DLIB_INSTALL_DIR="/usr/$(get_libdir)"
-   )
-
-   cmake-utils_src_configure
-}
-
-multilib_src_compile() {
-   cmake-utils_src_compile
-   use doc && multilib_is_native_abi && emake apidoc
-}
-
-multilib_src_test() {
-   LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/library" \
-   cmake-utils_src_test
-}
-
-multilib_src_install() {
-   cmake-utils_src_install
-}
-
-multilib_src_install_all() {
-   einstalldocs
-
-   use doc && dohtml -r apidoc
-
-   if use programs ; then
-   # avoid file collisions with sys-apps/coreutils
-   local p e
-   for p in "${ED%/}"/usr/bin/* ; do
-   if [[ -x "${p}" && ! -d "${p}" ]] ; then
-   mv "${p}" "${ED%/}"/usr/bin/mbedtls_${p##*/} || 
die
-

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

2016-06-29 Thread Anthony G. Basile
commit: 957a3133fa975d047de829e1fd25ca43dd50170a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jun 29 22:43:09 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jun 29 22:43:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=957a3133

net-libs/mbedtls: version bump to 2.3.0

Package-Manager: portage-2.2.28

 net-libs/mbedtls/Manifest |  1 +
 net-libs/mbedtls/mbedtls-2.3.0.ebuild | 94 +++
 2 files changed, 95 insertions(+)

diff --git a/net-libs/mbedtls/Manifest b/net-libs/mbedtls/Manifest
index 81f9043..0c6e48a 100644
--- a/net-libs/mbedtls/Manifest
+++ b/net-libs/mbedtls/Manifest
@@ -1 +1,2 @@
 DIST mbedtls-2.2.1.tar.gz 1807209 SHA256 
32819c62c20e8740a11b49daa5d09ac6f179edf120a87ac559cd63120b66b699 SHA512 
bc97e7ddf2fcbd1c22927f5c01cfd0706a6f1051f5a62f42e97db49dcd98afbee8878b1dd815da830e3fe1b66b04ada8a0a88baf32833b2c13070c2bd29b62d5
 WHIRLPOOL 
2ae84564a0e35de60539030fac913396acf385e948095c2e9ee2cfe9d814c90a448d596a75cdffbb054a63ffe0a1a87b9161d5d512ec4bc7935e97803c39d139
+DIST mbedtls-2.3.0.tar.gz 1834271 SHA256 
1614ee70be99a18ca8298148308fb725aad4ad31c569438bb51655a4999b14f9 SHA512 
f8ddfa791dbefca4005711e55802a65da74e6e161350929faef37f976804f486a1cad7ac6abc30ac2a21ff847c772048564fc91d0ee1d8823bb4b6dbca9af7eb
 WHIRLPOOL 
56244f55340a4414d1189bbd051326ca79d10eec3df2ad425007dd4709401912b5d3faf8c537213a244629c81942fa586685d37afaa920b78e14829e96b0b1b9

diff --git a/net-libs/mbedtls/mbedtls-2.3.0.ebuild 
b/net-libs/mbedtls/mbedtls-2.3.0.ebuild
new file mode 100644
index 000..2714e8f
--- /dev/null
+++ b/net-libs/mbedtls/mbedtls-2.3.0.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils multilib cmake-utils multilib-minimal
+
+DESCRIPTION="Cryptographic library for embedded systems"
+HOMEPAGE="https://tls.mbed.org/;
+SRC_URI="https://github.com/ARMmbed/mbedtls/archive/mbedtls-${PV}.tar.gz;
+
+LICENSE="Apache-2.0"
+SLOT="0/10" # slot for libmbedtls.so
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="cpu_flags_x86_sse2 doc havege libressl programs test threads zlib"
+
+RDEPEND="
+   programs? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen media-gfx/graphviz )
+   test? ( dev-lang/perl )"
+
+S=${WORKDIR}/${PN}-${P}
+
+enable_mbedtls_option() {
+   local myopt="$@"
+   # check that config.h syntax is the same at version bump
+   sed -i \
+   -e "s://#define ${myopt}:#define ${myopt}:" \
+   include/mbedtls/config.h || die
+}
+
+src_prepare() {
+   use cpu_flags_x86_sse2 && enable_mbedtls_option MBEDTLS_HAVE_SSE2
+   use zlib && enable_mbedtls_option MBEDTLS_ZLIB_SUPPORT
+   use havege && enable_mbedtls_option MBEDTLS_HAVEGE_C
+   use threads && enable_mbedtls_option MBEDTLS_THREADING_C
+   use threads && enable_mbedtls_option MBEDTLS_THREADING_PTHREAD
+}
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   $(multilib_is_native_abi && cmake-utils_use_enable programs 
PROGRAMS \
+   || echo -DENABLE_PROGRAMS=OFF)
+   $(cmake-utils_use_enable zlib ZLIB_SUPPORT)
+   -DUSE_STATIC_MBEDTLS_LIBRARY=OFF
+   $(cmake-utils_use_enable test TESTING)
+   -DUSE_SHARED_MBEDTLS_LIBRARY=ON
+   -DINSTALL_MBEDTLS_HEADERS=ON
+   -DLIB_INSTALL_DIR="/usr/$(get_libdir)"
+   )
+
+   cmake-utils_src_configure
+}
+
+multilib_src_compile() {
+   cmake-utils_src_compile
+   use doc && multilib_is_native_abi && emake apidoc
+}
+
+multilib_src_test() {
+   LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/library" \
+   cmake-utils_src_test
+}
+
+multilib_src_install() {
+   cmake-utils_src_install
+}
+
+multilib_src_install_all() {
+   einstalldocs
+
+   use doc && dohtml -r apidoc
+
+   if use programs ; then
+   # avoid file collisions with sys-apps/coreutils
+   local p e
+   for p in "${ED%/}"/usr/bin/* ; do
+   if [[ -x "${p}" && ! -d "${p}" ]] ; then
+   mv "${p}" "${ED%/}"/usr/bin/mbedtls_${p##*/} || 
die
+   fi
+   done
+   for e in aes hash pkey ssl test ; do
+   docinto "${e}"
+   dodoc programs/"${e}"/*.c
+   dodoc programs/"${e}"/*.txt
+   done
+   fi
+}



[gentoo-commits] proj/sci:master commit in: profiles/, profiles/updates/, sys-cluster/openmpi/, sys-cluster/mvapich2/

2016-06-29 Thread Alexey Shvetsov
commit: 7247d94830c155ba462981624fada7be233e66e9
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:58:30 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:33:41 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=7247d948

Adapt sys-inifiband to sys-fabric rename

 profiles/categories |  2 +-
 profiles/updates/2Q-2011| 10 +++
 profiles/updates/3Q-2009| 46 ++---
 sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild |  8 ++---
 sys-cluster/openmpi/openmpi-1.10.0.ebuild   |  6 ++--
 sys-cluster/openmpi/openmpi-1.10.2.ebuild   |  6 ++--
 sys-cluster/openmpi/openmpi-1.6.5.ebuild|  8 ++---
 sys-cluster/openmpi/openmpi-1.7.3.ebuild|  6 ++--
 sys-cluster/openmpi/openmpi-1.8.8.ebuild|  6 ++--
 9 files changed, 49 insertions(+), 49 deletions(-)

diff --git a/profiles/categories b/profiles/categories
index 20ed0d6..c065c73 100644
--- a/profiles/categories
+++ b/profiles/categories
@@ -33,7 +33,7 @@ sci-physics
 sci-visualization
 sys-cluster
 sys-devel
-sys-infiniband
+sys-fabric
 virtual
 x11-libs
 x11-misc

diff --git a/profiles/updates/2Q-2011 b/profiles/updates/2Q-2011
index 383d574..d34c3c3 100644
--- a/profiles/updates/2Q-2011
+++ b/profiles/updates/2Q-2011
@@ -1,5 +1,5 @@
-move sys-infiniband/openib-diags sys-infiniband/infiniband-diags
-move sys-infiniband/openib-osm sys-infiniband/opensm
-move sys-infiniband/openib-perf sys-infiniband/perftest
-move sys-infiniband/openib-srptools sys-infiniband/srptools
-move sys-infiniband/openib-mvapich2 sys-cluster/mvapich2
+move sys-fabric/openib-diags sys-fabric/infiniband-diags
+move sys-fabric/openib-osm sys-fabric/opensm
+move sys-fabric/openib-perf sys-fabric/perftest
+move sys-fabric/openib-srptools sys-fabric/srptools
+move sys-fabric/openib-mvapich2 sys-cluster/mvapich2

diff --git a/profiles/updates/3Q-2009 b/profiles/updates/3Q-2009
index cb9c963..0a51175 100644
--- a/profiles/updates/3Q-2009
+++ b/profiles/updates/3Q-2009
@@ -1,24 +1,24 @@
-move sys-cluster/libibvpp sys-infiniband/libibvpp
-move sys-cluster/openib-userspace sys-infiniband/openib-userspace
-move sys-cluster/openib-files sys-infiniband/openib-files
-move sys-cluster/openib-diags sys-infiniband/openib-diags
-move sys-cluster/openib-osm sys-infiniband/openib-osm
-move sys-cluster/openib-drivers sys-infiniband/openib-drivers
-move sys-cluster/libmthca sys-infiniband/libmthca
-move sys-cluster/libibmad sys-infiniband/libibmad
-move sys-cluster/libibcommon sys-infiniband/libibcommon
-move sys-cluster/openib sys-infiniband/openib
-move sys-cluster/libsdp sys-infiniband/libsdp
-move sys-cluster/libnes sys-infiniband/libnes
-move sys-cluster/libibverbs sys-infiniband/libibverbs
-move sys-cluster/openib-srptools sys-infiniband/openib-srptools
-move sys-cluster/openib-perf sys-infiniband/openib-perf
-move sys-cluster/libmlx4 sys-infiniband/libmlx4
-move sys-cluster/libibcm sys-infiniband/libibcm
-move sys-cluster/libehca sys-infiniband/libehca
-move sys-cluster/librdmacm sys-infiniband/librdmacm
-move sys-cluster/libipathverbs sys-infiniband/libipathverbs
-move sys-cluster/openib-mvapich2 sys-infiniband/openib-mvapich2
-move sys-cluster/libibumad sys-infiniband/libibumad
-move sys-cluster/dapl sys-infiniband/dapl
+move sys-cluster/libibvpp sys-fabric/libibvpp
+move sys-cluster/openib-userspace sys-fabric/openib-userspace
+move sys-cluster/openib-files sys-fabric/openib-files
+move sys-cluster/openib-diags sys-fabric/openib-diags
+move sys-cluster/openib-osm sys-fabric/openib-osm
+move sys-cluster/openib-drivers sys-fabric/openib-drivers
+move sys-cluster/libmthca sys-fabric/libmthca
+move sys-cluster/libibmad sys-fabric/libibmad
+move sys-cluster/libibcommon sys-fabric/libibcommon
+move sys-cluster/openib sys-fabric/openib
+move sys-cluster/libsdp sys-fabric/libsdp
+move sys-cluster/libnes sys-fabric/libnes
+move sys-cluster/libibverbs sys-fabric/libibverbs
+move sys-cluster/openib-srptools sys-fabric/openib-srptools
+move sys-cluster/openib-perf sys-fabric/openib-perf
+move sys-cluster/libmlx4 sys-fabric/libmlx4
+move sys-cluster/libibcm sys-fabric/libibcm
+move sys-cluster/libehca sys-fabric/libehca
+move sys-cluster/librdmacm sys-fabric/librdmacm
+move sys-cluster/libipathverbs sys-fabric/libipathverbs
+move sys-cluster/openib-mvapich2 sys-fabric/openib-mvapich2
+move sys-cluster/libibumad sys-fabric/libibumad
+move sys-cluster/dapl sys-fabric/dapl
 move sci-chemistry/votca-csg-apps sci-chemistry/votca-csgapps

diff --git a/sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild 
b/sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild
index ec26f4e..f24d70c 100644
--- a/sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild
+++ b/sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild
@@ -16,10 +16,10 @@ KEYWORDS="~x86 ~amd64"
 IUSE="debug fortran large-cluster medium-cluster romio threads"
 
 RDEPEND="
-   sys-infiniband/libibverbs:=
-   sys-infiniband/libibumad:=
-   

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

2016-06-29 Thread Alexey Shvetsov
commit: 17e488689c9c5632208252fae18756e225aa6fd2
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:25:47 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17e48868

app-emulation/qemu: adapt sys-infiniband to sys-fabric rename

Package-Manager: portage-2.3.0_rc1

 app-emulation/qemu/qemu-2.5.0-r2.ebuild | 2 +-
 app-emulation/qemu/qemu-2.5.0-r3.ebuild | 2 +-
 app-emulation/qemu/qemu-2.5.1.ebuild| 2 +-
 app-emulation/qemu/qemu-2.6.0.ebuild| 2 +-
 app-emulation/qemu/qemu-.ebuild | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-emulation/qemu/qemu-2.5.0-r2.ebuild 
b/app-emulation/qemu/qemu-2.5.0-r2.ebuild
index 340575f..222d558 100644
--- a/app-emulation/qemu/qemu-2.5.0-r2.ebuild
+++ b/app-emulation/qemu/qemu-2.5.0-r2.ebuild
@@ -97,7 +97,7 @@ SOFTMMU_LIB_DEPEND="${COMMON_LIB_DEPEND}
vte? ( x11-libs/vte:2.90 )
)
)
-   infiniband? ( sys-infiniband/librdmacm:=[static-libs(+)] )
+   infiniband? ( sys-fabric/librdmacm:=[static-libs(+)] )
iscsi? ( net-libs/libiscsi )
jpeg? ( virtual/jpeg:0=[static-libs(+)] )
lzo? ( dev-libs/lzo:2[static-libs(+)] )

diff --git a/app-emulation/qemu/qemu-2.5.0-r3.ebuild 
b/app-emulation/qemu/qemu-2.5.0-r3.ebuild
index 8e1bc0b..fc2fb0b 100644
--- a/app-emulation/qemu/qemu-2.5.0-r3.ebuild
+++ b/app-emulation/qemu/qemu-2.5.0-r3.ebuild
@@ -97,7 +97,7 @@ SOFTMMU_LIB_DEPEND="${COMMON_LIB_DEPEND}
vte? ( x11-libs/vte:2.90 )
)
)
-   infiniband? ( sys-infiniband/librdmacm:=[static-libs(+)] )
+   infiniband? ( sys-fabric/librdmacm:=[static-libs(+)] )
iscsi? ( net-libs/libiscsi )
jpeg? ( virtual/jpeg:0=[static-libs(+)] )
lzo? ( dev-libs/lzo:2[static-libs(+)] )

diff --git a/app-emulation/qemu/qemu-2.5.1.ebuild 
b/app-emulation/qemu/qemu-2.5.1.ebuild
index ffe4876..cb4fa6e 100644
--- a/app-emulation/qemu/qemu-2.5.1.ebuild
+++ b/app-emulation/qemu/qemu-2.5.1.ebuild
@@ -97,7 +97,7 @@ SOFTMMU_LIB_DEPEND="${COMMON_LIB_DEPEND}
vte? ( x11-libs/vte:2.90 )
)
)
-   infiniband? ( sys-infiniband/librdmacm:=[static-libs(+)] )
+   infiniband? ( sys-fabric/librdmacm:=[static-libs(+)] )
iscsi? ( net-libs/libiscsi )
jpeg? ( virtual/jpeg:0=[static-libs(+)] )
lzo? ( dev-libs/lzo:2[static-libs(+)] )

diff --git a/app-emulation/qemu/qemu-2.6.0.ebuild 
b/app-emulation/qemu/qemu-2.6.0.ebuild
index 95a953e..c39088d 100644
--- a/app-emulation/qemu/qemu-2.6.0.ebuild
+++ b/app-emulation/qemu/qemu-2.6.0.ebuild
@@ -92,7 +92,7 @@ SOFTMMU_LIB_DEPEND="${COMMON_LIB_DEPEND}
vte? ( x11-libs/vte:2.90 )
)
)
-   infiniband? ( sys-infiniband/librdmacm:=[static-libs(+)] )
+   infiniband? ( sys-fabric/librdmacm:=[static-libs(+)] )
iscsi? ( net-libs/libiscsi )
jpeg? ( virtual/jpeg:0=[static-libs(+)] )
lzo? ( dev-libs/lzo:2[static-libs(+)] )

diff --git a/app-emulation/qemu/qemu-.ebuild 
b/app-emulation/qemu/qemu-.ebuild
index a4cf941..9e43b14 100644
--- a/app-emulation/qemu/qemu-.ebuild
+++ b/app-emulation/qemu/qemu-.ebuild
@@ -92,7 +92,7 @@ SOFTMMU_LIB_DEPEND="${COMMON_LIB_DEPEND}
vte? ( x11-libs/vte:2.90 )
)
)
-   infiniband? ( sys-infiniband/librdmacm:=[static-libs(+)] )
+   infiniband? ( sys-fabric/librdmacm:=[static-libs(+)] )
iscsi? ( net-libs/libiscsi )
jpeg? ( virtual/jpeg:0=[static-libs(+)] )
lzo? ( dev-libs/lzo:2[static-libs(+)] )



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

2016-06-29 Thread Alexey Shvetsov
commit: 9d6a5b9dceb93680831e709370ec9e3819631681
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:34:06 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d6a5b9d

sys-cluster/mvapich2: adapt sys-infiniband to sys-fabric rename

Package-Manager: portage-2.3.0_rc1

 sys-cluster/mvapich2/mvapich2-1.6.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-cluster/mvapich2/mvapich2-1.6.ebuild 
b/sys-cluster/mvapich2/mvapich2-1.6.ebuild
index e3d30ee..54b394c 100644
--- a/sys-cluster/mvapich2/mvapich2-1.6.ebuild
+++ b/sys-cluster/mvapich2/mvapich2-1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -18,11 +18,11 @@ IUSE="debug fortran large-cluster medium-cluster romio 
threads"
 RDEPEND="
|| (
(
-   sys-infiniband/libibverbs
-   sys-infiniband/libibumad
-   sys-infiniband/libibmad
-   sys-infiniband/librdmacm )
-   sys-infiniband/openib-userspace )"
+   sys-fabric/libibverbs
+   sys-fabric/libibumad
+   sys-fabric/libibmad
+   sys-fabric/librdmacm )
+   sys-fabric/openib-userspace )"
 DEPEND="${RDEPEND}"
 
 S="${WORKDIR}/mvapich2-${PV/_/-}"



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

2016-06-29 Thread Alexey Shvetsov
commit: 7af91de924816eaca01dca06f2923c9e11586c16
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:28:15 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af91de9

sys-block/fio: adapt sys-infiniband to sys-fabric rename

Package-Manager: portage-2.3.0_rc1

 sys-block/fio/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/fio/metadata.xml b/sys-block/fio/metadata.xml
index d5455f8..008fec0 100644
--- a/sys-block/fio/metadata.xml
+++ b/sys-block/fio/metadata.xml
@@ -13,6 +13,6 @@
Install tools for generating 
gnuplots
Enable numa support
Enable Rados block device support via 
sys-cluster/ceph
-   Enable infiniband support via 
sys-infiniband/librdmacm
+   Enable infiniband support via 
sys-fabric/librdmacm

 



[gentoo-commits] repo/gentoo:master commit in: profiles/, profiles/updates/, profiles/arch/amd64-fbsd/todo/, profiles/base/

2016-06-29 Thread Alexey Shvetsov
commit: 77ff24ded5f7247797e8d7ddc5405bc9301d94e8
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:40:38 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:32:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77ff24de

Adapt sys-infiniband to sys-fabric move

 profiles/arch/amd64-fbsd/todo/package.use.mask |  8 
 profiles/base/package.use.mask |  2 +-
 profiles/categories|  2 +-
 profiles/updates/2Q-2012   |  2 +-
 profiles/updates/2Q-2016   | 28 ++
 5 files changed, 35 insertions(+), 7 deletions(-)

diff --git a/profiles/arch/amd64-fbsd/todo/package.use.mask 
b/profiles/arch/amd64-fbsd/todo/package.use.mask
index 6a86521..b8dd5c3 100644
--- a/profiles/arch/amd64-fbsd/todo/package.use.mask
+++ b/profiles/arch/amd64-fbsd/todo/package.use.mask
@@ -172,16 +172,16 @@ media-video/vlc fluidsynth
 # sys-cluster/knem
 sys-cluster/openmpi openmpi_fabrics_knem
 
-# sys-infiniband/dapl
+# sys-fabric/dapl
 sys-cluster/openmpi openmpi_fabrics_dapl
 
-# sys-infiniband/ofed
+# sys-fabric/ofed
 sys-cluster/openmpi openmpi_fabrics_ofed
 
-# sys-infiniband/infinipath-psm
+# sys-fabric/infinipath-psm
 sys-cluster/openmpi openmpi_fabrics_psm
 
-# sys-infiniband/librdmacm
+# sys-fabric/librdmacm
 sys-cluster/openmpi openmpi_ofed_features_rdmacm
 
 # sys-cluster/open-mx

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 22e3fd8..ef5c430 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -415,7 +415,7 @@ media-video/rtmpdump polarssl
 
 # Alexey Shvetsov  (16 Apr 2014)
 # libehca only works on ppc*
-sys-infiniband/ofed ofed_drivers_ehca
+sys-fabric/ofed ofed_drivers_ehca
 
 # Andreas K. Huettel  (12 Apr 2014)
 # Upstream regularly forgets to update the bindings after changes in API,

diff --git a/profiles/categories b/profiles/categories
index 44414d4..92d6c18 100644
--- a/profiles/categories
+++ b/profiles/categories
@@ -138,7 +138,7 @@ sys-devel
 sys-firmware
 sys-freebsd
 sys-fs
-sys-infiniband
+sys-fabric
 sys-kernel
 sys-libs
 sys-power

diff --git a/profiles/updates/2Q-2012 b/profiles/updates/2Q-2012
index 20d4b9d..48b428d 100644
--- a/profiles/updates/2Q-2012
+++ b/profiles/updates/2Q-2012
@@ -3,7 +3,7 @@ move dev-lisp/cl-asdf dev-lisp/asdf
 move dev-lisp/cl-asdf-binary-locations dev-lisp/asdf-binary-locations
 slotmove media-libs/libharu 2 0
 move sys-fs/bleachbit sys-apps/bleachbit
-move sys-infiniband/openib sys-infiniband/ofed
+move sys-fabric/openib sys-fabric/ofed
 move app-text/djview4 app-text/djview
 move app-text/focuswriter app-editors/focuswriter
 move app-mobilephone/jacksms-desktop app-mobilephone/freesmee

diff --git a/profiles/updates/2Q-2016 b/profiles/updates/2Q-2016
index d63bb7e..51f9d9d 100644
--- a/profiles/updates/2Q-2016
+++ b/profiles/updates/2Q-2016
@@ -34,3 +34,31 @@ slotmove >=dev-php/pecl-apcu-5.0 0 7
 move sys-apps/microcode-data sys-firmware/intel-microcode
 slotmove >=dev-php/pecl-rrd-2.0 0 7
 slotmove >=dev-php/pecl-oauth-2.0 0 7
+move sys-infiniband/compat-dapl sys-fabric/compat-dapl
+move sys-infiniband/dapl sys-fabric/dapl
+move sys-infiniband/ibacm sys-fabric/ibacm
+move sys-infiniband/ibutils sys-fabric/ibutils
+move sys-infiniband/infiniband-diags sys-fabric/infiniband-diags
+move sys-infiniband/infinipath-psm sys-fabric/infinipath-psm
+move sys-infiniband/libcxgb3 sys-fabric/libcxgb3
+move sys-infiniband/libcxgb4 sys-fabric/libcxgb4
+move sys-infiniband/libehca sys-fabric/libehca
+move sys-infiniband/libibcm sys-fabric/libibcm
+move sys-infiniband/libibmad sys-fabric/libibmad
+move sys-infiniband/libibumad sys-fabric/libibumad
+move sys-infiniband/libibverbs sys-fabric/libibverbs
+move sys-infiniband/libibvpp sys-fabric/libibvpp
+move sys-infiniband/libipathverbs sys-fabric/libipathverbs
+move sys-infiniband/libmlx4 sys-fabric/libmlx4
+move sys-infiniband/libmlx5 sys-fabric/libmlx5
+move sys-infiniband/libmthca sys-fabric/libmthca
+move sys-infiniband/libnes sys-fabric/libnes
+move sys-infiniband/libocrdma sys-fabric/libocrdma
+move sys-infiniband/librdmacm sys-fabric/librdmacm
+move sys-infiniband/mstflint sys-fabric/mstflint
+move sys-infiniband/ofed sys-fabric/ofed
+move sys-infiniband/opensm sys-fabric/opensm
+move sys-infiniband/perftest sys-fabric/perftest
+move sys-infiniband/qperf sys-fabric/qperf
+move sys-infiniband/rds-tools sys-fabric/rds-tools
+move sys-infiniband/srptools sys-fabric/srptools



[gentoo-commits] repo/gentoo:master commit in: sys-fabric/libcxgb3/, sys-fabric/libcxgb4/, sys-fabric/libnes/, ...

2016-06-29 Thread Alexey Shvetsov
commit: 2174b99106b4796b65aab64e4035ca17bf78c4dc
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:51:15 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:32:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2174b991

sys-fabric: drop old ofed-3.5

Package-Manager: portage-2.3.0_rc1

 sys-fabric/compat-dapl/Manifest|   1 -
 .../compat-dapl/compat-dapl-1.2.19-r1.ebuild   |  23 ---
 sys-fabric/compat-dapl/metadata.xml|  15 --
 sys-fabric/dapl/Manifest   |   1 -
 sys-fabric/dapl/dapl-2.0.36.ebuild |  23 ---
 sys-fabric/ibacm/Manifest  |   1 -
 sys-fabric/ibacm/ibacm-1.0.7.ebuild|  20 ---
 sys-fabric/ibutils/Manifest|   1 -
 sys-fabric/ibutils/ibutils-1.5.7-r2.ebuild |  24 
 sys-fabric/infiniband-diags/Manifest   |   1 -
 .../infiniband-diags/infiniband-diags-1.6.1.ebuild |  23 ---
 sys-fabric/infinipath-psm/Manifest |   1 -
 .../infinipath-psm/infinipath-psm-3.0.1.ebuild |  37 -
 sys-fabric/libcxgb3/Manifest   |   1 -
 sys-fabric/libcxgb3/libcxgb3-1.3.1-r1.ebuild   |  20 ---
 sys-fabric/libcxgb4/Manifest   |   1 -
 sys-fabric/libcxgb4/libcxgb4-1.2.0-r1.ebuild   |  20 ---
 sys-fabric/libehca/Manifest|   1 -
 sys-fabric/libehca/libehca-1.2.2-r2.ebuild |  21 ---
 sys-fabric/libibcm/Manifest|   1 -
 sys-fabric/libibcm/libibcm-1.0.5-r2.ebuild |  20 ---
 sys-fabric/libibmad/Manifest   |   1 -
 sys-fabric/libibmad/libibmad-1.3.9.ebuild  |  22 ---
 sys-fabric/libibumad/Manifest  |   1 -
 sys-fabric/libibumad/libibumad-1.3.8.ebuild|  22 ---
 sys-fabric/libibverbs/Manifest |   1 -
 sys-fabric/libibverbs/libibverbs-1.1.6.ebuild  |  21 ---
 sys-fabric/libipathverbs/Manifest  |   1 -
 .../libipathverbs/libipathverbs-1.2-r2.ebuild  |  20 ---
 sys-fabric/libmlx4/Manifest|   1 -
 sys-fabric/libmlx4/libmlx4-1.0.4.ebuild|  23 ---
 sys-fabric/libmthca/Manifest   |   1 -
 sys-fabric/libmthca/libmthca-1.0.5-r4.ebuild   |  22 ---
 sys-fabric/libnes/Manifest |   1 -
 sys-fabric/libnes/libnes-1.1.3-r1.ebuild   |  30 
 sys-fabric/librdmacm/Manifest  |   1 -
 sys-fabric/librdmacm/librdmacm-1.0.16.ebuild   |  21 ---
 sys-fabric/mstflint/Manifest   |   1 -
 sys-fabric/mstflint/mstflint-1.4-r1.ebuild |  21 ---
 sys-fabric/ofed/Manifest   |   1 -
 sys-fabric/ofed/ofed-3.5.ebuild| 158 -
 sys-fabric/opensm/Manifest |   1 -
 sys-fabric/opensm/opensm-3.3.15.ebuild |  46 --
 sys-fabric/perftest/Manifest   |   1 -
 sys-fabric/perftest/perftest-1.4.0.ebuild  |  30 
 sys-fabric/rds-tools/Manifest  |   1 -
 sys-fabric/rds-tools/rds-tools-2.0.4-r2.ebuild |  29 
 sys-fabric/srptools/Manifest   |   1 -
 sys-fabric/srptools/srptools-0.0.4-r2.ebuild   |  30 
 49 files changed, 765 deletions(-)

diff --git a/sys-fabric/compat-dapl/Manifest b/sys-fabric/compat-dapl/Manifest
deleted file mode 100644
index 7afa5aa..000
--- a/sys-fabric/compat-dapl/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST OFED-3.5-rc2.tgz 18600237 SHA256 
b267cea49bf72790843e6b08e26c10a6954d7736a8b93deed1e632772f4f5fff SHA512 
deb83c3417ac60bd5d4c6ac1cadf93d6a34a55ca58365b54bb0c3a8230ba6a7f13e0257515dac0170cc4ab46b558519c86e6c01f7fa49550162feed0b0ea2e89
 WHIRLPOOL 
e6843593fbe4937ffcf600be9cb3dee78e14cbeb4c411a4b64076b1194653cbcb9d4bc6cbd52ad77ac9c6b14d4dd2cdafa4364bfe6924b55896844042aa4d9cd

diff --git a/sys-fabric/compat-dapl/compat-dapl-1.2.19-r1.ebuild 
b/sys-fabric/compat-dapl/compat-dapl-1.2.19-r1.ebuild
deleted file mode 100644
index 3263867..000
--- a/sys-fabric/compat-dapl/compat-dapl-1.2.19-r1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-OFED_VER="3.5"
-OFED_RC="1"
-OFED_RC_VER="2"
-OFED_SUFFIX="1"
-
-inherit openib
-
-DESCRIPTION="OpenIB - Direct Access Provider Library v1.2"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
-IUSE=""
-
-DEPEND="sys-fabric/libibverbs:${SLOT}
-   sys-fabric/librdmacm:${SLOT}"
-RDEPEND="${DEPEND}
-   !sys-fabric/openib-userspace"
-
-block_other_ofed_versions

diff --git a/sys-fabric/compat-dapl/metadata.xml 
b/sys-fabric/compat-dapl/metadata.xml
deleted file mode 100644
index 0dcc685..000
--- a/sys-fabric/compat-dapl/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-

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

2016-06-29 Thread Alexey Shvetsov
commit: 414011e6a5b489c0760232100166a671ff6cdbec
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:29:28 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=414011e6

sys-block/open-iscsi: adapt sys-infiniband to sys-fabric rename

Package-Manager: portage-2.3.0_rc1

 sys-block/open-iscsi/open-iscsi-2.0.873-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/open-iscsi/open-iscsi-2.0.873-r2.ebuild 
b/sys-block/open-iscsi/open-iscsi-2.0.873-r2.ebuild
index 8166a27..3cc19c5 100644
--- a/sys-block/open-iscsi/open-iscsi-2.0.873-r2.ebuild
+++ b/sys-block/open-iscsi/open-iscsi-2.0.873-r2.ebuild
@@ -17,7 +17,7 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="debug slp +tcp infiniband rdma"
 
-DEPEND="slp? ( net-libs/openslp ) infiniband? ( sys-infiniband/ofed )"
+DEPEND="slp? ( net-libs/openslp ) infiniband? ( sys-fabric/ofed )"
 RDEPEND="${DEPEND}
sys-fs/lsscsi
sys-apps/util-linux"



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

2016-06-29 Thread Alexey Shvetsov
commit: bc337dfdbfb9ca9844c2923caed2c3e04e405be1
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:30:28 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc337dfd

sys-block/tgt: adapt sys-infiniband to sys-fabric rename

Package-Manager: portage-2.3.0_rc1

 sys-block/tgt/tgt-1.0.60.ebuild | 6 +++---
 sys-block/tgt/tgt-1.0.63.ebuild | 4 ++--
 sys-block/tgt/tgt-1.0.64.ebuild | 4 ++--
 sys-block/tgt/tgt-1.0.65.ebuild | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/sys-block/tgt/tgt-1.0.60.ebuild b/sys-block/tgt/tgt-1.0.60.ebuild
index c8a171c..7099976 100644
--- a/sys-block/tgt/tgt-1.0.60.ebuild
+++ b/sys-block/tgt/tgt-1.0.60.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -21,8 +21,8 @@ CDEPEND="dev-perl/Config-General
dev-libs/libxslt
rbd? ( sys-cluster/ceph )
infiniband? (
-   sys-infiniband/libibverbs:=
-   sys-infiniband/librdmacm:=
+   sys-fabric/libibverbs:=
+   sys-fabric/librdmacm:=
)"
 DEPEND="${CDEPEND}
app-text/docbook-xsl-stylesheets"

diff --git a/sys-block/tgt/tgt-1.0.63.ebuild b/sys-block/tgt/tgt-1.0.63.ebuild
index 74e549b..87cb4ef 100644
--- a/sys-block/tgt/tgt-1.0.63.ebuild
+++ b/sys-block/tgt/tgt-1.0.63.ebuild
@@ -21,8 +21,8 @@ CDEPEND="dev-perl/Config-General
dev-libs/libxslt
rbd? ( sys-cluster/ceph )
infiniband? (
-   sys-infiniband/libibverbs:=
-   sys-infiniband/librdmacm:=
+   sys-fabric/libibverbs:=
+   sys-fabric/librdmacm:=
)"
 DEPEND="${CDEPEND}
app-text/docbook-xsl-stylesheets"

diff --git a/sys-block/tgt/tgt-1.0.64.ebuild b/sys-block/tgt/tgt-1.0.64.ebuild
index b866939..88a35c4 100644
--- a/sys-block/tgt/tgt-1.0.64.ebuild
+++ b/sys-block/tgt/tgt-1.0.64.ebuild
@@ -21,8 +21,8 @@ CDEPEND="dev-perl/Config-General
dev-libs/libxslt
rbd? ( sys-cluster/ceph )
infiniband? (
-   sys-infiniband/libibverbs:=
-   sys-infiniband/librdmacm:=
+   sys-fabric/libibverbs:=
+   sys-fabric/librdmacm:=
)"
 DEPEND="${CDEPEND}
app-text/docbook-xsl-stylesheets"

diff --git a/sys-block/tgt/tgt-1.0.65.ebuild b/sys-block/tgt/tgt-1.0.65.ebuild
index 38574ab..0f142aa 100644
--- a/sys-block/tgt/tgt-1.0.65.ebuild
+++ b/sys-block/tgt/tgt-1.0.65.ebuild
@@ -21,8 +21,8 @@ CDEPEND="dev-perl/Config-General
dev-libs/libxslt
rbd? ( sys-cluster/ceph )
infiniband? (
-   sys-infiniband/libibverbs:=
-   sys-infiniband/librdmacm:=
+   sys-fabric/libibverbs:=
+   sys-fabric/librdmacm:=
)"
 DEPEND="${CDEPEND}
app-text/docbook-xsl-stylesheets"



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

2016-06-29 Thread Alexey Shvetsov
commit: 6d9b3f45fa4825d4c53670097371c65d7f85d513
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:35:05 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d9b3f45

sys-cluster/openmpi: adapt sys-infiniband to sys-fabric rename

Package-Manager: portage-2.3.0_rc1

 sys-cluster/openmpi/openmpi-1.10.0.ebuild   |  8 
 sys-cluster/openmpi/openmpi-1.10.2.ebuild   |  6 +++---
 sys-cluster/openmpi/openmpi-1.6.5-r1.ebuild | 10 +-
 sys-cluster/openmpi/openmpi-1.7.5-r1.ebuild |  8 
 sys-cluster/openmpi/openmpi-1.8.4-r4.ebuild |  8 
 sys-cluster/openmpi/openmpi-1.8.7-r1.ebuild |  8 
 sys-cluster/openmpi/openmpi-1.8.8.ebuild|  8 
 7 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/sys-cluster/openmpi/openmpi-1.10.0.ebuild 
b/sys-cluster/openmpi/openmpi-1.10.0.ebuild
index 54f21ea..b7778f8 100644
--- a/sys-cluster/openmpi/openmpi-1.10.0.ebuild
+++ b/sys-cluster/openmpi/openmpi-1.10.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -63,12 +63,12 @@ CDEPEND="
sys-libs/zlib
cuda? ( dev-util/nvidia-cuda-toolkit )
elibc_FreeBSD? ( dev-libs/libexecinfo )
-   openmpi_fabrics_ofed? ( sys-infiniband/ofed:* )
+   openmpi_fabrics_ofed? ( sys-fabric/ofed:* )
openmpi_fabrics_knem? ( sys-cluster/knem )
-   openmpi_fabrics_psm? ( sys-infiniband/infinipath-psm:* )
+   openmpi_fabrics_psm? ( sys-fabric/infinipath-psm:* )
openmpi_rm_pbs? ( sys-cluster/torque )
openmpi_rm_slurm? ( sys-cluster/slurm )
-   openmpi_ofed_features_rdmacm? ( sys-infiniband/librdmacm:* )"
+   openmpi_ofed_features_rdmacm? ( sys-fabric/librdmacm:* )"
 
 RDEPEND="${CDEPEND}
java? ( >=virtual/jre-1.6 )"

diff --git a/sys-cluster/openmpi/openmpi-1.10.2.ebuild 
b/sys-cluster/openmpi/openmpi-1.10.2.ebuild
index 0eb5c00..b7778f8 100644
--- a/sys-cluster/openmpi/openmpi-1.10.2.ebuild
+++ b/sys-cluster/openmpi/openmpi-1.10.2.ebuild
@@ -63,12 +63,12 @@ CDEPEND="
sys-libs/zlib
cuda? ( dev-util/nvidia-cuda-toolkit )
elibc_FreeBSD? ( dev-libs/libexecinfo )
-   openmpi_fabrics_ofed? ( sys-infiniband/ofed:* )
+   openmpi_fabrics_ofed? ( sys-fabric/ofed:* )
openmpi_fabrics_knem? ( sys-cluster/knem )
-   openmpi_fabrics_psm? ( sys-infiniband/infinipath-psm:* )
+   openmpi_fabrics_psm? ( sys-fabric/infinipath-psm:* )
openmpi_rm_pbs? ( sys-cluster/torque )
openmpi_rm_slurm? ( sys-cluster/slurm )
-   openmpi_ofed_features_rdmacm? ( sys-infiniband/librdmacm:* )"
+   openmpi_ofed_features_rdmacm? ( sys-fabric/librdmacm:* )"
 
 RDEPEND="${CDEPEND}
java? ( >=virtual/jre-1.6 )"

diff --git a/sys-cluster/openmpi/openmpi-1.6.5-r1.ebuild 
b/sys-cluster/openmpi/openmpi-1.6.5-r1.ebuild
index 6c8f5a3..8ce3a96 100644
--- a/sys-cluster/openmpi/openmpi-1.6.5-r1.ebuild
+++ b/sys-cluster/openmpi/openmpi-1.6.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -56,15 +56,15 @@ RDEPEND="
>=sys-apps/hwloc-1.3
dev-libs/libltdl:0
elibc_FreeBSD? ( dev-libs/libexecinfo )
-   openmpi_fabrics_dapl? ( sys-infiniband/dapl )
-   openmpi_fabrics_ofed? ( sys-infiniband/ofed )
+   openmpi_fabrics_dapl? ( sys-fabric/dapl )
+   openmpi_fabrics_ofed? ( sys-fabric/ofed )
openmpi_fabrics_knem? ( sys-cluster/knem )
openmpi_fabrics_open-mx? ( sys-cluster/open-mx )
-   openmpi_fabrics_psm? ( sys-infiniband/infinipath-psm )
+   openmpi_fabrics_psm? ( sys-fabric/infinipath-psm )
openmpi_fabrics_sctp? ( net-misc/lksctp-tools )
openmpi_rm_pbs? ( sys-cluster/torque )
openmpi_rm_slurm? ( sys-cluster/slurm )
-   openmpi_ofed_features_rdmacm? ( sys-infiniband/librdmacm )
+   openmpi_ofed_features_rdmacm? ( sys-fabric/librdmacm )
vt? (
!dev-libs/libotf
!app-text/lcdf-typetools

diff --git a/sys-cluster/openmpi/openmpi-1.7.5-r1.ebuild 
b/sys-cluster/openmpi/openmpi-1.7.5-r1.ebuild
index b2ca7fc..6f39669 100644
--- a/sys-cluster/openmpi/openmpi-1.7.5-r1.ebuild
+++ b/sys-cluster/openmpi/openmpi-1.7.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -61,13 +61,13 @@ RDEPEND="
>=sys-apps/hwloc-1.7.2
cuda? ( dev-util/nvidia-cuda-toolkit )
elibc_FreeBSD? ( dev-libs/libexecinfo )
-   openmpi_fabrics_ofed? ( sys-infiniband/ofed )
+   openmpi_fabrics_ofed? ( sys-fabric/ofed )
openmpi_fabrics_knem? ( 

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

2016-06-29 Thread Alexey Shvetsov
commit: 06c66057cd0c3f7188f2bbffd8de29efd9b8ad87
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:26:51 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06c66057

app-misc/dateutils: adapt sys-infiniband to sys-fabric rename

Package-Manager: portage-2.3.0_rc1

 app-misc/dateutils/dateutils-0.3.5.ebuild | 2 +-
 app-misc/dateutils/dateutils-0.4.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/dateutils/dateutils-0.3.5.ebuild 
b/app-misc/dateutils/dateutils-0.3.5.ebuild
index 09742ac..d558b08 100644
--- a/app-misc/dateutils/dateutils-0.3.5.ebuild
+++ b/app-misc/dateutils/dateutils-0.3.5.ebuild
@@ -16,7 +16,7 @@ DEPEND="app-arch/xz-utils
sys-libs/timezone-data"
 
 # bug 429810
-RDEPEND="!sys-infiniband/dapl"
+RDEPEND="!sys-fabric/dapl"
 
 src_configure() {
econf \

diff --git a/app-misc/dateutils/dateutils-0.4.0.ebuild 
b/app-misc/dateutils/dateutils-0.4.0.ebuild
index 3601f12..aea3569 100644
--- a/app-misc/dateutils/dateutils-0.4.0.ebuild
+++ b/app-misc/dateutils/dateutils-0.4.0.ebuild
@@ -16,7 +16,7 @@ DEPEND="app-arch/xz-utils
sys-libs/timezone-data"
 
 # bug 429810
-RDEPEND="!sys-infiniband/dapl"
+RDEPEND="!sys-fabric/dapl"
 
 src_configure() {
econf \



[gentoo-commits] repo/gentoo:master commit in: sys-infiniband/perftest/, sys-infiniband/compat-dapl/, sys-infiniband/librdmacm/, ...

2016-06-29 Thread Alexey Shvetsov
commit: 78687b7871a6d19ba23ac5da91c72d9732061bc1
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:17:07 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78687b78

eclass/openib.eclass: Clean up ancient versions

Also move to sys-fabric category

 eclass/openib.eclass   | 14 ++
 .../compat-dapl/Manifest   |  0
 .../compat-dapl/compat-dapl-1.2.19-r1.ebuild   |  8 ++--
 .../compat-dapl/metadata.xml   |  0
 {sys-infiniband => sys-fabric}/dapl/Manifest   |  0
 .../dapl/dapl-2.0.36.ebuild|  8 ++--
 .../dapl/dapl-2.0.40.ebuild|  8 ++--
 {sys-infiniband => sys-fabric}/dapl/metadata.xml   |  0
 {sys-infiniband => sys-fabric}/ibacm/Manifest  |  0
 .../ibacm/ibacm-1.0.7.ebuild   |  4 +-
 .../ibacm/ibacm-1.0.8.ebuild   |  6 +--
 {sys-infiniband => sys-fabric}/ibacm/metadata.xml  |  0
 {sys-infiniband => sys-fabric}/ibutils/Manifest|  0
 .../ibutils/ibutils-1.5.7-r2.ebuild|  6 +--
 .../ibutils/ibutils-1.5.7-r3.ebuild|  6 +--
 .../ibutils/metadata.xml   |  0
 .../infiniband-diags/Manifest  |  0
 .../infiniband-diags/infiniband-diags-1.6.1.ebuild |  8 ++--
 .../infiniband-diags/infiniband-diags-1.6.4.ebuild |  8 ++--
 .../infiniband-diags/metadata.xml  |  0
 .../infinipath-psm/Manifest|  0
 .../infinipath-psm/files/42-infinipath-psm.rules   |  0
 .../files/infinipath-psm-include.patch |  0
 .../infinipath-psm/infinipath-psm-3.0.1.ebuild |  4 +-
 .../infinipath-psm/infinipath-psm-3.2.ebuild   |  4 +-
 .../infinipath-psm/metadata.xml|  0
 {sys-infiniband => sys-fabric}/libcxgb3/Manifest   |  0
 .../libcxgb3/libcxgb3-1.3.1-r1.ebuild  |  4 +-
 .../libcxgb3/libcxgb3-1.3.1-r2.ebuild  |  4 +-
 .../libcxgb3/metadata.xml  |  0
 {sys-infiniband => sys-fabric}/libcxgb4/Manifest   |  0
 .../libcxgb4/libcxgb4-1.2.0-r1.ebuild  |  4 +-
 .../libcxgb4/libcxgb4-1.3.2.ebuild |  4 +-
 .../libcxgb4/metadata.xml  |  0
 {sys-infiniband => sys-fabric}/libehca/Manifest|  0
 .../libehca/libehca-1.2.2-r2.ebuild|  4 +-
 .../libehca/libehca-1.2.2-r3.ebuild|  4 +-
 .../libehca/metadata.xml   |  0
 {sys-infiniband => sys-fabric}/libibcm/Manifest|  0
 .../libibcm/libibcm-1.0.5-r2.ebuild|  4 +-
 .../libibcm/libibcm-1.0.5-r3.ebuild|  4 +-
 .../libibcm/metadata.xml   |  0
 {sys-infiniband => sys-fabric}/libibmad/Manifest   |  0
 .../libibmad/libibmad-1.3.11.ebuild|  4 +-
 .../libibmad/libibmad-1.3.9.ebuild |  4 +-
 .../libibmad/metadata.xml  |  0
 {sys-infiniband => sys-fabric}/libibumad/Manifest  |  0
 .../libibumad/libibumad-1.3.8.ebuild   |  4 +-
 .../libibumad/libibumad-1.3.9.ebuild   |  4 +-
 .../libibumad/metadata.xml |  0
 {sys-infiniband => sys-fabric}/libibverbs/Manifest |  0
 .../libibverbs/libibverbs-1.1.6.ebuild |  4 +-
 .../libibverbs/libibverbs-1.1.7.ebuild |  4 +-
 .../libibverbs/metadata.xml|  0
 {sys-infiniband => sys-fabric}/libibvpp/Manifest   |  0
 .../libibvpp/libibvpp-0.1.ebuild   |  4 +-
 .../libibvpp/metadata.xml  |  0
 .../libipathverbs/Manifest |  0
 .../libipathverbs/libipathverbs-1.2-r2.ebuild  |  4 +-
 .../libipathverbs/libipathverbs-1.2.1.ebuild   |  4 +-
 .../libipathverbs/metadata.xml |  0
 {sys-infiniband => sys-fabric}/libmlx4/Manifest|  0
 .../libmlx4/libmlx4-1.0.4.ebuild   |  6 +--
 .../libmlx4/libmlx4-1.0.5.ebuild   |  6 +--
 .../libmlx4/metadata.xml   |  0
 {sys-infiniband => sys-fabric}/libmlx5/Manifest|  0
 .../libmlx5/libmlx5-1.0.1.ebuild   |  6 +--
 .../libmlx5/metadata.xml   |  0
 {sys-infiniband => sys-fabric}/libmthca/Manifest   |  0
 .../libmthca/libmthca-1.0.5-r4.ebuild  |  6 +--
 .../libmthca/libmthca-1.0.6.ebuild |  6 +--
 .../libmthca/metadata.xml  |  0
 {sys-infiniband => sys-fabric}/libnes/Manifest |  0
 .../libnes/libnes-1.1.3-r1.ebuild  |  6 +--
 .../libnes/libnes-1.1.4.ebuild |  6 +--
 {sys-infiniband => sys-fabric}/libnes/metadata.xml |  0
 {sys-infiniband => sys-fabric}/libocrdma/Manifest  |  0
 .../libocrdma/libocrdma-1.0.2.ebuild   |  6 +--
 .../libocrdma/metadata.xml 

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

2016-06-29 Thread Alexey Shvetsov
commit: 465e34a897af13e0185e553717c0d73930398152
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:33:00 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=465e34a8

sys-cluster/glusterfs: adapt sys-infiniband to sys-fabric rename

Package-Manager: portage-2.3.0_rc1

 sys-cluster/glusterfs/glusterfs-3.1.2.ebuild | 4 ++--
 sys-cluster/glusterfs/glusterfs-3.5.4.ebuild | 4 ++--
 sys-cluster/glusterfs/glusterfs-3.6.5.ebuild | 4 ++--
 sys-cluster/glusterfs/glusterfs-3.7.4.ebuild | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/sys-cluster/glusterfs/glusterfs-3.1.2.ebuild 
b/sys-cluster/glusterfs/glusterfs-3.1.2.ebuild
index 54d4b24..2c8b8ca 100644
--- a/sys-cluster/glusterfs/glusterfs-3.1.2.ebuild
+++ b/sys-cluster/glusterfs/glusterfs-3.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,7 +17,7 @@ IUSE="emacs extras +fuse infiniband static-libs vim-syntax"
 
 RDEPEND="emacs? ( virtual/emacs )
fuse? ( >=sys-fs/fuse-2.7.0 )
-   infiniband? ( sys-infiniband/libibverbs )"
+   infiniband? ( sys-fabric/libibverbs )"
 DEPEND="${RDEPEND}
virtual/pkgconfig
sys-devel/bison

diff --git a/sys-cluster/glusterfs/glusterfs-3.5.4.ebuild 
b/sys-cluster/glusterfs/glusterfs-3.5.4.ebuild
index ad162ac..c5049f0 100644
--- a/sys-cluster/glusterfs/glusterfs-3.5.4.ebuild
+++ b/sys-cluster/glusterfs/glusterfs-3.5.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -25,7 +25,7 @@ RDEPEND="bd-xlator? ( sys-fs/lvm2 )
emacs? ( virtual/emacs )
fuse? ( >=sys-fs/fuse-2.7.0 )
georeplication? ( ${PYTHON_DEPS} )
-   infiniband? ( sys-infiniband/libibverbs:* sys-infiniband/librdmacm:* )
+   infiniband? ( sys-fabric/libibverbs:* sys-fabric/librdmacm:* )
qemu-block? ( dev-libs/glib:2 )
systemtap? ( dev-util/systemtap )
xml? ( dev-libs/libxml2 )

diff --git a/sys-cluster/glusterfs/glusterfs-3.6.5.ebuild 
b/sys-cluster/glusterfs/glusterfs-3.6.5.ebuild
index c159fda..5bbda14 100644
--- a/sys-cluster/glusterfs/glusterfs-3.6.5.ebuild
+++ b/sys-cluster/glusterfs/glusterfs-3.6.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -25,7 +25,7 @@ RDEPEND="bd-xlator? ( sys-fs/lvm2 )
emacs? ( virtual/emacs )
fuse? ( >=sys-fs/fuse-2.7.0 )
georeplication? ( ${PYTHON_DEPS} )
-   infiniband? ( sys-infiniband/libibverbs:* sys-infiniband/librdmacm:* )
+   infiniband? ( sys-fabric/libibverbs:* sys-fabric/librdmacm:* )
qemu-block? ( dev-libs/glib:2 )
systemtap? ( dev-util/systemtap )
xml? ( dev-libs/libxml2 )

diff --git a/sys-cluster/glusterfs/glusterfs-3.7.4.ebuild 
b/sys-cluster/glusterfs/glusterfs-3.7.4.ebuild
index f06736f..9d3073a 100644
--- a/sys-cluster/glusterfs/glusterfs-3.7.4.ebuild
+++ b/sys-cluster/glusterfs/glusterfs-3.7.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -29,7 +29,7 @@ RDEPEND="bd-xlator? ( sys-fs/lvm2 )
emacs? ( virtual/emacs )
fuse? ( >=sys-fs/fuse-2.7.0 )
georeplication? ( ${PYTHON_DEPS} )
-   infiniband? ( sys-infiniband/libibverbs:* sys-infiniband/librdmacm:* )
+   infiniband? ( sys-fabric/libibverbs:* sys-fabric/librdmacm:* )
qemu-block? ( dev-libs/glib:2 )
systemtap? ( dev-util/systemtap )
tiering? ( dev-db/sqlite:3 )



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

2016-06-29 Thread Alexey Shvetsov
commit: 3aa6983b79db8e09f3b9d0d9f87774519800d7b5
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Jun 29 14:31:19 2016 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Jun 29 22:31:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aa6983b

sys-cluster/corosync: adapt sys-infiniband to sys-fabric rename

Package-Manager: portage-2.3.0_rc1

 sys-cluster/corosync/corosync-1.3.0.ebuild| 6 +++---
 sys-cluster/corosync/corosync-1.3.5.ebuild| 6 +++---
 sys-cluster/corosync/corosync-1.4.7.ebuild| 6 +++---
 sys-cluster/corosync/corosync-2.3.3.ebuild| 6 +++---
 sys-cluster/corosync/corosync-2.3.4-r1.ebuild | 6 +++---
 sys-cluster/corosync/corosync-2.3.5.ebuild| 4 ++--
 6 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/sys-cluster/corosync/corosync-1.3.0.ebuild 
b/sys-cluster/corosync/corosync-1.3.0.ebuild
index c4f6f5c..2751b67 100644
--- a/sys-cluster/corosync/corosync-1.3.0.ebuild
+++ b/sys-cluster/corosync/corosync-1.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -18,8 +18,8 @@ IUSE="doc infiniband ssl"
 RDEPEND="!sys-cluster/heartbeat
ssl? ( dev-libs/nss )
infiniband? (
-   sys-infiniband/libibverbs
-   sys-infiniband/librdmacm
+   sys-fabric/libibverbs
+   sys-fabric/librdmacm
)"
 DEPEND="${RDEPEND}
virtual/pkgconfig

diff --git a/sys-cluster/corosync/corosync-1.3.5.ebuild 
b/sys-cluster/corosync/corosync-1.3.5.ebuild
index 42e345b..1ed7c8b 100644
--- a/sys-cluster/corosync/corosync-1.3.5.ebuild
+++ b/sys-cluster/corosync/corosync-1.3.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -18,8 +18,8 @@ IUSE="doc infiniband ssl static-libs"
 RDEPEND="!sys-cluster/heartbeat
ssl? ( dev-libs/nss )
infiniband? (
-   sys-infiniband/libibverbs
-   sys-infiniband/librdmacm
+   sys-fabric/libibverbs
+   sys-fabric/librdmacm
)"
 DEPEND="${RDEPEND}
virtual/pkgconfig

diff --git a/sys-cluster/corosync/corosync-1.4.7.ebuild 
b/sys-cluster/corosync/corosync-1.4.7.ebuild
index febbfd0..837684b 100644
--- a/sys-cluster/corosync/corosync-1.4.7.ebuild
+++ b/sys-cluster/corosync/corosync-1.4.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,8 +20,8 @@ IUSE="doc infiniband ssl static-libs"
 RDEPEND="!sys-cluster/heartbeat
ssl? ( dev-libs/nss )
infiniband? (
-   sys-infiniband/libibverbs
-   sys-infiniband/librdmacm
+   sys-fabric/libibverbs
+   sys-fabric/librdmacm
)"
 DEPEND="${RDEPEND}
virtual/pkgconfig

diff --git a/sys-cluster/corosync/corosync-2.3.3.ebuild 
b/sys-cluster/corosync/corosync-2.3.3.ebuild
index 9051cd8..c004014 100644
--- a/sys-cluster/corosync/corosync-2.3.3.ebuild
+++ b/sys-cluster/corosync/corosync-2.3.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -25,8 +25,8 @@ IUSE="doc infiniband static-libs"
 # --enable-systemd : Install systemd service files
 RDEPEND="!sys-cluster/heartbeat
infiniband? (
-   sys-infiniband/libibverbs
-   sys-infiniband/librdmacm
+   sys-fabric/libibverbs
+   sys-fabric/librdmacm
)
dev-libs/nss
>=sys-cluster/libqb-0.14.4"

diff --git a/sys-cluster/corosync/corosync-2.3.4-r1.ebuild 
b/sys-cluster/corosync/corosync-2.3.4-r1.ebuild
index b304437..893ba32 100644
--- a/sys-cluster/corosync/corosync-2.3.4-r1.ebuild
+++ b/sys-cluster/corosync/corosync-2.3.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -25,8 +25,8 @@ IUSE="doc infiniband static-libs"
 # --enable-systemd : Install systemd service files
 RDEPEND="!sys-cluster/heartbeat
infiniband? (
-   sys-infiniband/libibverbs
-   sys-infiniband/librdmacm
+   sys-fabric/libibverbs
+   sys-fabric/librdmacm
)
dev-libs/nss
>=sys-cluster/libqb-0.14.4"

diff --git a/sys-cluster/corosync/corosync-2.3.5.ebuild 
b/sys-cluster/corosync/corosync-2.3.5.ebuild
index f129d11..458c3f7 100644
--- a/sys-cluster/corosync/corosync-2.3.5.ebuild
+++ b/sys-cluster/corosync/corosync-2.3.5.ebuild
@@ -23,8 +23,8 @@ IUSE="doc infiniband static-libs systemd xml"
 # --enable-watchdog : Watchdog 

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

2016-06-29 Thread Johannes Huber
commit: b6f7b16e86aa0bac3e754e498ac1f9792933f077
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jun 29 22:08:56 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jun 29 22:30:54 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b6f7b16e

kde-apps/akonadi-mime: Splitted upstream

Package-Manager: portage-2.3.0

 kde-apps/akonadi-mime/akonadi-mime-.ebuild | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/kde-apps/akonadi-mime/akonadi-mime-.ebuild 
b/kde-apps/akonadi-mime/akonadi-mime-.ebuild
index 99bb2c0..0f1d333 100644
--- a/kde-apps/akonadi-mime/akonadi-mime-.ebuild
+++ b/kde-apps/akonadi-mime/akonadi-mime-.ebuild
@@ -5,7 +5,6 @@
 EAPI=6
 
 KDE_TEST="true"
-KMNAME="kdepimlibs"
 QT_MINIMAL="5.6.0"
 inherit kde5
 
@@ -41,9 +40,3 @@ RDEPEND="${COMMON_DEPEND}
!kde-apps/kdepimlibs:4
!kde-apps/kdepimlibs:5
 "
-
-if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}/${PN}"
-else
-   S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
-fi



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

2016-06-29 Thread Johannes Huber
commit: 4df8576c0aa39a6ea38ac7899ab65e3cd2d5c91a
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jun 29 22:17:39 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jun 29 22:30:54 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4df8576c

kde-apps/akonadi-contact: Splitted upstream

Package-Manager: portage-2.3.0

 kde-apps/akonadi-contact/akonadi-contact-.ebuild | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/kde-apps/akonadi-contact/akonadi-contact-.ebuild 
b/kde-apps/akonadi-contact/akonadi-contact-.ebuild
index f7d9dfb..e165770 100644
--- a/kde-apps/akonadi-contact/akonadi-contact-.ebuild
+++ b/kde-apps/akonadi-contact/akonadi-contact-.ebuild
@@ -5,7 +5,8 @@
 EAPI=6
 
 KDE_TEST="forceoptional"
-KMNAME="kdepimlibs"
+# TODO pkg move with 16.08 release
+KMNAME="${PN}s"
 QT_MINIMAL="5.6.0"
 inherit kde5
 
@@ -50,15 +51,10 @@ RDEPEND="${DEPEND}
!kde-apps/kdepimlibs:5
 "
 
-if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}/${PN}"
-else
-   S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
-fi
-
 src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package prison KF5Prison)
)
+
kde5_src_configure
 }



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

2016-06-29 Thread Johannes Huber
commit: bcfc6b5220be3d0a6bb0f4087314401141be404b
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jun 29 22:10:36 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jun 29 22:30:54 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bcfc6b52

kde-apps/akonadi-notes: Splitted upstream

Package-Manager: portage-2.3.0

 kde-apps/akonadi-notes/akonadi-notes-.ebuild | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/kde-apps/akonadi-notes/akonadi-notes-.ebuild 
b/kde-apps/akonadi-notes/akonadi-notes-.ebuild
index e750887..5f0ddba 100644
--- a/kde-apps/akonadi-notes/akonadi-notes-.ebuild
+++ b/kde-apps/akonadi-notes/akonadi-notes-.ebuild
@@ -5,7 +5,6 @@
 EAPI=6
 
 KDE_TEST="true"
-KMNAME="kdepimlibs"
 QT_MINIMAL="5.6.0"
 inherit kde5
 
@@ -31,9 +30,3 @@ RDEPEND="${COMMON_DEPEND}
!kde-apps/kdepimlibs:4
!kde-apps/kdepimlibs:5
 "
-
-if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}/${PN}"
-else
-   S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
-fi



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

2016-06-29 Thread William Hubbs
commit: b252a3bd07e923b507c7eddb72656834033b5ba4
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 29 22:13:11 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 29 22:13:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b252a3bd

games-emulation/dosbox: sync live ebuild and make it copyable

Package-Manager: portage-2.2.28

 games-emulation/dosbox/dosbox-.ebuild | 33 +++
 1 file changed, 20 insertions(+), 13 deletions(-)

diff --git a/games-emulation/dosbox/dosbox-.ebuild 
b/games-emulation/dosbox/dosbox-.ebuild
index f0caa33..97c581f 100644
--- a/games-emulation/dosbox/dosbox-.ebuild
+++ b/games-emulation/dosbox/dosbox-.ebuild
@@ -1,17 +1,24 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
-ESVN_REPO_URI="https://dosbox.svn.sourceforge.net/svnroot/dosbox/dosbox/trunk;
-inherit autotools eutils subversion games
+EAPI=6
+
+if [[ ${PV} =  ]]; then
+   
ESVN_REPO_URI="https://dosbox.svn.sourceforge.net/svnroot/dosbox/dosbox/trunk;
+   inherit subversion
+else
+   SRC_URI="mirror://sourceforge/dosbox/${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+fi
+
+inherit autotools eutils
 
 DESCRIPTION="DOS emulator"
 HOMEPAGE="http://dosbox.sourceforge.net/;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS=""
 IUSE="alsa debug hardened opengl"
 
 DEPEND="alsa? ( media-libs/alsa-lib )
@@ -23,19 +30,20 @@ DEPEND="alsa? ( media-libs/alsa-lib )
media-libs/sdl-sound"
 RDEPEND=${DEPEND}
 
-S=${WORKDIR}/${PN}
-
-src_unpack() {
-   subversion_src_unpack
-}
+if [[ ${PV} =  ]]; then
+   S=${WORKDIR}/${PN}
+fi
 
 src_prepare() {
-   subversion_src_prepare
+   default
+   if [[ ${PV} =  ]]; then
+   subversion_src_prepare
+   fi
eautoreconf
 }
 
 src_configure() {
-   egamesconf \
+   econf \
$(use_enable alsa alsa-midi) \
$(use_enable !hardened dynamic-core) \
$(use_enable !hardened dynamic-x86) \
@@ -47,5 +55,4 @@ src_install() {
default
make_desktop_entry dosbox DOSBox /usr/share/pixmaps/dosbox.ico
doicon src/dosbox.ico
-   prepgamesdirs
 }



[gentoo-commits] repo/gentoo:master commit in: games-util/xgame-gtk2/

2016-06-29 Thread Austin English
commit: 7eab016ff02ff4a54604eac318ae6a32b5bc9ef8
Author: Austin English  gentoo  org>
AuthorDate: Wed Jun 29 22:16:41 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jun 29 22:16:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eab016f

games-util/xgame-gtk2: remove depreacted games eclass

Also update to EAPI 6

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

Package-Manager: portage-2.2.28

 games-util/xgame-gtk2/xgame-gtk2-2.0.2-r1.ebuild | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/games-util/xgame-gtk2/xgame-gtk2-2.0.2-r1.ebuild 
b/games-util/xgame-gtk2/xgame-gtk2-2.0.2-r1.ebuild
new file mode 100644
index 000..fb6dfa2
--- /dev/null
+++ b/games-util/xgame-gtk2/xgame-gtk2-2.0.2-r1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Run games in a separate X session"
+HOMEPAGE="http://xgame.tlhiv.com/;
+SRC_URI="http://downloads.tlhiv.com/xgame/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND="dev-lang/perl
+   >=dev-perl/gtk2-perl-1.040"
+
+src_install() {
+   default
+   dobin xgame-gtk2
+}



[gentoo-commits] repo/gentoo:master commit in: games-util/xgame/

2016-06-29 Thread Austin English
commit: cf7d59447881f4e83500175e4af379524b3f555e
Author: Austin English  gentoo  org>
AuthorDate: Wed Jun 29 22:11:39 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jun 29 22:16:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf7d5944

games-util/xgame: remove deprecated games eclass

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

Package-Manager: portage-2.2.28

 games-util/xgame/xgame-1.7.1-r1.ebuild | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/games-util/xgame/xgame-1.7.1-r1.ebuild 
b/games-util/xgame/xgame-1.7.1-r1.ebuild
new file mode 100644
index 000..b6f6e06
--- /dev/null
+++ b/games-util/xgame/xgame-1.7.1-r1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Run games in a separate X session"
+HOMEPAGE="http://xgame.tlhiv.com/;
+SRC_URI="http://downloads.tlhiv.com/xgame/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND=
+RDEPEND="dev-lang/perl"
+
+src_install() {
+   default
+   dobin xgame
+}



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

2016-06-29 Thread Doug Goldstein
commit: d3597bc14c65849fde63ca9d96be1e579e297146
Author: Doug Goldstein  gentoo  org>
AuthorDate: Wed Jun 29 14:30:02 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Wed Jun 29 21:59:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3597bc1

eclass: initial cargo support eclass

Base eclass for cargo that handles setting up the cargo registry and
provides a way to fetch crates.

Signed-off-by: Doug Goldstein  gentoo.org>

 eclass/cargo.eclass | 85 +
 1 file changed, 85 insertions(+)

diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass
new file mode 100644
index 000..8c5e00c
--- /dev/null
+++ b/eclass/cargo.eclass
@@ -0,0 +1,85 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# @ECLASS: cargo.eclass
+# @MAINTAINER:
+# r...@gentoo.org
+# @AUTHOR:
+# Doug Goldstein 
+# @BLURB: common functions and variables for cargo builds
+
+if [[ -z ${_CARGO_ECLASS} ]]; then
+_CARGO_ECLASS=1
+
+case ${EAPI} in
+   6) : ;;
+   *) die "EAPI=${EAPI:-0} is not supported" ;;
+esac
+
+EXPORT_FUNCTIONS src_unpack
+
+ECARGO_HOME="${WORKDIR}/cargo_home"
+ECARGO_REGISTRY="github.com-88ac128001ac3a9a"
+ECARGO_INDEX="${ECARGO_HOME}/registry/index/${ECARGO_REGISTRY}"
+ECARGO_SRC="${ECARGO_HOME}/registry/src/${ECARGO_REGISTRY}"
+ECARGO_CACHE="${ECARGO_HOME}/registry/cache/${ECARGO_REGISTRY}"
+
+# @FUNCTION: cargo_crate_uris
+# @DESCRIPTION:
+# Generates the URIs to put in SRC_URI to help fetch dependencies.
+cargo_crate_uris() {
+   for crate in $*; do
+   local name version url
+   name="${crate%-*}"
+   version="${crate##*-}"
+   
url="https://crates.io/api/v1/crates/${name}/${version}/download -> 
${crate}.crate"
+   echo $url
+   done
+}
+
+# @FUNCTION: cargo_src_unpack
+# @DESCRIPTION:
+# Unpacks the package and the cargo registry
+cargo_src_unpack() {
+   debug-print-function ${FUNCNAME} "$@"
+
+   mkdir -p "${ECARGO_INDEX}" || die
+   mkdir -p "${ECARGO_CACHE}" || die
+   mkdir -p "${ECARGO_SRC}" || die
+   mkdir -p "${S}" || die
+
+   local archive
+   for archive in ${A}; do
+   case "${archive}" in
+   *.crate)
+   ebegin "Unpacking ${archive}"
+   cp "${DISTDIR}"/${archive} "${ECARGO_CACHE}/" 
|| die
+   tar -xf "${DISTDIR}"/${archive} -C 
"${ECARGO_SRC}/" || die
+   eend $?
+   ;;
+   cargo-snapshot*)
+   ebegin "Unpacking ${archive}"
+   mkdir -p "${S}"/target/snapshot
+   tar -xzf "${DISTDIR}"/${archive} -C 
"${S}"/target/snapshot --strip-components 2 || die
+   # cargo's makefile needs this otherwise it will 
try to
+   # download it
+   touch "${S}"/target/snapshot/bin/cargo || die
+   eend $?
+   ;;
+   cargo-registry*)
+   ebegin "Unpacking ${archive}"
+   tar -xzf "${DISTDIR}"/${archive} -C 
"${ECARGO_INDEX}" --strip-components 1 || die
+   # prevent cargo from attempting to download 
this again
+   touch "${ECARGO_INDEX}"/.cargo-index-lock || die
+   eend $?
+   ;;
+   *)
+   unpack ${archive}
+   ;;
+   esac
+   done
+}
+
+
+fi



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

2016-06-29 Thread Doug Goldstein
commit: 4ca5a10de4c0581c8dea28f8a82289057818a340
Author: Doug Goldstein  gentoo  org>
AuthorDate: Tue Jun 28 15:54:56 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Wed Jun 29 21:59:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ca5a10d

dev-util/cargo: initial version

Add an initial version of the Rust package manager, Cargo.

Package-Manager: portage-2.2.28
Signed-off-by: Doug Goldstein  gentoo.org>

 dev-util/cargo/Manifest|  57 +++
 dev-util/cargo/cargo-0.10.0.ebuild | 166 +
 ...-CFG_PREFIX-from-CFG_-DATADIR-MANDIR-INFO.patch |  39 +
 ...uild-write-updated-variables-to-config.mk.patch |  43 ++
 ...ct-datadir-infodir-mandir-libdir-and-sysc.patch |  51 +++
 .../files/0004-build-add-docdir-to-configure.patch |  75 ++
 dev-util/cargo/metadata.xml|   8 +
 7 files changed, 439 insertions(+)

diff --git a/dev-util/cargo/Manifest b/dev-util/cargo/Manifest
new file mode 100644
index 000..c31fd34
--- /dev/null
+++ b/dev-util/cargo/Manifest
@@ -0,0 +1,57 @@
+DIST advapi32-sys-0.1.2.crate 7052 SHA256 
307c92332867e586720c0222ee9d890bbe8431711efed8a1b06bc5b40fc66bd7 SHA512 
98a1d2cb6cbd8a3ea53abefd97a991d4e5788d32127017c680c78b414d59f70bba179df1cc21d6fbd08fa9c951eb267d6e3f078b52baf530bef4e22c8ddc9c26
 WHIRLPOOL 
67067b898bed51d2bbb06f43a525b293dfaf5b98be615391fa2a381fb838165fa8e22570a0212a91a026657aada820e7cde0e4446e88bd66705060b13a349ff9
+DIST aho-corasick-0.5.1.crate 29015 SHA256 
67077478f0a03952bed2e6786338d400d40c25e9836e08ad50af96607317fd03 SHA512 
81dbcf720613671880c5f28066a1368ee7e953c5d9f44253dc1f9c31b601e87bac518baa48cfaa34b905a4f687ec30233c1dcb00da093dbe502ce8a2f96b9619
 WHIRLPOOL 
33ddea81b7768c02a14d4a461b0f8e0175567ffbf70dc0aa849bbd46830df0607212c2c5d51efa1b3902ad156b20f22c14fa07be2d03b848a202b66579639d54
+DIST bitflags-0.1.1.crate 8719 SHA256 
2a6577517ecd0ee0934f48a7295a89aaef3e6dfafeac404f94c0b3448518ddfe SHA512 
aa85c6adda0e9d192f2ae817e3c727167bac8609eb85c8153d99bb42d990de3f931e890924841ca11ba8dbd1413d1c5bf20acd584d182292e8828ed56fcedc18
 WHIRLPOOL 
c93a45bb238b32e551dee23f9023db97eab10c2418a59dd9e3c44ca8cf7c8916de90ffbb5e84b7bff4863ce7a71de54e9fa760967989be906a90bec509a2956a
+DIST bufstream-0.1.1.crate 7437 SHA256 
7e493de6a8aed51697088e36dc5245ea3edd34e6872e32c732e5f996ed5b23b2 SHA512 
e1d378a5dd9d6b096f9b8d9de018c17652615ff373d1644b0978b74325f22fba2157ce0aa9fba423e1f452119af1485a72c2e44f7b3b8c5350dfd3f8f2e93436
 WHIRLPOOL 
de26e042bbb6323946d8570c682fa9ea08292508910ca7c928206935d6c1f6c888d3cb04bf285f1404b59c109cf813cc79ecbc64a6d16dfabf72412aabfc6be9
+DIST cargo-0.10.0.tar.gz 553862 SHA256 
1e73c038681fe308195427b71322a6350c65d3b8cbea199e45c7b672b4754e0e SHA512 
5fd4b517f251299bb19ba49392d544d92a96eb7ffb30ee59ccfcf7debe87d619042966d2b6198e250a0d96c8bb8e9a68f2b23361312b825d633617486f0d9540
 WHIRLPOOL 
5b06cbce387953892f155f7cba71eb24d0bd2e12d0492e0a92daae5922c8e92503276585225c981c64c26399f546bcb932917f62351207fcac06a8ce89b2ab67
+DIST cargo-registry-13b4aa0e3062a3938ed958adccd49e62614f509b.tar.gz 1936818 
SHA256 7b76689604ad8c0fc1978dd7c9cb5d01e7ab5e97d673b4595280db786b9b8014 SHA512 
87d0d60eccd924769057f5ef6bb013409cfdb9d4c658e10a18caf3954f74b2bf725170d9cded36ece6c3cf4385a8b8c05e72f1882ece3579d4fb3bdda77b5348
 WHIRLPOOL 
2f0a7b1789ad2916d822e1ae9ef0b8bb7dbf8d73d82b3b90f68ea85b28a607e71ad3faa41d7100b56a438a33e91f2fe18921e793556e988adbd870047acc8204
+DIST cargo-snapshot-amd64-2016-03-21.tar.gz 4163903 SHA256 
55ad9a8929303b4e06c18d0dd30b0d6296da784606d9c55cce98d5d7fc39a0b2 SHA512 
475087ff1905fc42bd875488696d8f67fc68f9fb3e48ef9f25bbd6d8f949aa9a3984f61a8bd1741ce8c98e33c6910e020ea7fd5cb67cf2b7fc1703947561ae0e
 WHIRLPOOL 
ddda8983c38f238237fbb78fd8242e08df44c31bd0c29d2e75b53dcb0ecc601660f4c765b00e066781da6feb9f8df494b99228b126f3cdd89d028253c2c5
+DIST cargo-snapshot-x86-2016-03-21.tar.gz 3889095 SHA256 
b2a1c4c33fb9274771c8d830cd8ac07f7ae96af341fa30399d6929ffd6c8b425 SHA512 
3c6d6a9c6ee2a93abec5c9c3d79f86a623db6429e192d028729279c07d5769548d6f716afbd8e984ab2f6449f75cd24efb32b87f97b6b90c0e7b3b25779e8624
 WHIRLPOOL 
8bafd298e6cf54d22c420859c105be98047b556802494d2ccf9b13b06837f85902cf61fd1846dcff3e527d0ce0ee188723f44f4cb598cc34e0fedb6c2f2b3d41
+DIST cmake-0.1.16.crate 10125 SHA256 
eb61a8d3b65f8e0af52ac579923ec48bdd5ca4e335c0fde4071e5860eb650532 SHA512 
80f8f33fc66402b1a5a31f993349d9c6a6237ebe461e1aa24064eb31328e7f5901303b5753d1f62ece0881de9f7c1c42077488ce682a3889a8a74642a8b84f84
 WHIRLPOOL 
5a02bbda79faa44f3e3696f490e146fabf1a3a06a5563ea53040fa949086c5469afb82b8cb49cc52c360f7c2a31587f30039a49717574189a0062e575658502f
+DIST crossbeam-0.2.8.crate 31266 SHA256 
348228ce9f93d20ffc30c18e575f82fa41b9c8bf064806c65d41eba4771595a0 SHA512 
5dfb05b1213993d9577190952ed854b397774f1f33704a418a5b2525e2d2c4c872c50858dbb5d7ff3ecabda91091adf99684e4ec21ea865a744307e764fd6e73
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: games-emulation/dosbox/, games-emulation/dboxfe/

2016-06-29 Thread Austin English
commit: 255abaa802ab8078625e8484f7c01809fd728301
Author: Austin English  gentoo  org>
AuthorDate: Wed Jun 29 19:24:42 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jun 29 21:51:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=255abaa8

games-emulation/{dboxfe,dosbox}: add Wine project as co-maintainers

 games-emulation/dboxfe/metadata.xml | 4 
 games-emulation/dosbox/metadata.xml | 5 +
 2 files changed, 9 insertions(+)

diff --git a/games-emulation/dboxfe/metadata.xml 
b/games-emulation/dboxfe/metadata.xml
index 18b423b..fb66d2d 100644
--- a/games-emulation/dboxfe/metadata.xml
+++ b/games-emulation/dboxfe/metadata.xml
@@ -5,6 +5,10 @@
ga...@gentoo.org
Gentoo Games Project

+   
+   w...@gentoo.org
+   Gentoo Wine Project
+   

dboxfe.berlios


diff --git a/games-emulation/dosbox/metadata.xml 
b/games-emulation/dosbox/metadata.xml
index e6f83ba..a8a2df5 100644
--- a/games-emulation/dosbox/metadata.xml
+++ b/games-emulation/dosbox/metadata.xml
@@ -8,6 +8,11 @@
ga...@gentoo.org
Gentoo Games Project

+   
+   w...@gentoo.org
+   Gentoo Wine Project
+Should be cc'ed for issues with dosbox-0.74-_p* snapshot 
versions
+   

dosbox




[gentoo-commits] repo/gentoo:master commit in: games-emulation/dboxfe/, games-emulation/dboxfe/files/

2016-06-29 Thread Austin English
commit: ce01f45d6cbc194f3088d4e4629d5999cdfcfd49
Author: Austin English  gentoo  org>
AuthorDate: Wed Jun 29 21:50:16 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jun 29 21:51:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce01f45d

games-emulation/dboxfe: removed deprecated games/qt4-r2 eclasses

Also update to EAPI 6

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

Package-Manager: portage-2.2.28

 games-emulation/dboxfe/dboxfe-0.1.3-r1.ebuild  | 30 ++
 .../dboxfe/files/dboxfe-0.1.3-ldflags.patch|  8 +++---
 2 files changed, 34 insertions(+), 4 deletions(-)

diff --git a/games-emulation/dboxfe/dboxfe-0.1.3-r1.ebuild 
b/games-emulation/dboxfe/dboxfe-0.1.3-r1.ebuild
new file mode 100644
index 000..b2526f4
--- /dev/null
+++ b/games-emulation/dboxfe/dboxfe-0.1.3-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Creates and manages configuration files for DOSBox"
+HOMEPAGE="http://sourceforge.net/projects/dboxfe.berlios/;
+SRC_URI="mirror://sourceforge/dboxfe.berlios/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND="dev-qt/qtgui:4
+   dev-qt/qtcore:4"
+RDEPEND="${DEPEND}
+   >=games-emulation/dosbox-0.65"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-ldflags.patch
+)
+
+src_install() {
+   default
+   dobin bin/dboxfe
+   newicon res/default.png ${PN}.png
+   make_desktop_entry dboxfe "DosBoxFE"
+}

diff --git a/games-emulation/dboxfe/files/dboxfe-0.1.3-ldflags.patch 
b/games-emulation/dboxfe/files/dboxfe-0.1.3-ldflags.patch
index 6ceb1d2..b592782 100644
--- a/games-emulation/dboxfe/files/dboxfe-0.1.3-ldflags.patch
+++ b/games-emulation/dboxfe/files/dboxfe-0.1.3-ldflags.patch
@@ -1,5 +1,5 @@
 dboxfe.pro.old 2010-09-29 23:53:38.0 +0200
-+++ dboxfe.pro 2010-09-29 23:54:11.0 +0200
+--- a/dboxfe.pro   2010-09-29 23:53:38.0 +0200
 b/dboxfe.pro   2010-09-29 23:54:11.0 +0200
 @@ -83,6 +83,7 @@
  # Unix/Linux settings
  unix{
@@ -8,8 +8,8 @@
#QMAKE_POST_LINK = strip -s bin/dboxfe
RCC_DIR = .unix/rcc
MOC_DIR += .unix/moc
 dboxfetray/dboxfetray.pro.old  2010-09-29 23:55:31.0 +0200
-+++ dboxfetray/dboxfetray.pro  2010-09-29 23:56:12.0 +0200
+--- a/dboxfetray/dboxfetray.pro2010-09-29 23:55:31.0 +0200
 b/dboxfetray/dboxfetray.pro2010-09-29 23:56:12.0 +0200
 @@ -56,6 +56,7 @@
  # Unix/Linux settings
  unix{



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

2016-06-29 Thread Anthony G. Basile
commit: a54b264300eda7c605c789e66a7b5116b8806b90
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jun 29 21:47:13 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jun 29 21:47:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a54b2643

profiles: p.mask net-dns/namecoin{d,-qt} for bug #585726

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 208b6ae..38a84ce 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Anthony G. Basile  (29 Jun 2016)
+# Masked for bug #585726
+net-dns/namecoind
+net-dns/namecoin-qt
+
 # Michael Palimaka  (29 Jun 2016)
 # No longer released upstream. Use kde-apps/ffmpegthumbs instead.
 # Masked for removal in 30 days.



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

2016-06-29 Thread Michał Górny
commit: dd53a48c812d3859e3e5addfa38c0014d509511f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 20:30:23 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 21:14:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd53a48c

dev-ml/lablgl: Support camlp4/labltk in -r1 only, #586914

Restrict the 1.05 ebuild to support old OCaml only to solve the :=-in-||
problem. 1.05-r1 is stable on all architectures supporting camlp4,
and -r0 is only kept for stable ia64 & sparc users.

 dev-ml/lablgl/lablgl-1.05.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/lablgl/lablgl-1.05.ebuild b/dev-ml/lablgl/lablgl-1.05.ebuild
index bb69c5d..20f1f9e 100644
--- a/dev-ml/lablgl/lablgl-1.05.ebuild
+++ b/dev-ml/lablgl/lablgl-1.05.ebuild
@@ -19,12 +19,12 @@ RDEPEND="
x11-libs/libX11
virtual/opengl
virtual/glu
-   || ( dev-ml/camlp4:= =dev-lang/tcl-8.3:0=
>=dev-lang/tk-8.3:0=
-   || ( dev-ml/labltk:= 

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

2016-06-29 Thread Michał Górny
commit: 52ce482c08e38e356d0706d54bbcfa6cac8123d4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 20:32:58 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 21:14:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52ce482c

dev-ml/lablgtk: Split stable into old OCaml & camlp4 variants, #586916

Split the stable version into a variant supporting old OCaml and one
supporting camlp4, in order to solve :=-in-|| problem. The old ebuild
is only targeted at stable ia64 & sparc users that do not have camlp4
stable.

 dev-ml/lablgtk/{lablgtk-2.18.3.ebuild => lablgtk-2.18.3-r1.ebuild} | 4 ++--
 dev-ml/lablgtk/lablgtk-2.18.3.ebuild   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ml/lablgtk/lablgtk-2.18.3.ebuild 
b/dev-ml/lablgtk/lablgtk-2.18.3-r1.ebuild
similarity index 94%
copy from dev-ml/lablgtk/lablgtk-2.18.3.ebuild
copy to dev-ml/lablgtk/lablgtk-2.18.3-r1.ebuild
index 81b3d6a..53294ba 100644
--- a/dev-ml/lablgtk/lablgtk-2.18.3.ebuild
+++ b/dev-ml/lablgtk/lablgtk-2.18.3-r1.ebuild
@@ -22,13 +22,13 @@ RDEPEND=">=x11-libs/gtk+-2.10:2
>=x11-libs/gtkglarea-1.9:2 )
spell? ( app-text/gtkspell:2 )
sourceview? ( x11-libs/gtksourceview:2.0 )
-   || ( dev-ml/camlp4:= 

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

2016-06-29 Thread Michał Górny
commit: 3d2cf3e1ff5fc88e8c9eda9c005404f83d346d0c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 21:10:03 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 21:10:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d2cf3e1

dev-ml/lwt: Drop interim version w/ same kw, #586918

 dev-ml/lwt/Manifest |  1 -
 dev-ml/lwt/lwt-2.5.1.ebuild | 42 --
 2 files changed, 43 deletions(-)

diff --git a/dev-ml/lwt/Manifest b/dev-ml/lwt/Manifest
index 2e3223f..626c2d0 100644
--- a/dev-ml/lwt/Manifest
+++ b/dev-ml/lwt/Manifest
@@ -1,3 +1,2 @@
 DIST lwt-2.4.3.tar.gz 504000 SHA256 
efee23937750290d6dee96eed6c0bbdb19817d5be6eefcba61ac5031fac10107 SHA512 
725d50a096a43294d49ae2322fdc985c301ce6a8ff5c956925225d7977e787ccb446e36a9db5fdbb50f284b9f1a3a12a52d1aa44d4400feecb59f6f938ed00ad
 WHIRLPOOL 
c5999e950008902600b43bf39f174ed0bc2cb3f6dce983d885416969a3bb98170ec8b74c8f5829459c3c96d160e5b4c8491b7057e7efeac035a46c9846ff7764
-DIST lwt-2.5.1.tar.gz 1272834 SHA256 
351ea57e30cdeeebb02ae3b12906ed391f947fd35d57148905828ee121ec29ec SHA512 
648f08e13a5b13072ed44ec380cce226bbf2ac480ca6adcd170e5bfa789bf6a4e832af0748bb1bff0e45611fd8d1b14592ece4211fb78be5b03cbcd7c3cb3b7d
 WHIRLPOOL 
c89ff1cd278ca194e1edf11ee447466dfd90f1bae4c79967e296c73cecf6684f017f8873a9f8cd6c367e83d1acfbd65ccc021edc1a7efc01432207e171f8e9dd
 DIST lwt-2.5.2.tar.gz 268168 SHA256 
b319514cf51656780a8f609a63ead08d3052a442546b218530ce146d37bf6331 SHA512 
83c7a9d9798fe12e0bdd618e7f69ac357065a9b26e2abb644240c420cb1d507a3b558549b2f82ecc9c3fbc9ca5952e8d7cb32b6832713bfb6fffcb58975d5449
 WHIRLPOOL 
f0482836988a248b691c332ef7acbeb5121226582cb8ef1e0b301719d35e25fd5d08e6b7b9e9ab02081b4d734ddc399251a31b66a26859542a4484342e517257

diff --git a/dev-ml/lwt/lwt-2.5.1.ebuild b/dev-ml/lwt/lwt-2.5.1.ebuild
deleted file mode 100644
index ac787dd..000
--- a/dev-ml/lwt/lwt-2.5.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_TESTS=1
-# fails to build
-#OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="Cooperative light-weight thread library for OCaml"
-SRC_URI="https://github.com/ocsigen/lwt/archive/${PV}.tar.gz -> ${P}.tar.gz"
-HOMEPAGE="http://ocsigen.org/lwt;
-
-IUSE="gtk +ppx +react +ssl"
-
-DEPEND="react? ( >=dev-ml/react-1.2:= )
-   dev-libs/libev
-   ssl? ( >=dev-ml/ocaml-ssl-0.4.0:= )
-   gtk? ( dev-ml/lablgtk:= dev-libs/glib:2 )
-   ppx? ( dev-ml/ppx_tools:= )
-   || ( dev-ml/camlp4:= 

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

2016-06-29 Thread James Le Cuirot
commit: fbe884fefc9a2858dd5cea91b28345081831b8b6
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Jun 29 21:08:57 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Jun 29 21:08:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbe884fe

profiles: dev-java/cacao has been removed

Done this early because I didn't realise pushing an eclass change
would cause cache generation breakage against a masked ebuild.

 profiles/package.mask | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index f7bcff0..208b6ae 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -92,13 +92,6 @@ dev-ml/typehashlib
 # Integrated in media-video/bashnapi. Removal in 30 days.
 media-video/subotage
 
-# James Le Cuirot  (22 Jun 2016)
-# Not practical as a system JVM and you'd be better off with
-# IcedTea. In-tree version is ancient. java-overlay version is newer
-# but not the latest. It can't be moved to the tree because
-# gnu-classpath-0.99 has packaging issues. Removal in 30 days.
- (19 Jun 2016)
 # Ancient, untested, never unmasked. Removal in 30 days. Bug 586172.
 sys-auth/pam_keystore



[gentoo-commits] repo/gentoo:master commit in: dev-java/cacao/, dev-java/cacao/files/

2016-06-29 Thread James Le Cuirot
commit: fe6640c6f9d32ab761602cbc0615435e56fd0eff
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Jun 29 21:06:56 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Jun 29 21:06:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe6640c6

dev-java/cacao: Remove in favour of java-overlay version

Doing this early because I didn't realise pushing an eclass change
would cause cache generation breakage against a masked ebuild.

 dev-java/cacao/Manifest   |  1 -
 dev-java/cacao/cacao-0.99.4.ebuild| 83 ---
 dev-java/cacao/files/0.93-no-exec-stack.patch | 13 -
 dev-java/cacao/files/cacao.env| 18 --
 dev-java/cacao/metadata.xml   | 14 -
 5 files changed, 129 deletions(-)

diff --git a/dev-java/cacao/Manifest b/dev-java/cacao/Manifest
deleted file mode 100644
index aa6afd7..000
--- a/dev-java/cacao/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST cacao-0.99.4.tar.bz2 2876200 SHA256 
1dfc4903dc0172286df4f1740fd0f12749ac81d51c602290b47cbe83d51e1d56 SHA512 
f53d07acad7541d761383239776ec5423a66fb9963ad587d3fcddf7257625b51dd8f2ccd2ff8279ea3f148291b26fad1e02d57b529bd0cafe14ecd5ad82767b4
 WHIRLPOOL 
c472c0966184c5bb48fa86ec41d78fbbcb6d2a27dc7177e12606cf7f26a7fe4e941bfa1b2c52d3845d879d08994c7404c1fd3ac515463662cd28305814d5ac26

diff --git a/dev-java/cacao/cacao-0.99.4.ebuild 
b/dev-java/cacao/cacao-0.99.4.ebuild
deleted file mode 100644
index 7d5a641..000
--- a/dev-java/cacao/cacao-0.99.4.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-AUTOTOOLS_AUTO_DEPEND="no"
-
-inherit autotools eutils flag-o-matic java-pkg-2 java-vm-2
-
-DESCRIPTION="Cacao Java Virtual Machine"
-HOMEPAGE="http://www.cacaojvm.org/;
-SRC_URI="http://www.complang.tuwien.ac.at/cacaojvm/download/${P}/${P}.tar.bz2;
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-CLASSPATH_SLOT=0.98
-COMMON_DEPEND="
-   dev-java/gnu-classpath:${CLASSPATH_SLOT}
-   || ( dev-java/eclipse-ecj dev-java/ecj-gcj )
-"
-RDEPEND="${COMMON_DEPEND}"
-DEPEND="${COMMON_DEPEND}
-   test? (
-   dev-java/junit:4
-   ${AUTOTOOLS_DEPEND}
-   )
-"
-
-CLASSPATH_DIR=/usr/gnu-classpath-${CLASSPATH_SLOT}
-
-src_prepare() {
-   if use test; then
-   sed -ie "s:/usr/share/java/junit4.jar:$(java-config -p 
junit-4):" \
-   ./tests/regression/bugzilla/Makefile.am \
-   ./tests/regression/base/Makefile.am || die "sed failed"
-   eautoreconf
-   fi
-}
-
-src_configure() {
-   # A compiler can be forced with the JAVAC variable if needed
-   unset JAVAC
-   append-flags -fno-strict-aliasing
-   econf --bindir=/usr/${PN}/bin \
-   --libdir=/usr/${PN}/lib \
-   --datarootdir=/usr/${PN}/share \
-   --disable-dependency-tracking \
-   --with-java-runtime-library-prefix=${CLASSPATH_DIR}
-}
-
-src_compile() {
-   default
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die "make install failed"
-   dodir /usr/bin
-   dosym /usr/${PN}/bin/cacao /usr/bin/cacao || die
-   dodoc AUTHORS ChangeLog* NEWS README || die "failed to install docs"
-
-   for files in ${CLASSPATH_DIR}/bin/g*; do
-   dosym $files \
-   /usr/${PN}/bin/$(echo $files|sed "s#$(dirname 
$files)/g##") || die
-   done
-
-   dodir /usr/${PN}/jre/lib
-   dosym ${CLASSPATH_DIR}/share/classpath/glibj.zip 
/usr/${PN}/jre/lib/rt.jar
-   dodir /usr/${PN}/lib
-   dosym ${CLASSPATH_DIR}/share/classpath/tools.zip 
/usr/${PN}/lib/tools.jar
-
-   dosym /usr/bin/ecj /usr/${PN}/bin/javac || die
-
-   local libarch="${ARCH}"
-   [ ${ARCH} == x86 ] && libarch="i386"
-   [ ${ARCH} == x86_64 ] && libarch="amd64"
-   dodir /usr/${PN}/jre/lib/${libarch}/client
-   dodir /usr/${PN}/jre/lib/${libarch}/server
-   dosym /usr/${PN}/lib/libjvm.so 
/usr/${PN}/jre/lib/${libarch}/client/libjvm.so
-   dosym /usr/${PN}/lib/libjvm.so 
/usr/${PN}/jre/lib/${libarch}/server/libjvm.so
-   dosym ${CLASSPATH_DIR}/lib/classpath/libjawt.so 
/usr/${PN}/jre/lib/${libarch}/libjawt.so
-   set_java_env
-}

diff --git a/dev-java/cacao/files/0.93-no-exec-stack.patch 
b/dev-java/cacao/files/0.93-no-exec-stack.patch
deleted file mode 100644
index cac6e71..000
--- a/dev-java/cacao/files/0.93-no-exec-stack.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -ur cacao-0.93.old/src/vm/jit/i386/asmpart.S 
cacao-0.93/src/vm/jit/i386/asmpart.S
 cacao-0.93.old/src/vm/jit/i386/asmpart.S   2005-12-21 12:31:29.808539216 
+0200
-+++ cacao-0.93/src/vm/jit/i386/asmpart.S   2005-12-21 12:33:06.350862552 
+0200
-@@ -40,6 +40,9 @@
- 
- #include "vm/jit/methodheader.h"
- 
-+#ifdef __ELF__
-+.section 

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

2016-06-29 Thread James Le Cuirot
commit: c7e51c7f60e280aa708df08c86d849ba23507120
Author: James Le Cuirot  gentoo  org>
AuthorDate: Tue Jun 28 20:58:58 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Jun 29 21:04:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e51c7f

java-vm-2.eclass: Drop support for EAPI <5

 eclass/java-vm-2.eclass | 22 ++
 1 file changed, 6 insertions(+), 16 deletions(-)

diff --git a/eclass/java-vm-2.eclass b/eclass/java-vm-2.eclass
index efdf52d..c544191 100644
--- a/eclass/java-vm-2.eclass
+++ b/eclass/java-vm-2.eclass
@@ -10,7 +10,12 @@
 # This eclass provides functionality which assists with installing
 # virtual machines, and ensures that they are recognized by java-config.
 
-inherit eutils fdo-mime multilib pax-utils prefix
+case ${EAPI:-0} in
+   5|6) ;;
+   *) die "EAPI=${EAPI} is not supported" ;;
+esac
+
+inherit fdo-mime multilib pax-utils prefix
 
 EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_prerm pkg_postrm
 
@@ -18,7 +23,6 @@ RDEPEND="
>=dev-java/java-config-2.2.0-r3
>=app-eselect/eselect-java-0.2.0"
 DEPEND="${RDEPEND}"
-has "${EAPI}" 0 1 && DEPEND="${DEPEND} >=sys-apps/portage-2.1"
 
 export WANT_JAVA_CONFIG=2
 
@@ -70,7 +74,6 @@ java-vm-2_pkg_setup() {
 # invalid. Also update mime database.
 
 java-vm-2_pkg_postinst() {
-   has ${EAPI:-0} 0 1 2 && ! use prefix && EROOT=${ROOT}
# Note that we cannot rely on java-config here, as it will silently 
recognize
# e.g. icedtea6-bin as valid system VM if icedtea6 is set but invalid 
(e.g. due
# to the migration to icedtea-6)
@@ -95,7 +98,6 @@ java-vm-2_pkg_postinst() {
 # Warn user if removing system-vm.
 
 java-vm-2_pkg_prerm() {
-   # Although REPLACED_BY_VERSION is EAPI=4, we shouldn't need to check 
EAPI for this use case
if [[ "$(GENTOO_VM="" java-config -f 2>/dev/null)" == "${VMHANDLE}" && 
-z "${REPLACED_BY_VERSION}" ]]; then
ewarn "It appears you are removing your system-vm!"
ewarn "Please run java-config -L to list available VMs,"
@@ -149,11 +151,6 @@ get_system_arch() {
 set_java_env() {
debug-print-function ${FUNCNAME} $*
 
-   if has ${EAPI:-0} 0 1 2 && ! use prefix ; then
-   ED="${D}"
-   EPREFIX=""
-   fi
-
local platform="$(get_system_arch)"
local env_file="${ED}${JAVA_VM_CONFIG_DIR}/${VMHANDLE}"
local old_env_file="${ED}/etc/env.d/java/20${P}"
@@ -255,11 +252,6 @@ java-vm_set-pax-markings() {
 # @CODE
 
 java-vm_revdep-mask() {
-   if has ${EAPI:-0} 0 1 2 && ! use prefix; then
-   ED="${D}"
-   EPREFIX=
-   fi
-
local VMROOT="${1-"${EPREFIX}"/opt/${P}}"
 
dodir /etc/revdep-rebuild/
@@ -281,8 +273,6 @@ java-vm_sandbox-predict() {
debug-print-function ${FUNCNAME} "$*"
[[ -z "${1}" ]] && die "${FUNCNAME} takes at least one argument"
 
-   has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}"
-
local path path_arr=("$@")
# subshell this to prevent IFS bleeding out dependant on bash version.
# could use local, which *should* work, but that requires a lot of 
testing.



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

2016-06-29 Thread Patrick McLean
commit: 533bd6dac8e8c9fcec94bfad564ea6fb893b7db8
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Jun 29 20:28:47 2016 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jun 29 20:29:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=533bd6da

media-gfx/inkscape: Revision bump, port to EAPI=6, add patch to fix compilation 
with glibmm-2.48 (bug #587098)

Package-Manager: portage-2.3.0

 .../files/inkscape-0.91-fix-gtkmm-2.48.patch   |  63 
 media-gfx/inkscape/inkscape-0.91-r3.ebuild | 177 +
 2 files changed, 240 insertions(+)

diff --git a/media-gfx/inkscape/files/inkscape-0.91-fix-gtkmm-2.48.patch 
b/media-gfx/inkscape/files/inkscape-0.91-fix-gtkmm-2.48.patch
new file mode 100644
index 000..f9c0660
--- /dev/null
+++ b/media-gfx/inkscape/files/inkscape-0.91-fix-gtkmm-2.48.patch
@@ -0,0 +1,63 @@
+--- a/src/ui/clipboard.cpp 2016-04-02 15:15:43 +
 b/src/ui/clipboard.cpp 2016-04-07 16:30:32 +
+@@ -146,8 +146,6 @@
+ void _setClipboardColor(guint32);
+ void _userWarn(SPDesktop *, char const *);
+ 
+-void _inkscape_wait_for_targets(std::list &);
+-
+ // private properites
+ SPDocument *_clipboardSPDoc; ///< Document that stores the clipboard 
until someone requests it
+ Inkscape::XML::Node *_defs; ///< Reference to the clipboard document's 
defs node
+@@ -1302,9 +1300,7 @@
+  */
+ Glib::ustring ClipboardManagerImpl::_getBestTarget()
+ {
+-// GTKmm's wait_for_targets() is broken, see the comment in 
_inkscape_wait_for_targets()
+-std::list targets; // = _clipboard->wait_for_targets();
+-_inkscape_wait_for_targets(targets);
++std::list targets = _clipboard->wait_for_targets();
+ 
+ // clipboard target debugging snippet
+ /*
+@@ -1456,39 +1452,6 @@
+ desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, msg);
+ }
+ 
+-
+-// GTKMM's clipboard::wait_for_targets is buggy and might return bogus, see
+-//
+-// https://bugs.launchpad.net/inkscape/+bug/296778
+-// http://mail.gnome.org/archives/gtk-devel-list/2009-June/msg00062.html
+-//
+-// for details. Until this has been fixed upstream we will use our own 
implementation
+-// of this method, as copied from /gtkmm-2.16.0/gtk/gtkmm/clipboard.cc.
+-void 
ClipboardManagerImpl::_inkscape_wait_for_targets(std::list 
)
+-{
+-//Get a newly-allocated array of atoms:
+-GdkAtom* targets = NULL;
+-gint n_targets = 0;
+-gboolean test = gtk_clipboard_wait_for_targets( 
gtk_clipboard_get(GDK_SELECTION_CLIPBOARD), , _targets );
+-if (!test || (targets == NULL)) {
+-return;
+-}
+-
+-//Add the targets to the C++ container:
+-for (int i = 0; i < n_targets; i++)
+-{
+-//Convert the atom to a string:
+-gchar* const atom_name = gdk_atom_name(targets[i]);
+-
+-Glib::ustring target;
+-if (atom_name) {
+-target = Glib::ScopedPtr(atom_name).get(); //This frees the 
gchar*.
+-}
+-
+-listTargets.push_back(target);
+-}
+-}
+-
+ /* ###
+   ClipboardManager class
+### */
+

diff --git a/media-gfx/inkscape/inkscape-0.91-r3.ebuild 
b/media-gfx/inkscape/inkscape-0.91-r3.ebuild
new file mode 100644
index 000..e66b5ee
--- /dev/null
+++ b/media-gfx/inkscape/inkscape-0.91-r3.ebuild
@@ -0,0 +1,177 @@
+# 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="xml"
+
+inherit autotools eutils flag-o-matic gnome2-utils fdo-mime toolchain-funcs 
python-single-r1
+
+MY_P=${P/_/}
+
+DESCRIPTION="A SVG based generic vector-drawing program"
+HOMEPAGE="http://www.inkscape.org/;
+SRC_URI="https://inkscape.global.ssl.fastly.net/media/resources/file/${P}.tar.bz2;
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~sparc-solaris 
~x86-solaris"
+IUSE="cdr dia dbus exif gnome imagemagick openmp postscript inkjar jpeg latex"
+IUSE+=" lcms nls spell static-libs visio wpg"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+WPG_DEPS="
+   || (
+   ( app-text/libwpg:0.3 dev-libs/librevenge )
+   ( app-text/libwpd:0.9 app-text/libwpg:0.2 )
+   )
+"
+COMMON_DEPEND="
+   ${PYTHON_DEPS}
+   >=app-text/poppler-0.26.0:=[cairo]
+   >=dev-cpp/glibmm-2.48
+   >=dev-cpp/gtkmm-2.18.0:2.4
+   >=dev-cpp/cairomm-1.9.8
+   >=dev-libs/boehm-gc-6.4
+   >=dev-libs/glib-2.28
+   >=dev-libs/libsigc++-2.0.12
+   >=dev-libs/libxml2-2.6.20
+   >=dev-libs/libxslt-1.0.15
+   dev-libs/popt
+   dev-python/lxml[${PYTHON_USEDEP}]
+   media-libs/fontconfig
+   media-libs/freetype:2
+   media-libs/libpng:0
+   sci-libs/gsl:=
+   x11-libs/libX11
+   >=x11-libs/gtk+-2.10.7:2
+   >=x11-libs/pango-1.24
+   cdr? (
+   

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

2016-06-29 Thread Paweł Hajdan
commit: 2d587c01e3a0b8def67e393e1a9288561aaa94c8
Author: Pawel Hajdan, Jr  gentoo  org>
AuthorDate: Wed Jun 29 22:22:10 2016 +
Commit: Paweł Hajdan  gentoo  org>
CommitDate: Wed Jun 29 22:22:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d587c01

www-client/chromium: require USE=gnome for GN build; for bug #587366 by floppym

Package-Manager: portage-2.2.28

 www-client/chromium/chromium-53.0.2774.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/chromium/chromium-53.0.2774.3.ebuild 
b/www-client/chromium/chromium-53.0.2774.3.ebuild
index 4c367ef..eeacb63 100644
--- a/www-client/chromium/chromium-53.0.2774.3.ebuild
+++ b/www-client/chromium/chromium-53.0.2774.3.ebuild
@@ -22,7 +22,7 @@ IUSE="cups gn gnome gnome-keyring gtk3 +hangouts kerberos 
neon pic +proprietary-
 RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
 
 # TODO: bootstrapped gn binary hangs when using tcmalloc with portage's 
sandbox.
-REQUIRED_USE="gn? ( gnome-keyring !tcmalloc )"
+REQUIRED_USE="gn? ( gnome gnome-keyring !tcmalloc )"
 
 # Native Client binaries are compiled with different set of flags, bug #452066.
 QA_FLAGS_IGNORED=".*\.nexe"



[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/, www-client/chromium/files/

2016-06-29 Thread Paweł Hajdan
commit: 7d6a77bc7c1a786abd4659f920990b1a9df22671
Author: Pawel Hajdan, Jr  gentoo  org>
AuthorDate: Wed Jun 29 22:18:24 2016 +
Commit: Paweł Hajdan  gentoo  org>
CommitDate: Wed Jun 29 22:18:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d6a77bc

www-client/chromium: fix build with bundled ffmpeg

This fixes bug #586544 reported by DJ Dunn

Backported upstream patch found by Kamil Kamiński

Package-Manager: portage-2.2.28

 www-client/chromium/chromium-52.0.2743.49.ebuild   |  1 +
 www-client/chromium/chromium-53.0.2774.3.ebuild|  1 +
 .../files/chromium-ffmpeg-license-r0.patch | 44 ++
 3 files changed, 46 insertions(+)

diff --git a/www-client/chromium/chromium-52.0.2743.49.ebuild 
b/www-client/chromium/chromium-52.0.2743.49.ebuild
index 1ac904b..695a89a 100644
--- a/www-client/chromium/chromium-52.0.2743.49.ebuild
+++ b/www-client/chromium/chromium-52.0.2743.49.ebuild
@@ -195,6 +195,7 @@ src_prepare() {
epatch "${FILESDIR}/${PN}-pdfium-r0.patch"
epatch "${FILESDIR}/${PN}-system-zlib-r0.patch"
epatch "${FILESDIR}/${PN}-linker-warnings-r0.patch"
+   epatch "${FILESDIR}/${PN}-ffmpeg-license-r0.patch"
 
epatch_user
 

diff --git a/www-client/chromium/chromium-53.0.2774.3.ebuild 
b/www-client/chromium/chromium-53.0.2774.3.ebuild
index ac42054..4c367ef 100644
--- a/www-client/chromium/chromium-53.0.2774.3.ebuild
+++ b/www-client/chromium/chromium-53.0.2774.3.ebuild
@@ -192,6 +192,7 @@ src_prepare() {
epatch "${FILESDIR}/${PN}-last-commit-position-r0.patch"
epatch "${FILESDIR}/${PN}-system-zlib-r0.patch"
epatch "${FILESDIR}/${PN}-linker-warnings-r0.patch"
+   epatch "${FILESDIR}/${PN}-ffmpeg-license-r0.patch"
 
epatch_user
 

diff --git a/www-client/chromium/files/chromium-ffmpeg-license-r0.patch 
b/www-client/chromium/files/chromium-ffmpeg-license-r0.patch
new file mode 100644
index 000..8e44cbd
--- /dev/null
+++ b/www-client/chromium/files/chromium-ffmpeg-license-r0.patch
@@ -0,0 +1,44 @@
+From 3c9d5afe45bf1c4656b8f630525433f29017cd08 Mon Sep 17 00:00:00 2001
+From: Chris Cunningham 
+Date: Tue, 21 Jun 2016 10:52:45 -0700
+Subject: [PATCH] Avoid ffmpeg licences/credits checking generated autorename_ 
files.
+
+We generated these renames as a fix for http://crbug.com/495833. The
+generated rename contains no license or credits info and should be
+skipped to avoid confusing license/credits scripts. Care must be
+taken to not also skip the underlying include file from upstream ffmpeg.
+
+Found by: Zoltan Kuscsik
+
+BUG=495833
+
+Change-Id: I3359f4de0281b5f057d4b109ab2a4f31895b5cb1
+---
+
+diff --git a/chromium/scripts/generate_gyp.py 
b/chromium/scripts/generate_gyp.py
+index c3fd3c0..94c2aad 100755
+--- a/third_party/ffmpeg/chromium/scripts/generate_gyp.py
 b/third_party/ffmpeg/chromium/scripts/generate_gyp.py
+@@ -790,6 +790,9 @@
+ # Prefix added to renamed files as part of
+ RENAME_PREFIX = 'autorename'
+ 
++# Match an absolute path to a generated auotorename_ file.
++RENAME_REGEX = re.compile('.*' + RENAME_PREFIX + '_.+');
++
+ # Content for the rename file. #includes the original file to ensure the two
+ # files stay in sync.
+ RENAME_CONTENT = """// File automatically generated. See crbug.com/495833.
+@@ -1020,6 +1023,12 @@
+ for source in source_set.sources:
+   GetIncludedSources(source, source_dir, sources_to_check)
+ 
++  # Remove autorename_ files now that we've grabbed their underlying includes.
++  # We generated autorename_ files above and should not consider them for
++  # licensing or credits.
++  sources_to_check = filter(lambda s: not RENAME_REGEX.search(s),
++sources_to_check)
++
+   if not CheckLicensesForStaticLinking(sources_to_check, source_dir,
+options.print_licenses):
+ exit('GENERATE FAILED: invalid licenses detected.')



[gentoo-commits] repo/gentoo:master commit in: games-emulation/dosbox/files/, games-emulation/dosbox/

2016-06-29 Thread William Hubbs
commit: 5edb412a63031c0372093d5e5fb038e5da4f52f1
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 29 19:41:26 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 29 20:05:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5edb412a

games-emulation/dosbox: [qa]: create a snapshot release to fix multiple bugs

This snapshot release fixes the following bugs:

https://bugs.gentoo.org/show_bug.cgi?id=449060
https://bugs.gentoo.org/show_bug.cgi?id=586650
https://bugs.gentoo.org/show_bug.cgi?id=587382

Package-Manager: portage-2.2.28

 .../{dosbox-3989.ebuild => dosbox-0.74_p20160629.ebuild}   | 14 +-
 games-emulation/dosbox/files/dosbox-0.74-gcc46.patch   |  4 ++--
 2 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/games-emulation/dosbox/dosbox-3989.ebuild 
b/games-emulation/dosbox/dosbox-0.74_p20160629.ebuild
similarity index 86%
rename from games-emulation/dosbox/dosbox-3989.ebuild
rename to games-emulation/dosbox/dosbox-0.74_p20160629.ebuild
index 50488ee..f638a1e 100644
--- a/games-emulation/dosbox/dosbox-3989.ebuild
+++ b/games-emulation/dosbox/dosbox-0.74_p20160629.ebuild
@@ -2,8 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
-inherit autotools eutils games
+EAPI=6
+inherit autotools eutils
 
 PATCH=3989
 DESCRIPTION="DOS emulator"
@@ -12,7 +12,7 @@ 
SRC_URI="mirror://gentoo/dosbox-code-0-${PATCH}-dosbox-trunk.zip"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
 IUSE="alsa debug hardened opengl"
 
 RDEPEND="alsa? ( media-libs/alsa-lib )
@@ -27,12 +27,17 @@ DEPEND="${RDEPEND}
 
 S=${WORKDIR}/${PN}-code-0-${PATCH}-dosbox-trunk
 
+PATCHES=(
+"${FILESDIR}"/dosbox-0.74-gcc46.patch
+)
+
 src_prepare() {
+   default
eautoreconf
 }
 
 src_configure() {
-   egamesconf \
+   econf \
$(use_enable alsa alsa-midi) \
$(use_enable !hardened dynamic-core) \
$(use_enable !hardened dynamic-x86) \
@@ -44,5 +49,4 @@ src_install() {
default
make_desktop_entry dosbox DOSBox /usr/share/pixmaps/dosbox.ico
doicon src/dosbox.ico
-   prepgamesdirs
 }

diff --git a/games-emulation/dosbox/files/dosbox-0.74-gcc46.patch 
b/games-emulation/dosbox/files/dosbox-0.74-gcc46.patch
index 16811d4..98b4508 100644
--- a/games-emulation/dosbox/files/dosbox-0.74-gcc46.patch
+++ b/games-emulation/dosbox/files/dosbox-0.74-gcc46.patch
@@ -1,5 +1,5 @@
 include/dos_inc.h.old  2011-04-28 08:46:04.505011354 +0200
-+++ include/dos_inc.h  2011-04-28 08:46:27.104408178 +0200
+--- a/include/dos_inc.h2011-04-28 08:46:04.505011354 +0200
 b/include/dos_inc.h2011-04-28 08:46:27.104408178 +0200
 @@ -21,6 +21,7 @@
  #ifndef DOSBOX_DOS_INC_H
  #define DOSBOX_DOS_INC_H



[gentoo-commits] repo/gentoo:master commit in: dev-php/xhprof/

2016-06-29 Thread Brian Evans
commit: af996ffeb5302f811600832d32b09cc7dcc8692a
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jun 29 20:06:38 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun 29 20:06:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af996ffe

dev-php/xhprof: Version bump to upstream VCS snapshot

This shapshot fixes some bugs but has yet to be released into a new version.
All tests pass instead of failing on 5.5 and 5.6 with the release

Package-Manager: portage-2.3.0

 dev-php/xhprof/Manifest  |  1 +
 dev-php/xhprof/xhprof-0.9.4_p20150226.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-php/xhprof/Manifest b/dev-php/xhprof/Manifest
index 0dd9ffd..d04f4c2 100644
--- a/dev-php/xhprof/Manifest
+++ b/dev-php/xhprof/Manifest
@@ -1 +1,2 @@
 DIST xhprof-0.9.4.tgz 842077 SHA256 
002a2d4a825d16aeb3017c59f94d8c5e5d06611dd6197acd2f07fce197d3b8f8 SHA512 
25de7b69cef9b5b468eba1b4151e53f721c1b1437eb5a63a99da996857b77052513cf13c27d4f9034e8eff558b9bd8941ce8bd7ce824087636f5e000f3a647ff
 WHIRLPOOL 
670a36c54850e8307e032fefa732d5fdb91692de45f55ab47495286b2fa0bd5aacc7fc4ba7070d4b2703536c34e1ef334f51935f3136034704f749a68ba61ade
+DIST xhprof-0.9.4_p20150226.tar.gz 855540 SHA256 
c719e8208511fec2e13d2988a62523c47c370bb8f7a45a270059cc5b9090d0bb SHA512 
6f0f4f76b793746cb37b623b891956c1abe7c08cb56fb0edfa31b7d7a59ccd49b8c3401f067a1f203e188843290afb9f9913729b59026b43e7cf026010ef7fb7
 WHIRLPOOL 
1b6b5b87b81ce9456102dd71b1d6149c7805c6ca2b25024eadf9b2048331603e725743253b6f4034eee876062190c4ba7cf8cd9171faadd22f3f591677bdb264

diff --git a/dev-php/xhprof/xhprof-0.9.4_p20150226.ebuild 
b/dev-php/xhprof/xhprof-0.9.4_p20150226.ebuild
new file mode 100644
index 000..16b6432
--- /dev/null
+++ b/dev-php/xhprof/xhprof-0.9.4_p20150226.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+MY_PV="ff8b3892d0cfc53e744631ff5c6b34f13421edce"
+PHP_EXT_S="${WORKDIR}/${PN}-${MY_PV}/extension"
+
+USE_PHP="php5-5 php5-6"
+
+inherit php-ext-pecl-r2
+
+SRC_URI="https://github.com/phacility/xhprof/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+
+HOMEPAGE="http://pecl.php.net/package/xhprof;
+DESCRIPTION="A Hierarchical Profiler for PHP"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""



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

2016-06-29 Thread Michael Palimaka
commit: 5394d16915978bbac975092ead9056db9d0a5b0f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 19:26:06 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 19:26:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5394d169

kde-misc/synaptiks: remove unused dependency

Package-Manager: portage-2.3.0

 kde-misc/synaptiks/synaptiks-0.8.1-r4.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-misc/synaptiks/synaptiks-0.8.1-r4.ebuild 
b/kde-misc/synaptiks/synaptiks-0.8.1-r4.ebuild
index 645c7cb..fcdd937 100644
--- a/kde-misc/synaptiks/synaptiks-0.8.1-r4.ebuild
+++ b/kde-misc/synaptiks/synaptiks-0.8.1-r4.ebuild
@@ -22,7 +22,6 @@ RDEPEND="
>=dev-python/pyudev-0.8[pyqt4,${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
$(add_kdebase_dep pykde4 "${PYTHON_USEDEP}" )
-   $(add_kdeapps_dep kde-dev-scripts)
>=x11-drivers/xf86-input-synaptics-1.3
>=x11-libs/libXi-1.4
x11-libs/libXtst



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

2016-06-29 Thread Michał Górny
commit: 6e9d123f36abfc590c770900a3d450e7a24bb171
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 19:15:11 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 19:17:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e9d123f

dev-ml/extlib: Drop non-camlp4 support, #586910

 dev-ml/extlib/{extlib-1.6.1.ebuild => extlib-1.6.1-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/extlib/extlib-1.6.1.ebuild 
b/dev-ml/extlib/extlib-1.6.1-r1.ebuild
similarity index 88%
rename from dev-ml/extlib/extlib-1.6.1.ebuild
rename to dev-ml/extlib/extlib-1.6.1-r1.ebuild
index 9ed1005..b7c0f30 100644
--- a/dev-ml/extlib/extlib-1.6.1.ebuild
+++ b/dev-ml/extlib/extlib-1.6.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ 
SRC_URI="https://ocaml-extlib.googlecode.com/files/${P}.tar.gz;
 LICENSE="LGPL-2.1"
 DEPEND="
>=dev-lang/ocaml-3.10.2:=[ocamlopt?]
-   || ( dev-ml/camlp4:= 

[gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/

2016-06-29 Thread Michael Palimaka
commit: f27065c8b250ca8093f6cf9ec5c7d95ddc5815ee
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 18:41:20 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 19:13:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f27065c8

sci-visualization/kst: metadata whitespace

Package-Manager: portage-2.3.0

 sci-visualization/kst/metadata.xml | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/sci-visualization/kst/metadata.xml 
b/sci-visualization/kst/metadata.xml
index 57fbf96..9f73ea7 100644
--- a/sci-visualization/kst/metadata.xml
+++ b/sci-visualization/kst/metadata.xml
@@ -1,12 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-q...@gentoo.org
-Gentoo Qt Project
-  
-  
-kst
-https://bugs.kde.org/
-  
+   
+   q...@gentoo.org
+   Gentoo Qt Project
+   
+   
+   kst
+   https://bugs.kde.org/
+   
 



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

2016-06-29 Thread Michael Palimaka
commit: 27072fc59258d271b3781569c29e8313ab12838f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 19:13:24 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 19:13:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27072fc5

media-sound/kwave: any slot of kde-apps/poxml is acceptable

Package-Manager: portage-2.3.0

 media-sound/kwave/kwave-0.8.10.ebuild | 4 ++--
 media-sound/kwave/kwave-0.8.12.ebuild | 4 ++--
 media-sound/kwave/kwave-0.8.99.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-sound/kwave/kwave-0.8.10.ebuild 
b/media-sound/kwave/kwave-0.8.10.ebuild
index ceabb28..4df1812 100644
--- a/media-sound/kwave/kwave-0.8.10.ebuild
+++ b/media-sound/kwave/kwave-0.8.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -42,7 +42,7 @@ RDEPEND="
)
 "
 DEPEND="${RDEPEND}
-   $(add_kdeapps_dep poxml)
+   kde-apps/poxml:*
|| ( media-gfx/imagemagick[png,svg] 
media-gfx/graphicsmagick[imagemagick,png,svg] )
 "
 

diff --git a/media-sound/kwave/kwave-0.8.12.ebuild 
b/media-sound/kwave/kwave-0.8.12.ebuild
index 6dc0d5a..7f66d15 100644
--- a/media-sound/kwave/kwave-0.8.12.ebuild
+++ b/media-sound/kwave/kwave-0.8.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -42,7 +42,7 @@ RDEPEND="
)
 "
 DEPEND="${RDEPEND}
-   $(add_kdeapps_dep poxml)
+   kde-apps/poxml:*
|| ( media-gfx/imagemagick[png,svg] 
media-gfx/graphicsmagick[imagemagick,png,svg] )
 "
 

diff --git a/media-sound/kwave/kwave-0.8.99.ebuild 
b/media-sound/kwave/kwave-0.8.99.ebuild
index a2b42cc..4154fba 100644
--- a/media-sound/kwave/kwave-0.8.99.ebuild
+++ b/media-sound/kwave/kwave-0.8.99.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -42,7 +42,7 @@ RDEPEND="
)
 "
 DEPEND="${RDEPEND}
-   $(add_kdeapps_dep poxml)
+   kde-apps/poxml:*
|| ( media-gfx/imagemagick[png,svg] 
media-gfx/graphicsmagick[imagemagick,png,svg] )
 "
 



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

2016-06-29 Thread Michael Palimaka
commit: c6611aae462872072cecfaf02cfbc4ed91eb73bb
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 18:53:03 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 18:56:49 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c6611aae

kde-apps/step: add sci-libs/gsl subslot operator

Package-Manager: portage-2.3.0

 kde-apps/step/step-16.04.49..ebuild | 2 +-
 kde-apps/step/step-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/step/step-16.04.49..ebuild 
b/kde-apps/step/step-16.04.49..ebuild
index 3c54851..29b0dd2 100644
--- a/kde-apps/step/step-16.04.49..ebuild
+++ b/kde-apps/step/step-16.04.49..ebuild
@@ -40,7 +40,7 @@ DEPEND="
$(add_qt_dep qtxml)
=dev-cpp/eigen-3.2*:3
sci-libs/cln
-   gsl? ( >=sci-libs/gsl-1.9-r1 )
+   gsl? ( sci-libs/gsl:= )
qalculate? ( >=sci-libs/libqalculate-0.9.5 )
 "
 RDEPEND="${DEPEND}"

diff --git a/kde-apps/step/step-.ebuild b/kde-apps/step/step-.ebuild
index 3c54851..29b0dd2 100644
--- a/kde-apps/step/step-.ebuild
+++ b/kde-apps/step/step-.ebuild
@@ -40,7 +40,7 @@ DEPEND="
$(add_qt_dep qtxml)
=dev-cpp/eigen-3.2*:3
sci-libs/cln
-   gsl? ( >=sci-libs/gsl-1.9-r1 )
+   gsl? ( sci-libs/gsl:= )
qalculate? ( >=sci-libs/libqalculate-0.9.5 )
 "
 RDEPEND="${DEPEND}"



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

2016-06-29 Thread Patrick Lauer
commit: 06fc005cccb4ae258d5b6b0d2183b8446c66cdb6
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 18:24:34 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 18:49:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06fc005c

dev-python/pytest-timeout: Bump

Package-Manager: portage-2.3.0

 dev-python/pytest-timeout/Manifest |  1 +
 .../pytest-timeout/pytest-timeout-1.0.0.ebuild | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/pytest-timeout/Manifest 
b/dev-python/pytest-timeout/Manifest
index 7717c07..115d29c 100644
--- a/dev-python/pytest-timeout/Manifest
+++ b/dev-python/pytest-timeout/Manifest
@@ -1 +1,2 @@
 DIST pytest-timeout-0.4.tar.gz 10204 SHA256 
d5900aaa94af5cb2d06ed806b1e636255e65a8a26eccecccd2b9a9d6123d50d5 SHA512 
07031d64012e683064cd0bf2cef1d7209f02085e07dd8c7dfc704270d1e6ecf9679c639d529586c7d52d9425244a05ac362a7cd0092ca1f162a54539f58286e4
 WHIRLPOOL 
b4befc271e378246d3e9fdd23a931fa400a981f79e90b0d44bbd533bea2be976fb4fcf73f6aa552d129e6945d82880bdf7bbf08c653c787913a8b782be54ab51
+DIST pytest-timeout-1.0.0.tar.gz 11125 SHA256 
1465096be73e16df1e15d1b1453692428a7e15b997d756bc565aee0d12798ce1 SHA512 
67a42562dfa7175c213ae50a7e152f04406f01a4821d69c9e95637a06a2574de8ce2f147030ff1417cc99eb7d518d7c59ac72ff2671dc3e7e813962da91e7591
 WHIRLPOOL 
cc5f915b9a875d2c5886d6eee1329deb5c86e853cf65f3964364278ad6f6271cf05fbbe37960d14019d99dced0bfd5c84726f692c43930e51331b2e750604cba

diff --git a/dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild 
b/dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild
new file mode 100644
index 000..10fb531
--- /dev/null
+++ b/dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="py.test plugin to abort hanging tests"
+HOMEPAGE="https://pypi.python.org/pypi/pytest-timeout;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="dev-python/pytest"
+DEPEND="${RDEPEND}"
+
+python_test() {
+   ${EPYTHON} test_pytest_timeout.py || die
+}



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/

2016-06-29 Thread Johannes Huber
commit: 5cf237287737036cbef2c3f6859d20abd4074b40
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jun 29 18:49:03 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jun 29 18:50:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cf23728

kde-apps/kde4-l10n: Restore needed file

Gentoo-bug: 587532

Package-Manager: portage-2.3.0

 .../kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs  | 43 ++
 1 file changed, 43 insertions(+)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs
new file mode 100644
index 000..9563950
--- /dev/null
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs
@@ -0,0 +1,43 @@
+# Disable any subdirectories listed here. Comments are ignored
+# First argument: parent directory
+# Second argument: which subdirectory to disable in CMakeLists.txt
+# kde-l10n 5
+data/kdeedu khangman
+docs/applications kate
+docs/applications konsole
+docs/applications kwrite
+docs/kde-runtime glossary
+docs/kde-runtime khelpcenter
+docs/kdeedu kig
+docs/kdeedu parley
+docs/kdeedu step
+docs/kdegames bomber
+docs/kdegraphics gwenview
+docs/kdegraphics kruler
+docs/kdesdk kapptemplate
+docs/kdesdk okteta
+docs/kdesdk umbrello
+docs/kdeutils kwalletmanager
+scripts kdeedu
+# Plasma 5
+docs kde-workspace
+docs/kde-runtime fundamentals
+docs/kde-runtime kdesu
+docs/kde-runtime khelpcenter
+docs/kde-runtime knetattach
+docs/kde-runtime onlinehelp
+docs/kde-runtime/kcontrol bookmarks
+docs/kde-runtime/kcontrol cookies
+docs/kde-runtime/kcontrol ebrowsing
+docs/kde-runtime/kcontrol emoticons
+docs/kde-runtime/kcontrol icons
+docs/kde-runtime/kcontrol kcmcgi
+docs/kde-runtime/kcontrol nepomuk
+docs/kde-runtime/kcontrol smb
+docs/kde-runtime/kcontrol trash
+docs/kde-runtime/kcontrol useragent
+messages kde-workspace
+messages kdeplasma-addons
+# kdepim-l10n 5
+docs kdepim
+docs kdepimlibs



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

2016-06-29 Thread Patrick Lauer
commit: bfc4512a8e1a1872bbc674a6a4f675b62cba280f
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 18:48:53 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 18:49:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfc4512a

dev-python/logbook: Bump

Package-Manager: portage-2.3.0

 dev-python/logbook/Manifest |  1 +
 dev-python/logbook/logbook-1.0.0.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-python/logbook/Manifest b/dev-python/logbook/Manifest
index 59df86c..b713263 100644
--- a/dev-python/logbook/Manifest
+++ b/dev-python/logbook/Manifest
@@ -2,3 +2,4 @@ DIST logbook-0.10.0.tar.gz 107284 SHA256 
ff227d9a48dcd539f25bdab26d36dd2ba1459bc
 DIST logbook-0.12.3.tar.gz 115932 SHA256 
2f3a974d05f7e414bab529cbaa5a7b0faba661516df2e978995247066da86d23 SHA512 
0b4242ec476b8e6bbcfaf6db75848e3d36b343c62a83e338a6d3fe7ec8029a0199a7dec783cf27cc2a5a4586a8b9ba938c939dc6121079525fbf608e34eefb7f
 WHIRLPOOL 
877b25d9116af4e7752841abf17f14db830bc0d3d6fff87a552e04c6dcb0e9d80871e2853a3e259fb61491952ebfd46d31b406baab97dee8bbd76634fee9cdc2
 DIST logbook-0.12.5.tar.gz 115937 SHA256 
87000862d9151891c24e64b38f10acdc1682408ee9f98407bfea65b1ac5eec10 SHA512 
48f9f64c1c581e54c22e459f3d3e0123f2ee537e3f126f88593bc2ce0255d42712de230ab37a215afb53d047d0a1708c8eb980776014166856e873ddae8ebf18
 WHIRLPOOL 
af020986eb85603438b3073d374c29807fb0f42464f90e956f345fb6c44cb5e83885efc690a1710bf923d36040cd4d4ea9fa2d2531325cf8c99171e4babfc5b6
 DIST logbook-0.9.1.tar.gz 106615 SHA256 
e2f49e922c7836a58418b1cb2680e71492f45150cb968afced9f6a98222e3524 SHA512 
d136dd5a7219a23a50db857919d794e7b721cc629443ac2bf92374aef68889d8a7146886fc4484c6d0dea56ec5c1c1ccca3f0b20310c2e12dba9d40dcac9c188
 WHIRLPOOL 
adfb8bd28565ec97904c63631c55ee17613fdf2259d039baa0351df870bfa1658ebc52c8dbf69c8b94b0230577f287b215324d95b186cf38cc4d68bb1040d502
+DIST logbook-1.0.0.tar.gz 365307 SHA256 
b09d45ae8aa2baf450347fd42dd74942b7fd726af7a336fbc089bb72e4fc0e71 SHA512 
0ff2348cc04155d13e911bb7f080d2621e2c46e827c1823e6a4f977d39569271001f64c84ca24fcaf269209c15b88fd50c28c2fcf87312761dcf16ab414abc1d
 WHIRLPOOL 
9d76d229462907218d3b922a02739db58e422be909d56c67a171f4d78458380417f3c7f21d05426c4864753cbf2fb96aab77812dec96f4114035e607445a4898

diff --git a/dev-python/logbook/logbook-1.0.0.ebuild 
b/dev-python/logbook/logbook-1.0.0.ebuild
new file mode 100644
index 000..774b6e7
--- /dev/null
+++ b/dev-python/logbook/logbook-1.0.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="A logging replacement for Python"
+HOMEPAGE="http://packages.python.org/Logbook/ 
https://pypi.python.org/pypi/Logbook;
+SRC_URI="https://github.com/mitsuhiko/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+DISTUTILS_IN_SOURCE_BUILD=1
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+   doc? ( >=dev-python/sphinx-1.1.3-r3[${PYTHON_USEDEP}] )"
+RDEPEND="dev-python/redis-py[${PYTHON_USEDEP}]"
+
+PATCHES=( "${FILESDIR}"/${PN}-0.4.2-objectsinv.patch )
+
+python_prepare_all() {
+   # Delete test file requiring local connection to redis server
+   rm tests/test_queues.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   py.test tests || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( docs/_build/html/. )
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/sqliteman/files/, dev-db/sqliteman/

2016-06-29 Thread Michael Palimaka
commit: 641226130f6ee8b1e390db562276c6f9045193ea
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 18:25:13 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 18:27:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64122613

dev-db/sqliteman: add patch to solve build failure on uclibc caused by 
underlinking

Gentoo-bug: 587076

Package-Manager: portage-2.3.0

 dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch | 19 +++
 dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild|  3 ++-
 2 files changed, 21 insertions(+), 1 deletion(-)

diff --git a/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch 
b/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch
new file mode 100644
index 000..a9bf4f4
--- /dev/null
+++ b/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch
@@ -0,0 +1,19 @@
+Resolves underlinking issue causing build failure on uclibc.
+
+Author: René Rhéaume 
+Gentoo-bug: 587076
+
+--- a/sqliteman/CMakeLists.txt
 b/sqliteman/CMakeLists.txt
+@@ -183,7 +183,10 @@ IF (WIN32)
+ # don't use console subsystem
+ IF (MINGW)
+ TARGET_LINK_LIBRARIES(${EXE_NAME} "-mwindows")
+-  ENDIF (MINGW)
++ENDIF (MINGW)
++ELSE (WIN32)
++  FIND_PACKAGE(Threads)
++  TARGET_LINK_LIBRARIES(${EXE_NAME} ${CMAKE_THREAD_LIBS_INIT})
+ ENDIF (WIN32)
+ 
+ 

diff --git a/dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild 
b/dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild
index edadcb7..e10a0ca 100644
--- a/dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild
+++ b/dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -23,6 +23,7 @@ RDEPEND="
 DEPEND="${RDEPEND}"
 
 DOCS=( AUTHORS README )
+PATCHES=( "${FILESDIR}/${P}-lpthread.patch" )
 
 src_prepare() {
# remove bundled lib



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

2016-06-29 Thread Patrick Lauer
commit: 39703238d829b5ac6b80d3049f3614c25595823f
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 17:57:17 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 18:18:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39703238

dev-python/python-engineio: Bump

Package-Manager: portage-2.3.0

 dev-python/python-engineio/Manifest|  1 +
 .../python-engineio/python-engineio-0.9.1.ebuild   | 28 ++
 2 files changed, 29 insertions(+)

diff --git a/dev-python/python-engineio/Manifest 
b/dev-python/python-engineio/Manifest
index 74a433a..75b3b05 100644
--- a/dev-python/python-engineio/Manifest
+++ b/dev-python/python-engineio/Manifest
@@ -1,3 +1,4 @@
 DIST python-engineio-0.8.1.tar.gz 11608 SHA256 
82973bcf1c32df594bb78c527d9406f301691ecc5ab93c38fc318c1b0142b9fd SHA512 
71a6002753f77440fe118004e7ace11eeb348b2d63274e81fe66e8eace899b8b3f1b8b130f86cedb0d78c995f1f83053ab7811e68fbb6e977072d9491a35b6b7
 WHIRLPOOL 
c2a62848b2a83adb5eea255c60c77d6355053a360d885dacfe117a104974987c9379236c62eed6f496e115c8181428a09ccd51720438b4110902b43c06778450
 DIST python-engineio-0.8.6.tar.gz 11855 SHA256 
cdb7381d6ba28d13e02cec61f3d1b254341b784452c629fba524784c0b774363 SHA512 
4fd4e492655340798ca7c34127d26d0fcba864b95e3ab21c423867c21ee7d37dd3b5f564bd3013cc0f9f235a57b5dd4bf705648e21cf07fbe417e4fa69e632f2
 WHIRLPOOL 
df96a513112a21b3dbc4262f156d4332ca71547d0882a0cc473a128a8c3a9ca1dd5a29b19e2b56f5b819fdc8ea415b8f092f974fd2d35f963e321dc2afdd0375
 DIST python-engineio-0.8.8.tar.gz 11792 SHA256 
1dbe9ad8ca4b36b92d6c2f9c5c4a3ddc25e70858d39e90b9e5e1cb337f0c0924 SHA512 
b411565b5144039e680ecb1ebb26c206f8b18f3fe10fd3e62efde5540fb84e80c9085bb9339ef214791921f3f62c46ad75379a0472430db2316a2388b0ecd398
 WHIRLPOOL 
638ebb4323c5e5c4e8854fdecf6cc187af744f5ba4a895f4d15c6874510512575d981d799660aa016d2638c7a5e5761340890ce0ecda759d7da592f4a349efc0
+DIST python-engineio-0.9.1.tar.gz 11812 SHA256 
30af19dfe0dba55ba080958d2e251a3bb528c2502b83b255b46c4d90fa1db650 SHA512 
69d69e6eb8a577ccf3bdd960c6e32c43111a174458291fe5254028e70f5898644896db67f4884a0e25ecdf20de69521d320787bf75917fffd508d36b11772f01
 WHIRLPOOL 
a13bd82e6d09572466d16fd1771e8e6f13289304a2979e0577e6b37310c9e86d3f122a62e8cca39db289e87def98502ee359778845de39edf264efdf6bb559ea

diff --git a/dev-python/python-engineio/python-engineio-0.9.1.ebuild 
b/dev-python/python-engineio/python-engineio-0.9.1.ebuild
new file mode 100644
index 000..57a324c
--- /dev/null
+++ b/dev-python/python-engineio/python-engineio-0.9.1.ebuild
@@ -0,0 +1,28 @@
+# 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,3_5} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN=""
+DESCRIPTION="Python implementation of the Engine.IO realtime server."
+HOMEPAGE="https://${PN}.readthedocs.org/ 
https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN};
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+# pypi tarball does not contain tests
+RESTRICT="test"
+
+python_test() {
+   esetup.py test || die
+}



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

2016-06-29 Thread Patrick Lauer
commit: 35c3a079dafd7abfc0700f8560c20c209e98ab53
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 17:47:39 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 18:18:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c3a079

dev-python/testify: Bump

Package-Manager: portage-2.3.0

 dev-python/testify/Manifest |  1 +
 dev-python/testify/testify-0.9.0.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-python/testify/Manifest b/dev-python/testify/Manifest
index 9107644..7787f0c 100644
--- a/dev-python/testify/Manifest
+++ b/dev-python/testify/Manifest
@@ -1,3 +1,4 @@
 DIST testify-0.5.7.tar.gz 166954 SHA256 
153796d3b20b2d8554e52af26a8c891e6f02dfd6cc7be29f9241dad244cff044 SHA512 
410ac412306c11bba992b882624fcacdbff00e2865cd986c560d8b50ea8dff0ead8603b18f40414d8dbbe1f3ab9426e0f61170dc450927f6d2282e389800ff21
 WHIRLPOOL 
2cc958efea71bd475c698cee36e4f1bdb7197c8cb54c38efbf66927d5abc60e769a8995ae7fb4107fab8b74e4b05afcaf16e5c0aec9db3471ddbd771bafa3adf
 DIST testify-0.7.2.tar.gz 102858 SHA256 
7c209530fbb67344fe8985012056116d7d8eadd6ff126f91c93aa19208fd3ec9 SHA512 
4b470aabe1ada88ddaf89145c77dbc5c2d000c8e0fab431535c08b4ff05a04c12f215d4c05d678ba718fdf3295be74fef23041d01d3c05e0b9e2c43c5ab0ed1e
 WHIRLPOOL 
37ff8d7068ba4569215e3df440186ef3149a5fde0e12ec5efefc5b666adf2958b11f4db18995b46536cbf504dadec48f00b5f38e524ae09eb815c8170b8cf669
 DIST testify-0.8.0.tar.gz 68996 SHA256 
065cb852110547892d6f971b66795e71ee032a4bcc23decb984878b3ba402aaf SHA512 
c3a198fbf9d58c817e6eeffbfba282571e87b952f4d473118b13ec9f1451f94309032bea62bdba866eff0932233cc29be4f7731a56db99fae8fa1e2b3f12ecfc
 WHIRLPOOL 
c9e8d80ed802b3effd9c63595f1d2557e314f5d358991a6384c1f91c242b15fbb25a931d8f40171f6d4099584743e7eebe3c15ff30f7c8595318a7e490806da2
+DIST testify-0.9.0.tar.gz 67397 SHA256 
4c983d172ec1921f2fb0a7a1c15f99c1fad93d9fad3b677b3e7a4b150b3ab951 SHA512 
b7601339416d44421e588fe98752d5abeff035d14414905a4be7a33cf6f530663151d5f18324e66b3623439a3b1f36c26f17d89514902058b715a42c313ad1b7
 WHIRLPOOL 
2a4eb3938d492a17bbc5cb7989a1ade60b770d86b3100a177cdc8a79f50e8d59ad46b0af3e35b1251af93f9112a284969ad652bd244dc19e1ef27e355308a210

diff --git a/dev-python/testify/testify-0.9.0.ebuild 
b/dev-python/testify/testify-0.9.0.ebuild
new file mode 100644
index 000..abd1101
--- /dev/null
+++ b/dev-python/testify/testify-0.9.0.ebuild
@@ -0,0 +1,46 @@
+# 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 vcs-snapshot
+
+DESCRIPTION="A more pythonic replacement for the unittest module and nose"
+HOMEPAGE="https://github.com/Yelp/testify 
https://pypi.python.org/pypi/testify/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/sqlalchemy[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   www-servers/tornado[${PYTHON_USEDEP}]
+   >=dev-python/six-1.7.3[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( ${RDEPEND} )"
+
+python_prepare_all() {
+   # Correct typo in setup.py
+   sed -e 's:mock,:mock:' -i setup.py || die
+
+   # Correct use of local importing in pertinent test_ files
+   sed -e s':from .test:from test:' \
+   -i test/test_runner_test.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   einfo; einfo "Output reporting exceptions \"ImportError: No module 
named \""
+   einfo "are instances of exceptions expected to be raised, similar to 
xfails by nose"; einfo""
+   for test in test/test_*_test.py;
+   do
+   "${PYTHON}" $test || die "test $test failed under ${EPYTHON}"
+   done
+}



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

2016-06-29 Thread Patrick Lauer
commit: 36303497dafe59fc6c2939790c364105e93bfc4a
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 18:18:13 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 18:18:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36303497

dev-python/requests-mock: Bump

Package-Manager: portage-2.3.0

 dev-python/requests-mock/Manifest  |  1 +
 .../requests-mock/requests-mock-1.0.0.ebuild   | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/requests-mock/Manifest 
b/dev-python/requests-mock/Manifest
index 518ed05..66cf4c2 100644
--- a/dev-python/requests-mock/Manifest
+++ b/dev-python/requests-mock/Manifest
@@ -1,3 +1,4 @@
 DIST requests-mock-0.5.1.tar.gz 29729 SHA256 
b1b1b864e633418c77f33d333b0fd88cb6123bfb816706b236f7b1db99795056 SHA512 
79a270501cfee425af81b5d0ab7fcbebe08eca0ff8f9f57dab769bec7918f44ab7ca4a4b683ae195a5c8c6020d4730cf0c1482f6ff21cbbbea700491cc455903
 WHIRLPOOL 
87d2591e70dedd8a5bfae485dc0df411e5ed9ad1442f7e5f2d62d134c8e536e09b30f3b8c0f92def4b5c5f5df56fdd21eef9d4fde659ca5605bd17181f593021
 DIST requests-mock-0.6.0.tar.gz 31645 SHA256 
a1f10ee53fef6aac6ca54cfb8fdb1b7ca6da59d68ea1a8c21ac513211842ad3e SHA512 
5c23c1fdd3746f2b3b49508b7f05abb365e0608a32b6ead5d0ef18203bf75ab642626229e96b2e8826216d0f090f1bbd41bdfa78dd56f305a996a57f1e16179e
 WHIRLPOOL 
65af690e429a09bc4358f1b0c387e3fff3faaf962cacd247c11c01ba84f79b3fe06b0dd801e9dab829550a5a340e562aa3ceb6a61e4307c14b5a16fdba8a1a7a
 DIST requests-mock-0.7.0.tar.gz 34722 SHA256 
ee2816992d4505596ec3c98c7b4ab57475539ac037d08dd3a81370b1e3cdd568 SHA512 
c2046d9291b3c852b986423dd3407c2486476417934aa2c21365fa94d821ebef7e01e90c61c6ab35d186654d3468e4a72505bb157cfb01f287b6d5c0041dc7f8
 WHIRLPOOL 
ff4494eb30d5028aeaf7db1811130ddd3f89c5a0a57c55836fb35aa1ba598c5cb44f95879daa8be3b0aac8f57eb2649349243d5532cbd0ef31adb24c88321f27
+DIST requests-mock-1.0.0.tar.gz 34715 SHA256 
c6c659e50a312eb5cf0191ae33d6b232909e4a248551e79cef11c3c93497923d SHA512 
cfa4c208b1a23b7d86d761dabed564d085591c281cae2981dca5103d6e84c11a7a78a80f278e6ec868f087dcb8eda145cbd93efd2a5c7afdff8d00990b66af39
 WHIRLPOOL 
a2829e0867529f975f4c2e3567daa397b598235b5478725443c43b266147e3ef26b0188beb5b801f2ba95037fd930ce843a3493c8bf76ad00c591a0d4b8e487c

diff --git a/dev-python/requests-mock/requests-mock-1.0.0.ebuild 
b/dev-python/requests-mock/requests-mock-1.0.0.ebuild
new file mode 100644
index 000..7c3512b
--- /dev/null
+++ b/dev-python/requests-mock/requests-mock-1.0.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Mock out responses from the requests package"
+HOMEPAGE="https://github.com/jamielennox/requests-mock;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/pbr-0.8[${PYTHON_USEDEP}]
+   test? (
+   dev-python/fixtures[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
+   dev-python/testtools[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="
+   >=dev-python/requests-1.1[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+
+python_test() {
+   rm -rf .testrepository || die "couldn't remove '.testrepository' under 
${EPYTHON}"
+
+   testr init || die "testr init failed under ${EPYTHON}"
+   testr run || die "testr run failed under ${EPYTHON}"
+}



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

2016-06-29 Thread Patrick Lauer
commit: 8ea0daab17f43c8a77d2b611373a6e0f92995ec8
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 17:53:14 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 18:18:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ea0daab

dev-python/jingo: Bump

Package-Manager: portage-2.3.0

 dev-python/jingo/Manifest   |  1 +
 dev-python/jingo/jingo-0.9.0.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-python/jingo/Manifest b/dev-python/jingo/Manifest
index f17fc38..b6fa8ba 100644
--- a/dev-python/jingo/Manifest
+++ b/dev-python/jingo/Manifest
@@ -1,3 +1,4 @@
 DIST jingo-0.7.1.tar.gz 9982 SHA256 
c495a8dfd0a9c1d3d8ed02121bbb28b6c9d34d4da30aa93a7e639c0f3d7b0639 SHA512 
153d87f3017b34bb66bddffadb059d0089a48fbdb07bf4881499679c134232be2fe259da95de5a65f6339c1e72a3afb12f4daa1d91ef61f9294bd89899929929
 WHIRLPOOL 
5fa6af5c5d63766b381413147cc2a0f218693f14350e07f7d8f3e2189fceebd4f6678955aa8fda4ee09799318fc84f533dcc2af761fa0b1a7bb109fbc5dae103
 DIST jingo-0.7.tar.gz 9365 SHA256 
a3bd5051dd17e9d50e8a9f2d362508e82d7063010fdc06d5e07ce3608e780fe6 SHA512 
7358c20371d761ad147aaa2991056d1789d6a80d645741d816c38369abc469911ca6a1ab4324e7b1243832605fd80cdb3df89610106d2a850f634f1595da254d
 WHIRLPOOL 
5c3c17a287a2cb1469d187387064b8c55accbd240105aa3f09f9fb671512dfb394b3be2529d227181c302070c83c73c1c0556a9885f8cf32ba4dbe31039cfb4d
 DIST jingo-0.8.2.tar.gz 10008 SHA256 
f23ac2da63eb1a92ec94522034f6c34ae95b3846ee1c20758921125a82e2f358 SHA512 
d5503c7a9a6f60c45081845e069ce4a95c0dbd364fb5f6e8a2632b706c7e592e048766aab570c18bca8f87e15a20168eee1eccb6456d1b3aab74a22d7b638238
 WHIRLPOOL 
9c21700312ba64fd8f6548a4c9e3e8498c0aaa286f8fba78f498be4908631661542dbcc119c84a33777f9aff8b0587bb3dec48db699d6f2a1fd2b42c8ed7d48f
+DIST jingo-0.9.0.tar.gz 10536 SHA256 
37de5435622d05763bc55d1a3d0a7edcf998ece9e6048bb470db431d1aa83c3a SHA512 
ec064df61639a96dcd0f0b8383d93a650928035e8744f600bd55e42e2ca4b2436db9cff3d75780d2803e9a326fa17308c424c693e14553c9b9a3b45e4132989a
 WHIRLPOOL 
1b60e6fa983011e49818be161d3ac7df966b2a2057215db84c771ff89b32c78cdf8891daed660f3739e58973710f556f335682a574d3a05b2f41b8e2b8c79348

diff --git a/dev-python/jingo/jingo-0.9.0.ebuild 
b/dev-python/jingo/jingo-0.9.0.ebuild
new file mode 100644
index 000..48082ba
--- /dev/null
+++ b/dev-python/jingo/jingo-0.9.0.ebuild
@@ -0,0 +1,20 @@
+# 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} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="An adapter for using Jinja2 templates with Django"
+HOMEPAGE="https://github.com/jbalogh/jingo/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/jinja[${PYTHON_USEDEP}]"



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

2016-06-29 Thread Patrick Lauer
commit: 6502d44346a2ed4c29c6b64c9b634e67e5025802
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 18:07:11 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 18:18:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6502d443

dev-python/cssselect: Bump

Package-Manager: portage-2.3.0

 dev-python/cssselect/Manifest   |  1 +
 dev-python/cssselect/cssselect-0.9.2.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-python/cssselect/Manifest b/dev-python/cssselect/Manifest
index b12618b..5f8a244 100644
--- a/dev-python/cssselect/Manifest
+++ b/dev-python/cssselect/Manifest
@@ -1 +1,2 @@
 DIST cssselect-0.9.1.tar.gz 32952 SHA256 
0535a7e27014874b27ae3a4d33e8749e345bdfa62766195208b7996bf1100682 SHA512 
c4cd2c8d6fbfa99b836554685dd59e1e794e1fab06fcf4419a226b0608a05d58be5af54e507003f2a233a22f03d59d3d63c0bf19b3314f15c95ab3ce5f4db6cc
 WHIRLPOOL 
0fabe49d4f504069eb782ba98c93a34fa9433fd4d10a545f46f5aa1a5fb3a898580f4e17d744052590e18fe7a0f06feca0527d86ac243282e826caddfb410324
+DIST cssselect-0.9.2.tar.gz 33065 SHA256 
713b5b99ef08022257b3409c7ae1b18b2c6536b3f155e6237c5cfba0f67ae6f5 SHA512 
313965d3a0ad37b24d72d6faf861c04e7af7e4ff06f58450a23585c45bd9f247e565a4b7d594c008d40625601c2b8e76919801b3d77cfd62c7edc20cf366c1f9
 WHIRLPOOL 
90907b0cbc799d9e7f00ea366a24101fa4ff84786add028a035a355b4e8ce2073da82dfc4bc3a8e9a058341e117887e5ea1bac0e3b4befd8ac5df121a2ca

diff --git a/dev-python/cssselect/cssselect-0.9.2.ebuild 
b/dev-python/cssselect/cssselect-0.9.2.ebuild
new file mode 100644
index 000..ce7cfbc
--- /dev/null
+++ b/dev-python/cssselect/cssselect-0.9.2.ebuild
@@ -0,0 +1,45 @@
+# 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="parses CSS3 Selectors and translates them to XPath 1.0"
+HOMEPAGE="http://packages.python.org/cssselect/ 
https://pypi.python.org/pypi/cssselect;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd"
+IUSE="doc test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( dev-python/lxml[${PYTHON_USEDEP}] )"
+RDEPEND=""
+
+python_prepare_all() {
+   # prevent non essential d'load of files in doc build
+   sed -e 's:intersphinx_:#&:' -i docs/conf.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   if use doc ; then
+   "${PYTHON}" setup.py build_sphinx || die
+   fi
+}
+
+python_test() {
+   "${PYTHON}" ${PN}/tests.py -v || die "Tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+   distutils-r1_python_install_all
+}



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

2016-06-29 Thread Patrick Lauer
commit: 053a0c523c4902a1fe1b2a5224b76eeaa97daab1
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 18:01:35 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 18:18:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=053a0c52

dev-python/xlsxwriter: Bump

Package-Manager: portage-2.3.0

 dev-python/xlsxwriter/Manifest|  2 ++
 dev-python/xlsxwriter/xlsxwriter-0.9.2.ebuild | 49 +++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/xlsxwriter/Manifest b/dev-python/xlsxwriter/Manifest
index d8c0e0a..ce5a46a 100644
--- a/dev-python/xlsxwriter/Manifest
+++ b/dev-python/xlsxwriter/Manifest
@@ -1,3 +1,5 @@
 DIST XlsxWriter-0.7.8.tar.gz 233091 SHA256 
2200c2a69f63b350b3b1f5db8fae3e5b7135c01b7ac9c3b1d5926cf6583dd4cd SHA512 
2343155c765533bbc146e928dfc82924f089c7abee2f3607be2e5f9b1da9166090164f134256cbd36f319a97c9aa651fb346cc7502a3f1721f9687a9cddb9364
 WHIRLPOOL 
ba498cfe5929f8d302b2f81ca0291c465759ed070d030e650d4a973706562a397fda51632b31cdac8caba134d8199f3499c7505b9990a9fa02b908b5ac971bdc
 DIST XlsxWriter-0.8.4.tar.gz 234634 SHA256 
9f0c421fba5849ebcf6a2d24e8eb54799fa48166fe53dbe6deb42669ed5c6643 SHA512 
82b7a7e687431d09b31430e6eddb3c55f7d6bd1a631c2bc0741843d6a6d1fe59b219face9a9f7123d59aaf83643d5c00d13408eb45e5e5b810716d7440e33855
 WHIRLPOOL 
4ea00b8c016bd11294cc2898a171d0697cd306746fa58214ab6669f9e1f857102b14a26a65d58d89c4eed6a505b440c661f1971f3c0e74ff5d7201e93ebbb920
+DIST XlsxWriter-0.9.2.tar.gz 237146 SHA256 
9363097b35299da5b4706f9eb3eb79bc60d7eb68f3feff40149e20f1af26ddfa SHA512 
037f33a13a4f61fd6adb17ac1726bae7b5244242f66dfb5b9ec9ed9c0cf77af156ca4aa52013f1419c2cc381c7408a18243ebafaa2543828c3b01a619af4ec13
 WHIRLPOOL 
652ae7dcdaa0b6295e8175d1be1beef3ca6d78b2d980bd36033f9715c7e6c1065b50c214f1331e2da2998612e54dec44d40d3c30a80859bc1a8b26659e85f5bf
 DIST xlsxwriter-0.8.4-tests.zip 27275933 SHA256 
a78ff7620e725412668489eea2987ac5e491fada4354ac6e0124fb296f0a1d5f SHA512 
fe0c00e251b5a07e132c6bd2ddb19c95eb0782f00e35085895361500213695313370baacfa83317af814d5ab740ac8a6489fd96d5e9a3184bb2ea710683d2028
 WHIRLPOOL 
29f1e873fe72e29e99dd4b3ab3355baa3129fbf11bbe21a8e69202935c7c7e6ba5384e8d5c743127cc4d5585246c55c2341439ff722b5ee7b5a85ffc66c51d40
+DIST xlsxwriter-0.9.2-tests.zip 27275933 SHA256 
a78ff7620e725412668489eea2987ac5e491fada4354ac6e0124fb296f0a1d5f SHA512 
fe0c00e251b5a07e132c6bd2ddb19c95eb0782f00e35085895361500213695313370baacfa83317af814d5ab740ac8a6489fd96d5e9a3184bb2ea710683d2028
 WHIRLPOOL 
29f1e873fe72e29e99dd4b3ab3355baa3129fbf11bbe21a8e69202935c7c7e6ba5384e8d5c743127cc4d5585246c55c2341439ff722b5ee7b5a85ffc66c51d40

diff --git a/dev-python/xlsxwriter/xlsxwriter-0.9.2.ebuild 
b/dev-python/xlsxwriter/xlsxwriter-0.9.2.ebuild
new file mode 100644
index 000..c1177ac
--- /dev/null
+++ b/dev-python/xlsxwriter/xlsxwriter-0.9.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN="XlsxWriter"
+MY_P="${MY_PN}-${PV}"
+
+# PLEASE UPDATE
+# for up2date tests. Upstream says they are to large to be shipped to pypi
+# https://github.com/jmcnamara/XlsxWriter/issues/327
+# https://github.com/jmcnamara/XlsxWriter/issues/229
+RELEASE=b24d6fbf38862558f1c114c0c73058ba306d628f
+
+DESCRIPTION="Python module for creating Excel XLSX files"
+HOMEPAGE="https://pypi.python.org/pypi/XlsxWriter 
https://github.com/jmcnamara/XlsxWriter;
+SRC_URI="
+   mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz
+   test? ( https://github.com/jmcnamara/XlsxWriter/archive/${RELEASE}.zip 
-> ${P}-tests.zip )
+   "
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}"/${MY_P}
+
+python_prepare_all() {
+   if use test; then
+   cp -r "${WORKDIR}"/${MY_PN}-${RELEASE}/${PN}/test ${PN}/ || die
+   fi
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   py.test -v -v || die
+}



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad/files/, sci-electronics/kicad/

2016-06-29 Thread Michał Górny
commit: f228caa38719ad848fa163366c8f96a4d9ded711
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Sun Jun 26 08:07:44 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 17:56:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f228caa3

sci-electronics/kicad: Fix swig import fixer script for build, #586406

Fix the broken swig import fixer script that did not work with
newer Python versions. Also correct ebuild licensing.

Bug: https://bugs.gentoo.org/586406
Closes: https://github.com/gentoo/gentoo/pull/1745
Package-Manager: portage-2.3.0_rc1

 .../kicad/files/kicad-swig-import-helper.patch |  31 
 sci-electronics/kicad/kicad-4.0.2-r3.ebuild| 203 +
 2 files changed, 234 insertions(+)

diff --git a/sci-electronics/kicad/files/kicad-swig-import-helper.patch 
b/sci-electronics/kicad/files/kicad-swig-import-helper.patch
new file mode 100644
index 000..9202acc
--- /dev/null
+++ b/sci-electronics/kicad/files/kicad-swig-import-helper.patch
@@ -0,0 +1,31 @@
+diff -Naur kicad-4.0.2-orig/scripting/build_tools/fix_swig_imports.py 
kicad-4.0.2/scripting/build_tools/fix_swig_imports.py
+--- kicad-4.0.2-orig/scripting/build_tools/fix_swig_imports.py 2016-02-13 
13:14:42.0 -0800
 kicad-4.0.2/scripting/build_tools/fix_swig_imports.py  2016-06-26 
00:49:20.336661983 -0700
+@@ -37,7 +37,19 @@
+ txt = ""
+ 
+ for l in lines:
+-if l.startswith("if version_info >= (2,6,0):"): # ok with swig 
version <= 3.0.2
++if l.startswith("if _swig_python_version_info >= (2, 7, 0):"): # ok 
with swig version >= 3.0.10
++l = l.replace("_swig_python_version_info >= (2, 7, 0)","False")
++doneOk = True
++elif l.startswith("elif _swig_python_version_info >= (2, 6, 0):"):  # 
needed with swig version >= 3.0.10
++l = l.replace("_swig_python_version_info >= (2, 6, 0)","False")
++doneOk = True
++if l.startswith("if version_info >= (2, 7, 0):"): # ok with swig 
version >= 3.0.9
++l = l.replace("version_info >= (2, 7, 0)","False")
++doneOk = True
++elif l.startswith("elif version_info >= (2, 6, 0):"):  # needed with swig 
version >= 3.0.9
++l = l.replace("version_info >= (2, 6, 0)","False")
++doneOk = True
++elif l.startswith("if version_info >= (2,6,0):"): # ok with swig 
version <= 3.0.2
+ l = l.replace("version_info >= (2,6,0)","False")
+ doneOk = True
+ elif l.startswith("if version_info >= (2, 6, 0):"): # needed with swig 
version 3.0.3
+@@ -60,6 +72,3 @@
+ 
+ 
+ exit(0)
+-
+-
+-

diff --git a/sci-electronics/kicad/kicad-4.0.2-r3.ebuild 
b/sci-electronics/kicad/kicad-4.0.2-r3.ebuild
new file mode 100644
index 000..998e630
--- /dev/null
+++ b/sci-electronics/kicad/kicad-4.0.2-r3.ebuild
@@ -0,0 +1,203 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+
+WX_GTK_VER="3.0"
+
+inherit cmake-utils flag-o-matic gnome2-utils python-single-r1 vcs-snapshot 
wxwidgets versionator xdg
+
+DESCRIPTION="Electronic Schematic and PCB design tools."
+HOMEPAGE="http://www.kicad-pcb.org;
+LIBCONTEXT_COMMIT="3d92a1a50f4749b5a92131a957c9615473be85b4"
+
+SERIES=$(get_version_component_range 1-2)
+
+SRC_URI="https://launchpad.net/${PN}/${SERIES}/${PV}/+download/${P}.tar.xz
+   http://downloads.kicad-pcb.org/libraries/${PN}-footprints-${PV}.tar.gz
+   !minimal? ( https://github.com/KiCad/${PN}-library/archive/${PV}.tar.gz 
-> ${P}-library.tar.gz )
+   i18n? ( https://github.com/KiCad/${PN}-i18n/archive/${PV}.tar.gz -> 
${P}-i18n.tar.gz )
+   
https://github.com/twlostow/libcontext/archive/${LIBCONTEXT_COMMIT}.tar.gz -> 
${PN}-libcontext.tar.gz"
+
+LICENSE="GPL-2+ GPL-3+ Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc examples github i18n minimal +python webkit"
+LANGS="bg ca cs de el es fi fr hu it ja ko nl pl pt ru sk sl sv zh_CN"
+for lang in ${LANGS} ; do
+   IUSE="${IUSE} linguas_${lang}"
+done
+unset lang
+unset LANGS
+
+REQUIRED_USE="
+   github? ( webkit )
+   python? ( ${PYTHON_REQUIRED_USE} )"
+
+CDEPEND="x11-libs/wxGTK:${WX_GTK_VER}[X,opengl,webkit?]
+   python? (
+   dev-python/wxpython:${WX_GTK_VER}[opengl,${PYTHON_USEDEP}]
+   ${PYTHON_DEPS}
+   )
+   >=dev-libs/boost-1.56[nls,threads,python?]
+   github? ( dev-libs/openssl:0 )
+   media-libs/glew
+   media-libs/freeglut
+   media-libs/mesa
+   sys-libs/zlib
+   x11-libs/cairo"
+DEPEND="${CDEPEND}
+   doc? ( app-doc/doxygen )
+   i18n? ( virtual/libintl )
+   python? ( dev-lang/swig:0 )
+   app-text/dos2unix"
+RDEPEND="${CDEPEND}
+   sci-electronics/electronics-menu"
+
+pkg_setup() {
+   python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   xdg_src_prepare
+
+   # Add separated out libcontext files and patch source to use them
+   

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

2016-06-29 Thread William Hubbs
commit: 945b0b8401f91025677827fcac5638ed4f797e64
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 29 15:59:30 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 29 17:35:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=945b0b84

dev-libs/skalibs: 2.3.10.0 version bump

Package-Manager: portage-2.2.28

 dev-libs/skalibs/Manifest|  1 +
 dev-libs/skalibs/skalibs-2.3.10.0.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-libs/skalibs/Manifest b/dev-libs/skalibs/Manifest
index 85c25e4..e9dbf5b 100644
--- a/dev-libs/skalibs/Manifest
+++ b/dev-libs/skalibs/Manifest
@@ -1,2 +1,3 @@
+DIST skalibs-2.3.10.0.tar.gz 213288 SHA256 
e4d5147941055b2a367794666f773a4b216c3ae83c015a5fcf2cd0498470ea44 SHA512 
9120554a91ef292a8094c4c036b0e93c8db0576d72597c720eca3562d7239da673ace12b9f73747d957a993a780f112b9b7d03030451c1d0b33eaf90b402832a
 WHIRLPOOL 
9eb29c052d25c3850761956647d0a5403eff0a8e264c049885d0315a53f000aee428a688c5fb9cd831a6923cd734b6a1ca8ea8217b36991d95bce031979ae678
 DIST skalibs-2.3.2.0.tar.gz 205976 SHA256 
a36302b63fe97fa8d616cac0bb7aebbff60e1419dfb4d4f1af66b3c058dbd6ba SHA512 
f5a4b85fc43f49eccf5a2ac2ce5b142afc28fe4af781e59d1ad21a7eb5896075720230391234fcf7879cb29ba2d1624926d8cca77c3925327aa7a9a5fefff91a
 WHIRLPOOL 
453d5a0c9d1c2d84e1c8d5ac6bdb27e85d402de8007b8fcc6ba00c6e7c2400fb30c188da0a71343271edf47480916c7f3a5c7bb6e07703d5adc196bccc783350
 DIST skalibs-2.3.9.0.tar.gz 211781 SHA256 
6229fb4fb415699bbff3b446ff44aa5b7fb9c512b83bd68ae4005603afab60cb SHA512 
30b08fec01944fd7e816eb275dfe6eafdf21e14af95e70ae4991b9da716ab191b22c1576084ed7c40fd9e958804519075befaaf4314ccb370ced3c5e94793212
 WHIRLPOOL 
626ae08b19bb26916b5f75a979f60455404d91ae77c7c70fd35ae5b697e970f6cd72c68f42ddf6b288018b5639003ab6f2d2860d5617d8b6a0feca02f261277e

diff --git a/dev-libs/skalibs/skalibs-2.3.10.0.ebuild 
b/dev-libs/skalibs/skalibs-2.3.10.0.ebuild
new file mode 100644
index 000..5f89517
--- /dev/null
+++ b/dev-libs/skalibs/skalibs-2.3.10.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="skarnet.org general-purpose libraries"
+HOMEPAGE="http://www.skarnet.org/software/skalibs/index.html;
+SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc ipv6 static-libs"
+
+DEPEND=">=sys-devel/make-3.81"
+RDEPEND=""
+
+src_prepare() {
+   # Remove QA warning about LDFLAGS addition
+   sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" 
"${S}/configure" || die
+   eapply_user
+}
+
+src_configure() {
+   econf \
+   $(use_enable ipv6) \
+   $(use_enable static-libs static) \
+   --dynlibdir=/$(get_libdir) \
+   --libdir=/usr/$(get_libdir)/${PN} \
+   --datadir=/etc \
+   --sysdepdir=/usr/$(get_libdir)/${PN} \
+   --enable-force-devr
+}
+
+src_install() {
+   default
+   dodir /etc/ld.so.conf.d/
+   echo "/$(get_libdir)/${PN}" > ${ED}/etc/ld.so.conf.d/10${PN}.conf || die
+
+   use doc && dohtml -r doc/*
+}



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

2016-06-29 Thread William Hubbs
commit: e42725f8851c953f3231423b5ba64aa86f05dc0b
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 29 16:50:01 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 29 17:35:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e42725f8

sys-apps/s6: 2.3.0.0 version bump

Package-Manager: portage-2.2.28

 sys-apps/s6/Manifest  |  1 +
 sys-apps/s6/s6-2.3.0.0.ebuild | 58 +++
 2 files changed, 59 insertions(+)

diff --git a/sys-apps/s6/Manifest b/sys-apps/s6/Manifest
index eb9b9dc..f4585be 100644
--- a/sys-apps/s6/Manifest
+++ b/sys-apps/s6/Manifest
@@ -1,2 +1,3 @@
 DIST s6-2.1.3.0.tar.gz 181237 SHA256 
73057df188f1ac8db186b96298c0cb6081199aa73d3f2f8d5fabdbbe21c3ea04 SHA512 
f5b962fb9f36a910fd8b56b1158cc28d1dab808f22f6beb309b8c23dab1863409aaecd2e3806b51ec34aef1c70f117d3b8af4c7167e0e854f6925fe278cdcaca
 WHIRLPOOL 
03283a6c2a8a9419bf7e27a9e6c46fe2fe9ad0cbb384f4da0efaec56f5066ab36d20b00aae7a81408ca7b94a1325625feb83173e99e9ff9e85f28be69e6ba2c7
 DIST s6-2.2.4.3.tar.gz 192153 SHA256 
f584ec56d5f2a3a2d81698d5f744b9b64d8fb6c22b56649faa71f3b62da7db3f SHA512 
af2f06d31eeba3efeaa93e1df6afc50051eb4b13b034d24750314e0d7e9277953595cd04134eecbe239c0ea633e2242712d193a23389a3c1206a81bf7438b5bb
 WHIRLPOOL 
5d00db61a036fa5e692892bc72391ad5d74144c57e505da73b708d8a152dc7a620e9bc7f04ef52e51220eb4ac3da15b7e31e35e0998c3c954a0d431593476c0b
+DIST s6-2.3.0.0.tar.gz 192887 SHA256 
49c9a0476d93c6279c776ca5ae9c49b3fd39c356eda674828aebf78f8488e8e6 SHA512 
40b9ae41b29a32a47a88211a3eb2a0771b5108fc57a2a7a0524e5c6b99bf31c465e99bd910b11c7de784f22b712c79bb32306e963bf8b1aa5270e5463577758c
 WHIRLPOOL 
7052ece89b0bc4174b9583b3dba721322ee89974f9540a243fd9e4f4a5c43710360c31e5fd7596630f539e7204f7cb7bc92569e6a5d11a68cb520379078b5f37

diff --git a/sys-apps/s6/s6-2.3.0.0.ebuild b/sys-apps/s6/s6-2.3.0.0.ebuild
new file mode 100644
index 000..566ad9d
--- /dev/null
+++ b/sys-apps/s6/s6-2.3.0.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="skarnet.org's small and secure supervision software suite"
+HOMEPAGE="http://www.skarnet.org/software/s6/;
+SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static static-libs"
+
+DEPEND=">=sys-devel/make-4.0
+   static? (
+   >=dev-lang/execline-2.1.5.0[static-libs]
+   >=dev-libs/skalibs-2.3.10.0[static-libs]
+   )
+   !static? (
+   >=dev-lang/execline-2.1.5.0
+   >=dev-libs/skalibs-2.3.10.0
+   )
+   "
+RDEPEND="
+   !static? (
+   >=dev-lang/execline-2.1.5.0
+   >=dev-libs/skalibs-2.3.10.0
+   )
+   "
+
+DOCS="AUTHORS examples README*"
+HTML_DOCS="doc/*"
+
+src_prepare()
+{
+   # Remove QA warning about LDFLAGS addition
+   sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" 
"${S}/configure" || die
+
+   eapply_user
+}
+
+src_configure()
+{
+   econf \
+   $(use_enable !static shared) \
+   $(use_enable static-libs static) \
+   $(use_enable static allstatic) \
+   --bindir=/bin \
+   --sbindir=/sbin \
+   --dynlibdir=/$(get_libdir) \
+   --libdir=/usr/$(get_libdir)/${PN} \
+   --datadir=/etc \
+   --sysdepdir=/usr/$(get_libdir)/${PN} \
+   --with-dynlib=/$(get_libdir) \
+   --with-sysdeps=/usr/$(get_libdir)/skalibs
+}



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

2016-06-29 Thread William Hubbs
commit: 11916da9a785a783d1ae6acdbae7284abc35712c
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 29 17:22:17 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 29 17:35:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11916da9

sys-apps/s6-linux-utils: 2.1.0.0 version bump

Package-Manager: portage-2.2.28

 sys-apps/s6-linux-utils/Manifest   |  1 +
 .../s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild   | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/sys-apps/s6-linux-utils/Manifest b/sys-apps/s6-linux-utils/Manifest
index e879374..12e9831 100644
--- a/sys-apps/s6-linux-utils/Manifest
+++ b/sys-apps/s6-linux-utils/Manifest
@@ -1 +1,2 @@
 DIST s6-linux-utils-2.0.2.3.tar.gz 40050 SHA256 
f959ffb9bb79865018becc6664d29faef22cb747a43db252879e11886b1b8cc3 SHA512 
10d919c67036dbd57ed8d0e2ba46e1957c621414cae2326c2c696a27b46496d928aa768465236585ed8be279a2866cc9a519f9feb51b9757f999e9b8b80faf2d
 WHIRLPOOL 
7c5515d65fc2f5db1a0b14abedfd2ea462e621a6a16200da162487b0a57d1adce6f5ecc034524b1e8f066e531413f5a9c528187dee38b1980d3826a3a970d6c8
+DIST s6-linux-utils-2.1.0.0.tar.gz 40996 SHA256 
3523ba84ba524198711b2de3edaaf620381a4e95d78ec6d13dcb7aba42397ead SHA512 
a2bd997334b69c7d864ea14dd27af7b62c8a7b6ccf8f9431ed87f46590546e540a06577f04d2cf3e52299cd9819a31e926326862d751b8528bc98ec2f4e93913
 WHIRLPOOL 
3718fc4260b3ea1fe04d8b05021ce1a8ad2b1099e780da646df53d7174cabbe536c2e366f2b725a049258bcc057cdf9e226bd81a0fe575ad184f3df866112847

diff --git a/sys-apps/s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild 
b/sys-apps/s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild
new file mode 100644
index 000..49c46a6
--- /dev/null
+++ b/sys-apps/s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Set of tiny linux utilities"
+HOMEPAGE="http://www.skarnet.org/software/s6-linux-utils/;
+SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static"
+
+DEPEND="
+   static? ( >=dev-libs/skalibs-2.3.10.0[static-libs] )
+   !static? ( >=dev-libs/skalibs-2.3.10.0 )
+   "
+RDEPEND="
+   !static? ( >=dev-libs/skalibs-2.3.10.0 )
+   "
+
+HTML_DOCS="doc/."
+
+src_prepare()
+{
+   # Remove QA warning about LDFLAGS addition
+   sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" 
"${S}/configure" || die
+
+   eapply_user
+}
+
+src_configure()
+{
+   econf \
+   $(use_enable !static shared) \
+   $(use_enable static allstatic) \
+   $(use_enable static) \
+   --bindir=/bin \
+   --sbindir=/sbin \
+   --dynlibdir=/$(get_libdir) \
+   --libdir=/usr/$(get_libdir)/${PN} \
+   --datadir=/etc \
+   --sysdepdir=/usr/$(get_libdir)/${PN} \
+   --with-dynlib=/$(get_libdir) \
+   --with-sysdeps=/usr/$(get_libdir)/skalibs
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/s6-portable-utils/

2016-06-29 Thread William Hubbs
commit: 3e3fc97d6502d992788ae24e0d6d687b31ed8a60
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 29 17:12:50 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 29 17:35:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e3fc97d

sys-apps/s6-portable-utils: 2.0.6.0 version bump

Package-Manager: portage-2.2.28

 sys-apps/s6-portable-utils/Manifest|  1 +
 .../s6-portable-utils-2.0.6.0.ebuild   | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/sys-apps/s6-portable-utils/Manifest 
b/sys-apps/s6-portable-utils/Manifest
index 03cd0a8..4e527b8 100644
--- a/sys-apps/s6-portable-utils/Manifest
+++ b/sys-apps/s6-portable-utils/Manifest
@@ -1 +1,2 @@
 DIST s6-portable-utils-2.0.5.3.tar.gz 46300 SHA256 
27be01b3d66df617ea7dbc21b55d253d5b9142463099f6944f90ef33587a2e09 SHA512 
19e71457dc0ca8c1d161da36fb32902f2b8c60759745651806c9eebd19f3ec4d3d87d2d45fb226711eb16f6ae407671c363fc2a7df7d5746ecf3a4197012a122
 WHIRLPOOL 
1760eadf1eded5981aeb5b43df3a3c012a0b300ffed4ffdb22b51907e07962f65270763dff24937acbe7414d70f273497d8b91672360606827a002e968d2fa58
+DIST s6-portable-utils-2.0.6.0.tar.gz 46972 SHA256 
233b7d13766a23661cc7ed5c052f29b9c558c1d516a538a281a17da22a909d4b SHA512 
822c723f112550550591afb83908bf4d62f40e88fd46eacc6d56feb4c952bcfc4bad91c988f7379323cf7997c4fb823bb837e0c433ca6947762a63a1b8681557
 WHIRLPOOL 
efa966bb5423bb4d0e7cd56c41d899430a7b6204e99646f376b8e9acba9ec8cc7b597fb420397a8808c2f3c4bec65826701e61f1d6e452fef2004e051a4d0d35

diff --git a/sys-apps/s6-portable-utils/s6-portable-utils-2.0.6.0.ebuild 
b/sys-apps/s6-portable-utils/s6-portable-utils-2.0.6.0.ebuild
new file mode 100644
index 000..e52079f
--- /dev/null
+++ b/sys-apps/s6-portable-utils/s6-portable-utils-2.0.6.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Set of tiny portable unix utilities"
+HOMEPAGE="http://www.skarnet.org/software/s6-portable-utils/;
+SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static"
+
+DEPEND="
+   static? ( >=dev-libs/skalibs-2.3.10.0[static-libs] )
+   !static? ( >=dev-libs/skalibs-2.3.10.0 )
+   "
+RDEPEND="
+   !static? ( >=dev-libs/skalibs-2.3.10.0 )
+   "
+
+HTML_DOCS="doc/."
+
+src_prepare()
+{
+   # Remove QA warning about LDFLAGS addition
+   sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" 
"${S}/configure" || die
+
+   eapply_user
+}
+
+src_configure()
+{
+   econf \
+   $(use_enable !static shared) \
+   $(use_enable static allstatic) \
+   $(use_enable static) \
+   --bindir=/bin \
+   --sbindir=/sbin \
+   --dynlibdir=/$(get_libdir) \
+   --libdir=/usr/$(get_libdir)/${PN} \
+   --datadir=/etc \
+   --sysdepdir=/usr/$(get_libdir)/${PN} \
+   --with-dynlib=/$(get_libdir) \
+   --with-sysdeps=/usr/$(get_libdir)/skalibs
+}



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

2016-06-29 Thread William Hubbs
commit: 1e6fbb1f12400c1d238cddb951be7f9ce26168e1
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 29 17:35:01 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 29 17:35:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e6fbb1f

sys-apps/s6-linux-init: 0.1.0.0 version bump

Package-Manager: portage-2.2.28

 sys-apps/s6-linux-init/Manifest|  1 +
 .../s6-linux-init/s6-linux-init-0.1.0.0.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-apps/s6-linux-init/Manifest b/sys-apps/s6-linux-init/Manifest
index a6cca2a..af73e4d 100644
--- a/sys-apps/s6-linux-init/Manifest
+++ b/sys-apps/s6-linux-init/Manifest
@@ -1 +1,2 @@
 DIST s6-linux-init-0.0.1.4.tar.gz 21493 SHA256 
80eeb8e3bf3095d69b86aaf8e6f5c28aab53a0eb6473e301a673870b56566b6a SHA512 
84fabc9720f2aa2c68723c7b34023a8971f9e55c367b69c200c9c99d2c04bd23b598563facaca4deb4a11f732be3016361e38a40258a7d0ce68cb0f3c10a0235
 WHIRLPOOL 
55f6c6cac544b6c9ffa5b5f16639a20a47b1ba2ae61cdfe5c1446c254a11801cfab4f211c2b55c7381a37ff76509a06b25d2ec8710ec32f1682ee186efc8b805
+DIST s6-linux-init-0.1.0.0.tar.gz 22242 SHA256 
4db16d235dc052f6376f4e88e5e4c0dd1cb84237e7eadb9eb4b440eececcaffc SHA512 
8898ac09212d33d4160d0a1ccad4f6f24ed8010a16815daec4a68827f7af1948568807ae2063bb1f0fe901b87f605eb3cd199d0a3e9a217255b77ed4fc9eef08
 WHIRLPOOL 
4eed683de5c0846698c1d603e7be72299a425f1f91e3f944da98ed5fb0d9d988db1fb1931ec86ec41f837dab0b51bd61f828b2763c21ac520037021831e47543

diff --git a/sys-apps/s6-linux-init/s6-linux-init-0.1.0.0.ebuild 
b/sys-apps/s6-linux-init/s6-linux-init-0.1.0.0.ebuild
new file mode 100644
index 000..795f916
--- /dev/null
+++ b/sys-apps/s6-linux-init/s6-linux-init-0.1.0.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Generates an init binary for s6-based init systems"
+HOMEPAGE="http://www.skarnet.org/software/s6-linux-init/;
+SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static"
+
+DEPEND="
+   static? ( >=dev-libs/skalibs-2.3.10.0[static-libs] )
+   !static? ( >=dev-libs/skalibs-2.3.10.0 )
+   "
+RDEPEND="
+   !static? ( >=dev-libs/skalibs-2.3.10.0 )
+   "
+
+DOCS=(INSTALL examples/)
+HTML_DOCS=(doc/.)
+
+src_prepare()
+{
+   # Remove QA warning about LDFLAGS addition
+   sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" 
"${S}/configure" || die
+
+   eapply_user
+}
+
+src_configure()
+{
+   econf \
+   $(use_enable !static shared) \
+   $(use_enable static) \
+   $(use_enable static allstatic) \
+   --bindir=/bin \
+   --sbindir=/sbin \
+   --dynlibdir=/$(get_libdir) \
+   --libdir=/usr/$(get_libdir)/${PN} \
+   --datadir=/etc \
+   --sysdepdir=/usr/$(get_libdir)/${PN} \
+   --with-dynlib=/$(get_libdir) \
+   --with-sysdeps=/usr/$(get_libdir)/skalibs
+}
+
+pkg_postinst()
+{
+   einfo "The generated init script requires additional packages."
+   einfo "Read ${ROOT}usr/share/doc/${PF}/INSTALL for details."
+}



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

2016-06-29 Thread William Hubbs
commit: 9bc052c85518f4eadac0a8b974ed662410fa15ca
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 29 16:32:40 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 29 17:35:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc052c8

dev-lang/execline: 2.1.5.0 version bump

Package-Manager: portage-2.2.28

 dev-lang/execline/Manifest|  1 +
 dev-lang/execline/execline-2.1.5.0.ebuild | 50 +++
 2 files changed, 51 insertions(+)

diff --git a/dev-lang/execline/Manifest b/dev-lang/execline/Manifest
index 52c9adb..b04a612 100644
--- a/dev-lang/execline/Manifest
+++ b/dev-lang/execline/Manifest
@@ -1,2 +1,3 @@
 DIST execline-2.1.1.0.tar.gz 75967 SHA256 
9e1a9b95772b64bd623c1ddea6200909cca0eb659893ac47857848928eaff7dc SHA512 
250fe449b39a198193f1431b249b342f3c6c499fea12779a55d0e27aec2095285bbf9dc2a48d84eebdf9f540ecf5e67ef39393243ca0fadfc764d2cc95ac0b6b
 WHIRLPOOL 
ce92f6d7786e5f1efcfb5298b1fa8a561957c6b9f542ace49b815e69f98da4f88adcd339f7210d61d7ae1298573cd9bc31c22c6f7b3c8ac30f44986c88241f32
 DIST execline-2.1.4.5.tar.gz 80203 SHA256 
ab4451d4992a5d7fb2ae34cffe4d0806e4902bf9aa27ee3b75617aa35379356f SHA512 
15a76c73afe98142b9f466edb442cad06ee69f0f0e15ad6a325c37f3878b4c5863b5cece67bd169e84b465a0f7f4f38f87fa88b2aa96fe40a20ebc3575a1ceb9
 WHIRLPOOL 
1df5b72f02c95d3fd24ff7c46b3cd7aff89186bfe6bb27df815f5bb06a12886e57b3fe67ff18d2d387dccb107eb8acf0b09124eafe47a9857e636d240e1051e8
+DIST execline-2.1.5.0.tar.gz 80932 SHA256 
8a3605a6db73183baa376bf2130e8b7eb75a5b5347c7f9144e520fe86bcb1142 SHA512 
43ebff73e279dcffda686a372bded80e12be4b66b6c2fde69f17810aa0b52214d23da8581002adfcb5a40437e335594b8e44c698d0295d8c172fbc2c0a93aeed
 WHIRLPOOL 
8b0d3b28d28e7c18515600dd866c0ade5f99ba97ded37102e58f2d613d2e60f1d9de1d1327f0c5331bd8f346e9b808dafbfbd8e7003a01983904f6576ae90575

diff --git a/dev-lang/execline/execline-2.1.5.0.ebuild 
b/dev-lang/execline/execline-2.1.5.0.ebuild
new file mode 100644
index 000..f56fe38
--- /dev/null
+++ b/dev-lang/execline/execline-2.1.5.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2013-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="a non-interactive scripting language similar to SH"
+HOMEPAGE="http://www.skarnet.org/software/execline/;
+SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static static-libs"
+
+DEPEND=">=sys-devel/make-4.0
+   static? ( >=dev-libs/skalibs-2.3.10.0[static-libs] )
+   !static? ( >=dev-libs/skalibs-2.3.10.0 )
+"
+RDEPEND="!static? ( >=dev-libs/skalibs-2.3.10.0 )"
+
+HTML_DOCS="doc/."
+
+src_prepare() {
+   # Remove QA warning about LDFLAGS addition
+   sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" 
"${S}/configure" || die
+   eapply_user
+}
+
+src_configure()
+{
+   econf \
+   $(use_enable static-libs static) \
+   $(use_enable static allstatic) \
+   $(use_enable !static shared) \
+   --bindir=/bin \
+   --sbindir=/sbin \
+--dynlibdir=/$(get_libdir) \
+--libdir=/usr/$(get_libdir)/${PN} \
+--datadir=/etc \
+--sysdepdir=/usr/$(get_libdir)/${PN} \
+--with-dynlib=/$(get_libdir) \
+--with-lib=/usr/$(get_libdir)/skalibs \
+--with-sysdeps=/usr/$(get_libdir)/skalibs
+}
+
+src_compile()
+{
+   emake DESTDIR="${D}"
+}



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

2016-06-29 Thread William Hubbs
commit: f29f0174faefef9e97642735885d5c1a68883017
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun 29 17:06:50 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun 29 17:35:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f29f0174

sys-apps/s6-rc: 0.0.3.0 version bump

Package-Manager: portage-2.2.28

 sys-apps/s6-rc/Manifest |  1 +
 sys-apps/s6-rc/s6-rc-0.0.3.0.ebuild | 61 +
 2 files changed, 62 insertions(+)

diff --git a/sys-apps/s6-rc/Manifest b/sys-apps/s6-rc/Manifest
index bdda592..76f0862 100644
--- a/sys-apps/s6-rc/Manifest
+++ b/sys-apps/s6-rc/Manifest
@@ -1 +1,2 @@
 DIST s6-rc-0.0.2.1.tar.gz 85549 SHA256 
93f30557e2e2e5c507b5becef2bd26f377be6b6c542fb4627c3122e1c2d83ef9 SHA512 
9a83e272ba521e5ede17ded6b6143797d70205c6631fd08bdb9cbefc66e8ab6011de68e94876ec3c7af439ffbff21778207507db74f0ae91117e88fe36a7f65c
 WHIRLPOOL 
f10e515db0106816fb3c79c46dea0f171ac89653f326b9287aeccb1a9cc369fb6e6fec40c43eb3c3863763081608ec7cccf780cb8bcaaee7303e6c5d106c082d
+DIST s6-rc-0.0.3.0.tar.gz 86992 SHA256 
5eb94e77961a075e6305e89e3a5c7e6c95fb7037682d4ea45277c1ab1625892e SHA512 
66fe8cf1937671d3b6c06e7aca40e5b94502ca12a659b50e8120a178295084272091a378e8bbf9f69c560fbc69ca10ffdf08763cbd714ed2411d0d558437e325
 WHIRLPOOL 
54c1bddc6254eadf428806920f9cdf567cbb77d4496d7b8afd2b9c9daee5159719160a63f2ef257eb6bc86726161356864df070a80ed8acb3d3f7e0c8c748518

diff --git a/sys-apps/s6-rc/s6-rc-0.0.3.0.ebuild 
b/sys-apps/s6-rc/s6-rc-0.0.3.0.ebuild
new file mode 100644
index 000..3d78816
--- /dev/null
+++ b/sys-apps/s6-rc/s6-rc-0.0.3.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Service manager for the s6 supervision suite"
+HOMEPAGE="http://www.skarnet.org/software/s6-rc/;
+SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static static-libs"
+
+DEPEND="
+   static? (
+   >=dev-lang/execline-2.1.5.0[static-libs]
+   >=dev-libs/skalibs-2.3.10.0[static-libs]
+   >=sys-apps/s6-2.3.0.0[static-libs]
+   )
+   !static? (
+   >=dev-lang/execline-2.1.5.0
+   >=dev-libs/skalibs-2.3.10.0
+   >=sys-apps/s6-2.3.0.0
+   )
+   "
+RDEPEND="
+   !static? (
+   >=dev-lang/execline-2.1.5.0
+   >=dev-libs/skalibs-2.3.10.0
+   >=sys-apps/s6-2.3.0.0
+   )
+   "
+
+DOCS=("examples/")
+HTML_DOCS=("doc/.")
+
+src_prepare()
+{
+   # Remove QA warning about LDFLAGS addition
+   sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" 
"${S}/configure" || die
+
+   eapply_user
+}
+
+src_configure()
+{
+   econf \
+   $(use_enable !static shared) \
+   $(use_enable static-libs static) \
+   $(use_enable static allstatic) \
+   --bindir=/bin \
+   --sbindir=/sbin \
+   --dynlibdir=/$(get_libdir) \
+   --libdir=/usr/$(get_libdir)/${PN} \
+   --datadir=/etc \
+   --sysdepdir=/usr/$(get_libdir)/${PN} \
+   --with-dynlib=/$(get_libdir) \
+   --with-sysdeps=/usr/$(get_libdir)/skalibs
+}



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

2016-06-29 Thread Patrick Lauer
commit: 8725c839d9d530e5995417c99c7cc76700dd3db7
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 17:30:51 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 17:40:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8725c839

dev-python/strict-rfc3339: Bump

Package-Manager: portage-2.3.0

 dev-python/strict-rfc3339/Manifest |  1 +
 .../strict-rfc3339/strict-rfc3339-0.7.ebuild   | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/strict-rfc3339/Manifest 
b/dev-python/strict-rfc3339/Manifest
index a1624c8..15b75f4 100644
--- a/dev-python/strict-rfc3339/Manifest
+++ b/dev-python/strict-rfc3339/Manifest
@@ -1 +1,2 @@
 DIST strict-rfc3339-0.6.tar.gz 16856 SHA256 
8d505093cff2a65144eecee09a171ec3401a4d725438381c22011eceddf549df SHA512 
7f1e15d60c2295c00647af84b31a1836b6c3994fadbb2695f5709861caae543ae69a3199dffd6dcf7e0768eadf39e496a5e600e291dd0befbe8fc35fa60897af
 WHIRLPOOL 
39f6c8ba67bf84d9c208ae96c32fe25d85a8043d55474994372fe68ed0d6e7254db89df956204c606e950d9d35fd1896c18b65a81d980aafc873da010ff710e8
+DIST strict-rfc3339-0.7.tar.gz 17552 SHA256 
5cad17bedfc3af57b399db0fed32771f18fc54bbd917e85546088607ac5e1277 SHA512 
94a2992a9ea41b75527348f0f8dae1d118d57b0764122f874baa85f5e3b523beb219ed83c2d7224725e504cd3737a6bde485957135856dcde470f32675e44e77
 WHIRLPOOL 
e687f876172d298eefef5e62e1d8af0241b49a2d27f6206446ac2f7d2fd87baa077080dfc3d7c4e140b320b941b348665505eda0a86be5d3512129f8a7569184

diff --git a/dev-python/strict-rfc3339/strict-rfc3339-0.7.ebuild 
b/dev-python/strict-rfc3339/strict-rfc3339-0.7.ebuild
new file mode 100644
index 000..50d9511
--- /dev/null
+++ b/dev-python/strict-rfc3339/strict-rfc3339-0.7.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Strict, simple, lightweight RFC3339 functions"
+HOMEPAGE="https://pypi.python.org/pypi/strict-rfc3339 
https://github.com/danielrichman/strict-rfc3339;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3+"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+# Not shipped
+RESTRICT=test
+
+python_test() {
+   ${PYTHON} test_strict_rfc3339.py || die
+}



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

2016-06-29 Thread Patrick Lauer
commit: 9d9ef6e9ff8c6c819df5d4ceee90a6dc4a1c4a7b
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 17:26:34 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 17:40:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d9ef6e9

dev-python/socketio-client: Bump

Package-Manager: portage-2.3.0

 dev-python/socketio-client/Manifest|  1 +
 .../socketio-client/socketio-client-0.6.6.ebuild   | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/socketio-client/Manifest 
b/dev-python/socketio-client/Manifest
index 4b4ac53..fd44885 100644
--- a/dev-python/socketio-client/Manifest
+++ b/dev-python/socketio-client/Manifest
@@ -1 +1,2 @@
 DIST socketio-client-0.6.5.tar.gz 18387 SHA256 
843f271074e6d2b1302ab873d2dfb37e647aea03c75d542fdd0f47b9d81085bc SHA512 
76a60089964ddba2733780b96fb079ad60640dea3f457b91217c2e64541c03ec7c9c653dd961285a1858d01ed13722ea60a16fac13fbd778cc0c9a720fd31a1f
 WHIRLPOOL 
d557a892686025fe0f08afc65dc4c442eea67494671351bb9ca7a05bf37e1224c3e8f3997422e80b10b7d6b7ade452e06828c6e3fe52ff4e36cc8bef6f45e127
+DIST socketio-client-0.6.6.tar.gz 21829 SHA256 
beac1c1e155ca87da805f20483926535a965509b541b422bdf60ba0676fb8aed SHA512 
aa21d31bf9e9062578fc6892a7624ea41ef3437eff132ff3ef2829a589c0fd19953fc514ab05161a32d06578708fb7f41b2f636d3d60a2700094e676d72cee47
 WHIRLPOOL 
61ab1f68bb2ede21a78e5af2788be92c0078116d498a533dae5c80516e5f6cada8bf9427df855a48c788bc857771b720f97a5ce7cdacb2e3f5637e3c12f0a470

diff --git a/dev-python/socketio-client/socketio-client-0.6.6.ebuild 
b/dev-python/socketio-client/socketio-client-0.6.6.ebuild
new file mode 100644
index 000..e223b49
--- /dev/null
+++ b/dev-python/socketio-client/socketio-client-0.6.6.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} )
+
+inherit distutils-r1
+
+MY_PN="socketIO-client"
+REPO_PN="socketIO_client"
+DESCRIPTION="A socket.io client library for Python"
+HOMEPAGE="https://github.com/invisibleroads/${MY_PN}/ 
https://pypi.python.org/pypi/${MY_PN};
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${REPO_PN}-${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/websocket-client[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( ${RDEPEND}
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/coverage[${PYTHON_USEDEP}]
+   )"
+
+S="${WORKDIR}/${REPO_PN}-${PV}"
+
+python_test() {
+   # https://github.com/invisibleroads/socketIO-client/issues/90
+   # This runs the suite but has nill output to the screen
+   # The bug filed will hopefully yield a more conventional testsuite
+
+   # The import of SocketIO need be made with abs path to run the tests
+   sed -e 's:from .. import:from socketIO_client import:' \
+   -i ${REPO_PN}/tests/__init__.py || die
+
+   "${PYTHON}" ${REPO_PN}/tests/__init__.py || die "Tests failed under 
${EPYTHON}"
+
+   # Return to original form for final install
+sed -e 's:from socketIO_client import:from .. import:' \
+   -i ${REPO_PN}/tests/__init__.py || die
+}



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

2016-06-29 Thread Patrick Lauer
commit: 7ec43f6bed3b814f54526421bab8ef0cf2320287
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 17:40:23 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 17:40:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ec43f6b

dev-python/pystatgrab: Bump

Package-Manager: portage-2.3.0

 dev-python/pystatgrab/Manifest  |  1 +
 dev-python/pystatgrab/pystatgrab-0.7.ebuild | 30 +
 2 files changed, 31 insertions(+)

diff --git a/dev-python/pystatgrab/Manifest b/dev-python/pystatgrab/Manifest
index 3e88819..2312529 100644
--- a/dev-python/pystatgrab/Manifest
+++ b/dev-python/pystatgrab/Manifest
@@ -1 +1,2 @@
 DIST pystatgrab-0.6.tar.gz 78763 SHA256 
eee0a65e108462800823bafdbb3ce66dffd4aa03febb9e918e61ef0d08fe SHA512 
a902ca5340c2e36209297426ae071e37c07f6700c2850cdb6ff7dfd5c93174fdc9e5e4415bfcc2b9c8a78226abda8b12875bd172acbd6568aad248c666e206a4
 WHIRLPOOL 
6bfb12ff84d80c9beef3d3437f8d6da4bc3ca9bf84caab16d0e6febcdee2080a6e899e0449f2d26d4462ceaf5d655a6ddd9668d62c19c4c01d67557b5f6e6977
+DIST pystatgrab-0.7.tar.gz 84472 SHA256 
9e79919efdbeb45e28f26cb45d4f1a2861caa2937c5bf86be351c5c096b6550f SHA512 
ce239941eebe5390a9154d19891ab45fc410515bb7313083450ffd30cfe23457a1d7e2d0ccab4434c844bb6f2cbfe6080ecfd66db7728720e703ce01ea219366
 WHIRLPOOL 
2e84b536473da52a70f6bf74dd02d1b88c6eb7f07e787590cb8b3b17a99c4a98c4474510e55bbba62b95c9254add693f7c1ffcb3bf8ff58bfe9e3871a137e976

diff --git a/dev-python/pystatgrab/pystatgrab-0.7.ebuild 
b/dev-python/pystatgrab/pystatgrab-0.7.ebuild
new file mode 100644
index 000..9f028a3
--- /dev/null
+++ b/dev-python/pystatgrab/pystatgrab-0.7.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 flag-o-matic
+
+DESCRIPTION=" pystatgrab is a set of Python bindings for the libstatgrab 
library"
+HOMEPAGE="http://www.i-scream.org/pystatgrab/;
+SRC_URI="http://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/pystatgrab/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND=">=sys-libs/libstatgrab-0.91"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+python_prepare_all() {
+   append-flags -fno-strict-aliasing
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   "${PYTHON}" test.py || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-cairo/

2016-06-29 Thread Brian Evans
commit: cc5fed713be2309ef19f6347ccd7bbfc348c3861
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jun 29 17:33:10 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun 29 17:33:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc5fed71

dev-php/pecl-cairo: Replace php5-4 USE with php5-6

Builds OK with 5.6 and tests pass

Package-Manager: portage-2.3.0

 dev-php/pecl-cairo/pecl-cairo-0.3.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/pecl-cairo/pecl-cairo-0.3.2.ebuild 
b/dev-php/pecl-cairo/pecl-cairo-0.3.2.ebuild
index 22101e2..a4c6e27 100644
--- a/dev-php/pecl-cairo/pecl-cairo-0.3.2.ebuild
+++ b/dev-php/pecl-cairo/pecl-cairo-0.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI="5"
 
 DOCS="TODO"
 
-USE_PHP="php5-4 php5-5"
+USE_PHP="php5-5 php5-6"
 
 inherit php-ext-pecl-r2
 



[gentoo-commits] repo/gentoo:master commit in: app-arch/xdms/

2016-06-29 Thread Michael Palimaka
commit: 1e3f09e05fd96cf49f3cffe816fcb94b2a912703
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 17:32:20 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 17:32:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e3f09e0

app-arch/xdms: revision bump to avoid calling prepalldocs

Gentoo-bug: 587256

Package-Manager: portage-2.3.0

 app-arch/xdms/xdms-1.3.2-r1.ebuild | 32 
 1 file changed, 32 insertions(+)

diff --git a/app-arch/xdms/xdms-1.3.2-r1.ebuild 
b/app-arch/xdms/xdms-1.3.2-r1.ebuild
new file mode 100644
index 000..86711fc
--- /dev/null
+++ b/app-arch/xdms/xdms-1.3.2-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="xDMS - Amiga DMS disk image decompressor"
+HOMEPAGE="http://zakalwe.fi/~shd/foss/xdms;
+SRC_URI="http://zakalwe.fi/~shd/foss/xdms/${P}.tar.bz2;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+IUSE=""
+
+pkg_setup() {
+   tc-export CC
+}
+
+src_prepare() {
+   default
+   sed -i Makefile.in \
+   -e "s:COPYING::" \
+   -e "s:share/doc/xdms-{VERSION}:share/doc/xdms-${PF}:" || die
+   sed -i -e "s:-O2::" src/Makefile.in || die
+}
+
+src_configure() {
+   ./configure --prefix=/usr --package-prefix="${D}" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-libevent/

2016-06-29 Thread Brian Evans
commit: 3577c591294e9fd74e948db8b241fdc20b0436f7
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jun 29 17:20:52 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun 29 17:20:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3577c591

dev-php/pecl-libevent: Replace php5-4 USE with php5-6

Builds fine with PHP 5.6 API

Package-Manager: portage-2.3.0

 dev-php/pecl-libevent/pecl-libevent-0.1.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/pecl-libevent/pecl-libevent-0.1.0-r1.ebuild 
b/dev-php/pecl-libevent/pecl-libevent-0.1.0-r1.ebuild
index 025da6a..5109ed2 100644
--- a/dev-php/pecl-libevent/pecl-libevent-0.1.0-r1.ebuild
+++ b/dev-php/pecl-libevent/pecl-libevent-0.1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -7,7 +7,7 @@ PHP_EXT_NAME="libevent"
 PHP_EXT_INI="yes"
 PHP_EXT_ZENDEXT="no"
 
-USE_PHP="php5-5 php5-4"
+USE_PHP="php5-5 php5-6"
 inherit php-ext-pecl-r2
 
 KEYWORDS="~amd64 ~x86"



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

2016-06-29 Thread Michael Palimaka
commit: 68e5ed90fb29644cab393c5dc13dae43f1d92656
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 16:52:21 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 16:52:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68e5ed90

profiles: drop mask for removed app-admin/hwreport

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

diff --git a/profiles/package.mask b/profiles/package.mask
index ffbce78..f7bcff0 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -573,11 +573,6 @@ www-apps/trac-downloads
 # someone needs to investigate.
 >=net-libs/libzrtpcpp-4
 
-# Christian Faulhammer  (02 Sep 2014)
-# website not working anymore and will stay like this,
-# tool is useless. See bug 504734
-app-admin/hwreport
-
 # Sergey Popov  (28 Aug 2014)
 # Security mask, wrt bug #519650
 # If your application is broken due to this mask,



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

2016-06-29 Thread Michael Palimaka
commit: 2caefa0e130b39e94e8aae9015a2d5d27d7960d0
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 16:51:59 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 16:52:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2caefa0e

app-admin/hwreport: remove last rited package

Gentoo-bug: 504734

 app-admin/hwreport/Manifest   |  2 --
 app-admin/hwreport/hwreport-0.10.0.ebuild | 30 --
 app-admin/hwreport/hwreport-0.11.0.ebuild | 30 --
 app-admin/hwreport/metadata.xml   |  4 
 4 files changed, 66 deletions(-)

diff --git a/app-admin/hwreport/Manifest b/app-admin/hwreport/Manifest
deleted file mode 100644
index 73406cb..000
--- a/app-admin/hwreport/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST hwreport-0.10.0.tar.bz2 11171 SHA256 
34269554e3888a4a3486ab6290ce417ac3c4e38a2f12e5327900323e5c875567 SHA512 
6c3793040258455cdab6aecca7f540c118dd7fb9b1441ea4daf46288d2c285db7ee13a0b9e455a4018f288fa7977583c4a626956ac4628e54606c66a684a891a
 WHIRLPOOL 
12f04391e1fef9ad0e634000311dd0b0e8ed7ce8efe84862aea5e7f062688715ac754e238255d40fa24423d8d4c88664b2ca1f00991e08507759f51d4a0ab4d2
-DIST hwreport-0.11.0.tar.bz2 14337 SHA256 
b4337f91b2e9d6d500bfc9af7e32f1966db4346ff9b2ad869d09500189555160 SHA512 
591e76a9bd739da0b53eb39796f026b4bde75243cdbd5cbfc0774b4dfd067656108478f4a24ea7d5693ecd2acf3a11a11f617c9b187480bd963596d5fc5db3d9
 WHIRLPOOL 
4c22d1d45d44f0c6e9b9b629f3db7dbdaf971343fbe1f68a010cd34359b35c1141a1679e5a08cd7ef7304aeb66bab66f7de07efde18c359d476038d18fb78098

diff --git a/app-admin/hwreport/hwreport-0.10.0.ebuild 
b/app-admin/hwreport/hwreport-0.10.0.ebuild
deleted file mode 100644
index 13b65a4..000
--- a/app-admin/hwreport/hwreport-0.10.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit toolchain-funcs
-
-DESCRIPTION="Collect system informations for the hardware4linux.info site"
-HOMEPAGE="http://hardware4linux.info/;
-SRC_URI="http://hardware4linux.info/res/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc sparc x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=">=sys-apps/dmidecode-2.8 >=sys-apps/pciutils-2.2.0"
-
-src_compile() {
-   $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o scan-printers scan-printers.c
-}
-
-src_install() {
-   dobin hwreport scan-printers
-   dodoc README
-}
-
-pkg_postinst() {
-   elog "You can now generate your reports and post them on ${HOMEPAGE}"
-}

diff --git a/app-admin/hwreport/hwreport-0.11.0.ebuild 
b/app-admin/hwreport/hwreport-0.11.0.ebuild
deleted file mode 100644
index ec5c7ba..000
--- a/app-admin/hwreport/hwreport-0.11.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="Collect system informations for the hardware4linux.info site"
-HOMEPAGE="http://hardware4linux.info/;
-SRC_URI="http://hardware4linux.info/res/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-DEPEND="virtual/libusb:1"
-RDEPEND="${DEPEND}
-   >=sys-apps/dmidecode-2.8
-   >=sys-apps/pciutils-2.2.0"
-
-src_prepare() {
-   # fix syntax error
-   sed -e 's:perl -p -i -e "s@/var/lib/hwreport@$(vardir)@" -e 
"s@/usr/sbin@$(bindir)@" $(DESTDIR)$(crondir)/$(PKG):perl -p -i -e 
"s@/var/lib/hwreport@$(vardir)@;" -e "s@/usr/sbin@$(bindir)@" 
$(DESTDIR)$(crondir)/$(PKG):' -i "${S}"/Makefile
-   # respect LDFLAGS
-   sed -e 's:$(CFLAGS):$(CFLAGS) $(LDFLAGS):' -i Makefile
-}
-
-pkg_postinst() {
-   elog "You can now generate your reports and post them on ${HOMEPAGE}"
-}

diff --git a/app-admin/hwreport/metadata.xml b/app-admin/hwreport/metadata.xml
deleted file mode 100644
index 097975e..000
--- a/app-admin/hwreport/metadata.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-



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

2016-06-29 Thread Matt Thode
commit: 966fc7d4d6c8b1e4e3f40db938baf4d08f775cc3
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jun 29 16:23:34 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Jun 29 16:23:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=966fc7d4

media-sound/spotify: fast stable due to stupid upstream

Package-Manager: portage-2.2.28

 media-sound/spotify/spotify-1.0.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/spotify/spotify-1.0.32.ebuild 
b/media-sound/spotify/spotify-1.0.32.ebuild
index 7d974d6..862c683 100644
--- a/media-sound/spotify/spotify-1.0.32.ebuild
+++ b/media-sound/spotify/spotify-1.0.32.ebuild
@@ -12,7 +12,7 @@ SRC_URI="amd64? ( 
${SRC_BASE}${PN}-client_${PV}.96.g3c8a06e6-37_amd64.deb )
x86? ( ${SRC_BASE}${PN}-client_${PV}.96.g3c8a06e6-3_i386.deb )"
 LICENSE="Spotify"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="gnome pax_kernel pulseaudio"
 RESTRICT="mirror strip"
 



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

2016-06-29 Thread Matt Thode
commit: 3edb401f49f59b55ecf2f3f41b8ae4a232be0744
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jun 29 16:20:32 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Jun 29 16:21:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3edb401f

media-sound/spotify: bup for bug 585042

Package-Manager: portage-2.2.28

 media-sound/spotify/Manifest| 4 ++--
 .../spotify/{spotify-1.0.31.ebuild => spotify-1.0.32.ebuild}| 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-sound/spotify/Manifest b/media-sound/spotify/Manifest
index 8d04059..1dc5afe 100644
--- a/media-sound/spotify/Manifest
+++ b/media-sound/spotify/Manifest
@@ -1,2 +1,2 @@
-DIST spotify-client_1.0.31.56.g526cfefe-1_i386.deb 83870658 SHA256 
dd65396662be14178a6cc035bf0b13206e94d63588768c7338fadda64fb75213 SHA512 
264bed2ed35e7c8bbd9458d526e5cb9410189163840588ad6b35bcd53c09c8b607bad628b96803c3a147bafa23599e9c5b08b2b1941de7162a383f8ffdeb5c51
 WHIRLPOOL 
ccd6cb2e881712bb129169b9a92bccc428eacacf1eecce6ca3aa6581b0ec23a21d0c570fc8b5ba1dbd54306776ac9731a801207bf1fc4fbe5ca44a4cc809c853
-DIST spotify-client_1.0.31.56.g526cfefe-33_amd64.deb 80784488 SHA256 
403e0b69f9cf410ddb3f7f943d67f8340872ebf9beb4d7e45b0bc3ba9ee72322 SHA512 
861936f36f53fb1f6d99a41aab47b4e01f2cf1f6f2b458517d754727ded11bb42857ab4edb5f1dbb6ede474344dd753287f473efe6ca09e736ef444cfd054edc
 WHIRLPOOL 
98d0136c81ab930bc1d7f4a8f54fa4a6d8caa6cf625b4de9a5ad8d16dd3e6c3b715b95670f700334634402ca578126245104616eea28779e0f1060c4c227b941
+DIST spotify-client_1.0.32.96.g3c8a06e6-37_amd64.deb 80185200 SHA256 
30c62258e5064150f6e655c410e3a67873d0a5cd079601ea8ec5edd487d3655a SHA512 
e3f919c08eb9ddf7431a2ccea466422958d2e79c199418891a223174044a4fe6a3c99182e61640e5bfe1a0995e6cc02973d66ae3a98df873a1a252bca166d6a1
 WHIRLPOOL 
8b83f8afa94a2e8e32721ca76242f6bfc025dfc84346f96230605e567f043d61838329edc75aa6c7aceb6cfb419c50f38b9625594112a93d1ed82c13a5736714
+DIST spotify-client_1.0.32.96.g3c8a06e6-3_i386.deb 86918350 SHA256 
a60bb5e78b3849c595bd0c106fd6fbd39f5d7498688182d6a9f5d92c252c0ab7 SHA512 
367a3d7953688bd886132a198f293b19975b15c41332d014c395a01de16ae1d92d02d349425a2198911b69f97421d797d312baa7e59f148f91dae23a8d0484cf
 WHIRLPOOL 
b17089e0c96949038bfbe492a400b54cc719aa465f204afff3f638f1c96283d7500fd1eddbe06a919ee56631845bd8f8ccb89b06123a6618e2d34465bde8b91e

diff --git a/media-sound/spotify/spotify-1.0.31.ebuild 
b/media-sound/spotify/spotify-1.0.32.ebuild
similarity index 95%
rename from media-sound/spotify/spotify-1.0.31.ebuild
rename to media-sound/spotify/spotify-1.0.32.ebuild
index 1dfd834..7d974d6 100644
--- a/media-sound/spotify/spotify-1.0.31.ebuild
+++ b/media-sound/spotify/spotify-1.0.32.ebuild
@@ -8,11 +8,11 @@ inherit eutils fdo-mime gnome2-utils pax-utils unpacker
 DESCRIPTION="Spotify is a social music platform"
 HOMEPAGE="https://www.spotify.com/ch-de/download/previews/;
 SRC_BASE="http://repository.spotify.com/pool/non-free/${PN:0:1}/${PN}-client/;
-SRC_URI="amd64? ( ${SRC_BASE}${PN}-client_${PV}.56.g526cfefe-33_amd64.deb )
-   x86? ( ${SRC_BASE}${PN}-client_${PV}.56.g526cfefe-1_i386.deb )"
+SRC_URI="amd64? ( ${SRC_BASE}${PN}-client_${PV}.96.g3c8a06e6-37_amd64.deb )
+   x86? ( ${SRC_BASE}${PN}-client_${PV}.96.g3c8a06e6-3_i386.deb )"
 LICENSE="Spotify"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="gnome pax_kernel pulseaudio"
 RESTRICT="mirror strip"
 



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-oauth/

2016-06-29 Thread Brian Evans
commit: 62c458d82aa86554bf0b10bdbba6d3d3a698813a
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jun 29 16:18:43 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun 29 16:18:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62c458d8

dev-php/pecl-oauth: Version bump into new slot

Package-Manager: portage-2.3.0

 dev-php/pecl-oauth/Manifest  | 2 +-
 .../{pecl-oauth-2.0.0.ebuild => pecl-oauth-2.0.2.ebuild} | 9 ++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-php/pecl-oauth/Manifest b/dev-php/pecl-oauth/Manifest
index d35b475..b9312d8 100644
--- a/dev-php/pecl-oauth/Manifest
+++ b/dev-php/pecl-oauth/Manifest
@@ -1,2 +1,2 @@
 DIST oauth-1.2.3.tgz 45531 SHA256 
86bb5ee37afe672d4532ad784c7f711855c79f0dabf0acacafd5344ab6cf0195 SHA512 
ca61dbec8fa51679accb31eab90b8699c7780f2d60a83566ce05667148ee44b7dc70fd8235414d6a3a996b252ad4a236b3e8a549685fd7e890e0874029c455e1
 WHIRLPOOL 
20969ea78c25152ac8e32d0c726bd112bdc5cb2b8d2fc59401d2c43f3d8990ed51702235afb07f0b8af604a5cf7264661caff1a8fc6bc7db25e71d682583a69c
-DIST oauth-2.0.0.tgz 49031 SHA256 
f223a166e82ea51a241c229c5788e19dcafd8a1886ce2b7635cae29cb33c4f0e SHA512 
9d14297012a2e6c679e3377955b5d06e180c4d81926c1db6ec8cf503661b61e3290edcc9f5903c7e31e2316e98457f4758e3d0744dc2e0d3d1b26c6888e78cc2
 WHIRLPOOL 
072a8a495e27f2eb2ca308aa5e63c54c42ad19b487abb93860aeadb608f5237e7ae374543f7f8d78573d854b93262f39a9aad25728b811b2f9ab02c65510956b
+DIST oauth-2.0.2.tgz 49115 SHA256 
87ce1a5d585f439f0ead2683f2f7dca76d538df9143da681978356b5e1c6e8e8 SHA512 
b7aa9459542ec390a5420127d75607702ae6df6254f4e39acb62d35c6a39b8b7990499c279df07ce681081e455b55219c51df42fd516321f317465badf6d459d
 WHIRLPOOL 
5cec99d60d0b6f0f2b0f5d219a27fd144372451b38093d5722943fca5293c4c4d5edc82976a7125f4a473d1c8c796756a173988fddc24a6bec481c8038151c0c

diff --git a/dev-php/pecl-oauth/pecl-oauth-2.0.0.ebuild 
b/dev-php/pecl-oauth/pecl-oauth-2.0.2.ebuild
similarity index 81%
rename from dev-php/pecl-oauth/pecl-oauth-2.0.0.ebuild
rename to dev-php/pecl-oauth/pecl-oauth-2.0.2.ebuild
index a384846..6e1d041 100644
--- a/dev-php/pecl-oauth/pecl-oauth-2.0.0.ebuild
+++ b/dev-php/pecl-oauth/pecl-oauth-2.0.2.ebuild
@@ -7,15 +7,18 @@ PHP_EXT_NAME="oauth"
 PHP_EXT_INI="yes"
 PHP_EXT_ZENDEXT="no"
 
-USE_PHP="php7-0"
+USE_PHP="php5-6 php7-0"
 
 inherit php-ext-pecl-r2
 
+# Really only build for 7.0
+USE_PHP="php7-0"
+
 KEYWORDS="~amd64 ~x86"
 
 DESCRIPTION="OAuth is an authorization protocol built on top of HTTP"
 LICENSE="BSD"
-SLOT="0"
+SLOT="7"
 IUSE="examples"
 
 for target in ${USE_PHP}; do
@@ -26,4 +29,4 @@ for target in ${USE_PHP}; do
 done
 
 DEPEND="${PHPUSEDEPEND}"
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND} php_targets_php5-6? ( ${CATEGORY}/${PN}:0 )"



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

2016-06-29 Thread Brian Evans
commit: de783234241f5144ebea9370709a17ee126f341c
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jun 29 16:19:55 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun 29 16:19:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de783234

Move pecl-rrd and pecl-oauth >=2.0 to new slots

 profiles/updates/2Q-2016 | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/updates/2Q-2016 b/profiles/updates/2Q-2016
index a4752c3..d63bb7e 100644
--- a/profiles/updates/2Q-2016
+++ b/profiles/updates/2Q-2016
@@ -32,3 +32,5 @@ move app-crypt/letsencrypt-apache app-crypt/certbot-apache
 move net-misc/sx sys-cluster/sx
 slotmove >=dev-php/pecl-apcu-5.0 0 7
 move sys-apps/microcode-data sys-firmware/intel-microcode
+slotmove >=dev-php/pecl-rrd-2.0 0 7
+slotmove >=dev-php/pecl-oauth-2.0 0 7



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-rrd/

2016-06-29 Thread Brian Evans
commit: 54913602290e8f265fe8cf57ffdc42fafc77
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jun 29 16:07:42 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun 29 16:07:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5491

dev-php/pecl-rrd: Version bump into new slot

Package-Manager: portage-2.3.0

 dev-php/pecl-rrd/Manifest  |  2 +-
 .../pecl-rrd/{pecl-rrd-2.0.0.ebuild => pecl-rrd-2.0.1.ebuild}  | 10 +++---
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/dev-php/pecl-rrd/Manifest b/dev-php/pecl-rrd/Manifest
index 52d0e4f..9e5ea15 100644
--- a/dev-php/pecl-rrd/Manifest
+++ b/dev-php/pecl-rrd/Manifest
@@ -1,3 +1,3 @@
 DIST rrd-1.1.0.tgz 18639 SHA256 
3c31c9e07da55a57978a1e2801051ebfcad4a35fd1664e9bea63ecdfca0fcfdb SHA512 
5d6887fbe5e9f5589ab3876ecb187159b10727f4cd64d4aaaf98442c737aaa9e43394d7795b1eb06d62dc253bb98d4c40ab37520ccf54850b3306ef14225619a
 WHIRLPOOL 
4a7fab06d295cc4f0ebe96cd5bf68b12a889bd0048619ea9ad82639cb3ad08f4a9046102a164cd9c812f6e1c709998d4366fc94f2cb88ea465eac1c1769ebf0c
 DIST rrd-1.1.3.tgz 19229 SHA256 
0415ac51e09fe2e7a999d155d10d6af42ddf40ab0b4847a63ed1f9458533858e SHA512 
356264de1b967af0f78e25e3c0afcbec704dd3e49d828e08d21d744d5fcdc46f4cd7f7c118b4e283c20bcaf2a4c29e0ac9437c7f66ca0d260a76fddf7b9d3242
 WHIRLPOOL 
dbb3317985e47130ee03c4ba6284428d38e25849a8da9a3ada2437f4e5b276e79a104131a64aad0e244fe5b63d5d310d81090517efcd3b8a6e18992c1d6f
-DIST rrd-2.0.0.tgz 19212 SHA256 
b6dd68414cd9ce73fc487873b3feeecd4aac8f1b5bebece91c33fa3023a80ffd SHA512 
288965167f01ce5f3b2e1b1e4c223093a2fdae594104ee69163c0c71d7cc72c8bfbcc46a1bb5c21d165884929eeb4f7b0be083b9118ba543c2f4b8769f429117
 WHIRLPOOL 
be51b42ccbb5346fe253eb89c20074ba330f4e122288b92dd91ceff5eb77b1e09c1234ce2bacf08fe83e82a0428e181f88b1aa2a1301d2b9ab08d57daf33da21
+DIST rrd-2.0.1.tgz 18880 SHA256 
39f5ae515de003d8dad6bfd77db60f5bd5b4a9f6caa41479b1b24b0d6592715d SHA512 
b6f7173f54fcf49bf014cc6c78263c169cdf53dac66c12f5f88db7e01b49ea74da84a55f61deb25c866e6e2e74275ec48fc4a3d1b46719f66b5b7b7eb000b6b3
 WHIRLPOOL 
52825f29b2eb8462d14d21d13c5b9f4d06057d4150a85eb8dead2c2dc1152fcbb2b14821940e851e7bf3cb4172f0735223a6ffa7ff8634bfd862e40eaecb4fae

diff --git a/dev-php/pecl-rrd/pecl-rrd-2.0.0.ebuild 
b/dev-php/pecl-rrd/pecl-rrd-2.0.1.ebuild
similarity index 61%
rename from dev-php/pecl-rrd/pecl-rrd-2.0.0.ebuild
rename to dev-php/pecl-rrd/pecl-rrd-2.0.1.ebuild
index b649c43..847faf4 100644
--- a/dev-php/pecl-rrd/pecl-rrd-2.0.0.ebuild
+++ b/dev-php/pecl-rrd/pecl-rrd-2.0.1.ebuild
@@ -4,16 +4,20 @@
 
 EAPI=5
 
-USE_PHP="php7-0"
+# Define 5.6 here to have the {,REQUIRED_}USE generated
+USE_PHP="php7-0 php5-6"
 
 inherit php-ext-pecl-r2
 
+# But we really only build 7.0
+USE_PHP="php7-0"
+
 KEYWORDS="~amd64 ~x86"
 
 DESCRIPTION="RRDtool bindings for PHP"
 LICENSE="BSD"
 
-SLOT="0"
+SLOT="7"
 
 DEPEND=">=net-analyzer/rrdtool-1.4.5-r1[graph]"
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND} php_targets_php5-6? ( ${CATEGORY}/${PN}:0 )"



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

2016-06-29 Thread Patrick Lauer
commit: acf5be92ebd8075db33638e65673869c1dabe9ff
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 13:26:47 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 16:02:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acf5be92

dev-python/lz4: Bump

Package-Manager: portage-2.3.0

 dev-python/lz4/Manifest |  1 +
 dev-python/lz4/lz4-0.8.2.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-python/lz4/Manifest b/dev-python/lz4/Manifest
index b88f127..63a35a8 100644
--- a/dev-python/lz4/Manifest
+++ b/dev-python/lz4/Manifest
@@ -1,2 +1,3 @@
 DIST lz4-0.6.1.tar.gz 19830 SHA256 
590d1dca53b743e7fc38190fa674b20eea87d793a70910984ff58a6f6cf20160 SHA512 
c41f02f9ba855256e057141db7f11b0097f373cfcbf7bb9cf3b9337aebcd30bfe36ae3d643f3e5f594351f97d3e80c75b15c7ce1e3e2c7536f6daab811a642d8
 WHIRLPOOL 
1b7e081fe9994fe478965b9522b20146f097bdac7ff5bd491d4d05c0f8854eaff4144fe31089f8689d27b6dc3b6728bf00aa58e8ddd7bf0d4806dea52f27b736
 DIST lz4-0.7.0.tar.gz 26786 SHA256 
cd225744298568fd217577fc14a326a24835412374dadb5060db48f1af43eb48 SHA512 
fd7adc4919e70259e5b23b15919c4932354a4518360315a8d6c15c58cdccf21257fb6069bdf20e86a2461f254b50f4abd7296330fd77647ecc2ca49500eedd11
 WHIRLPOOL 
51e2200e72b3a5d222d6f9e5ec3ed14fc9f026a62943088d237a60c0b3d61f9862450aa63cfcacf2a7c5fb506025da82c34102c25bf54ad8e8fb938bfe570773
+DIST lz4-0.8.2.tar.gz 30818 SHA256 
6bf49061d73d69c453e892ace4586b99ccffc7de558f921d18b9418235692ac7 SHA512 
e516d5c3309f214fa422b040a0aacdda079395624dd4f5548ed7af637b1594012aac75b309cef260b41c10a623410f815fc089b54ca5d80955d5f2ead12841b1
 WHIRLPOOL 
0a91c5befd9e8d1593ffdf6e102ec4dfa0ac921530e5c570748fdd1be4e0d1a4367792d9226b92215eae764da4107f4370fbf35c5e3b0793d96afc07f330434b

diff --git a/dev-python/lz4/lz4-0.8.2.ebuild b/dev-python/lz4/lz4-0.8.2.ebuild
new file mode 100644
index 000..57032f9
--- /dev/null
+++ b/dev-python/lz4/lz4-0.8.2.ebuild
@@ -0,0 +1,29 @@
+# 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,3_5} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="LZ4 Bindings for Python"
+HOMEPAGE="https://pypi.python.org/pypi/lz4 
https://github.com/steeve/python-lz4;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND=""
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+# Tests still excluded by upstream
+
+python_prepare_all() {
+   sed \
+   -e '/nose/s:setup_requires:test_requires:g' \
+   -i setup.py || die
+   distutils-r1_python_prepare_all
+}



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

2016-06-29 Thread Patrick Lauer
commit: e8bf1ccc71dbe78e9d8eaec710ce14daa63b249c
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 13:29:04 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 16:02:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8bf1ccc

dev-python/toolz: Bump

Package-Manager: portage-2.3.0

 dev-python/toolz/Manifest   |  1 +
 dev-python/toolz/toolz-0.8.0.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-python/toolz/Manifest b/dev-python/toolz/Manifest
index a28e0d1..09f409e 100644
--- a/dev-python/toolz/Manifest
+++ b/dev-python/toolz/Manifest
@@ -2,3 +2,4 @@ DIST toolz-0.7.0.tar.gz 18692 SHA256 
8f88590f960c16db2146b6ecae31f9d048865612b69
 DIST toolz-0.7.1.tar.gz 19283 SHA256 
cc71fd92a2f9edbf554c23534150f13f0f589baf2404da4b42686f0b08085db5 SHA512 
57362f5f4a24ee4384e474b996d1195e9450c3583068632294f10cc342b9bb11d13ca811c83cc8f75bd845e14869cd1f3b96bf49e98ae677343fa2ab11a9d664
 WHIRLPOOL 
eca4afb9347a99ed8a36b858c23964645740d7cde98109f7f5fd54682d2c6315504b6823cd7c2c8d08cd340b64d78a43e97d76539543bb6775a34ce31d2d1b95
 DIST toolz-0.7.2.tar.gz 27275 SHA256 
56b2fc25d48337c39a30545ae28d643df28a2d63be12aae3c1336edc485098b1 SHA512 
f7a1433060820c5ce1cd0892e8487b2fb6a49631a9155dbc94fa17601f5951797ef5bc9a9df3bc83c384c45a7965392aa68fd2f43cec0f651edfb011d4bbf458
 WHIRLPOOL 
121061d9f0a474e7de9adec34c7ede336a700f9769be338a4987cd7bfe7cdf4f66c7f8dbbef15db2db4f68a59f1822b2d134b01be7cb8a90cc632cfed9f96fe9
 DIST toolz-0.7.4.tar.gz 29155 SHA256 
43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd SHA512 
e6e20d25cd0d9fed6f833b6d238b9e863cec7fe0855857db9507d1cfdf74453c29cbf18e03af8186e2b817845ce88093bb825c30198c8505edbd0292452397f1
 WHIRLPOOL 
b0cb09610f8863b53eb1aa47ca7646cc9fa5994fd0402fb9233eac45ea062b57486559cc054e8e909f7a61a8f58e0bccec0b73673bc27c1af12650056e6ce238
+DIST toolz-0.8.0.tar.gz 40768 SHA256 
e8451af61face57b7c5d09e71c0d27b8005f001ead56e9fdf470417e5cc6d479 SHA512 
678ec3120d1306fe0e79824caaa03060ba780c464e783d7e20c4149483babe63646b3facaec63ee4017b32be07cd052f4ebcdf73ba8f7734e80873df7127d469
 WHIRLPOOL 
1098220b873ce8a904ad65a6db935cec84eda3693ab447a620dfdb2b3cddedde1dda3266f03d6d56bd612feb5d0095ec4a2c00d3caef4b8acb368f61166616e0

diff --git a/dev-python/toolz/toolz-0.8.0.ebuild 
b/dev-python/toolz/toolz-0.8.0.ebuild
new file mode 100644
index 000..bf826ef
--- /dev/null
+++ b/dev-python/toolz/toolz-0.8.0.ebuild
@@ -0,0 +1,20 @@
+# 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,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="List processing tools and functional utilities"
+HOMEPAGE="https://pypi.python.org/pypi/toolz;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=""
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2016-06-29 Thread Patrick Lauer
commit: 29285f2a238321eac3f50d1bda0ad7a3113ca608
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 16:02:12 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 16:02:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29285f2a

dev-python/cytoolz: Bump

Package-Manager: portage-2.3.0

 dev-python/cytoolz/Manifest |  1 +
 dev-python/cytoolz/cytoolz-0.8.0.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/dev-python/cytoolz/Manifest b/dev-python/cytoolz/Manifest
index d937ad2..fa993fd 100644
--- a/dev-python/cytoolz/Manifest
+++ b/dev-python/cytoolz/Manifest
@@ -3,3 +3,4 @@ DIST cytoolz-0.7.2.tar.gz 281930 SHA256 
0800949df710aa487f52b1a9f97d8844e81e0706
 DIST cytoolz-0.7.3.tar.gz 304597 SHA256 
202eb77cf2405c702c2172e5c2e66e3e2611f866640c99b38f24f96ad680dea8 SHA512 
a9e83cb22b3b9af0c28754696c59a081e74e03b23f63eaf7bf31526d33b9d645bb82ec98e650e1a6c17d367951cbea6417c6b8c69ff3d80e2d45a8a44c97ed16
 WHIRLPOOL 
fd16958c1158be3265c22a27d8c5a12510e20038cb846dac13ce6f24060096b64030bc4aea5f0c48bff6464b8fab048c3e3b0aef604e69693b38d5c9b7056051
 DIST cytoolz-0.7.4.tar.gz 335433 SHA256 
9c2e3dda8232b6cd5b84b8c8df6c8155c2adeb8734eb7ec38e189affc0f2eba5 SHA512 
bf79ea175567bfbc438019a53fa94e2a38ab635cca9169043d1362487ba9ac15f350530bbdf409f666e3cc6a8b0a9bc63db25ba5f77bcbe75bc8528a6a367ecb
 WHIRLPOOL 
e3e0805d6e507dd08269b2fd8b97701d133cef0487cf2d0cb55820289c48ad5d2cb3cc6f7a881fc95436df02518abcda6b0e16865e3ee062564caeb2fe46b7c5
 DIST cytoolz-0.7.5.tar.gz 334818 SHA256 
329b29cf0fca3978a875f802fc9045e6a18c1702d8c55b30ccc34e137d271d5a SHA512 
0db30dfdacc98300b58da492679ffb34f5601281d146a21f3165b862eefd1752a509935378d2fbbfde5d1bfa0448c5d175e356fdec82919c6afd85993c6a7116
 WHIRLPOOL 
2e2bb4b77c6334a9159f6409cc51d8b85b4a2a017322ff3750d04b79c014e2fd70a43fb3d224bd526950648c71e7385e16b17f5588692f2ece98582492e854ec
+DIST cytoolz-0.8.0.tar.gz 349493 SHA256 
2239890c8fe2da3eba82947c6a68cfa406e5a5045911c9ab3de8113462372629 SHA512 
08a97312602b3bd71cb9a3b6f879121f739c73065210bcbac227e366112b2157d479912040296d58c5aa79d3fab8496fb92b12e0ee8df0cca15f46f151312b73
 WHIRLPOOL 
857501b3806f00ff65240ed2b301e62202d92ae535879a952782d6d81950d0c2c6721bfe08d581d4fda699209a624a1ca667509c4901910444099b23d5741637

diff --git a/dev-python/cytoolz/cytoolz-0.8.0.ebuild 
b/dev-python/cytoolz/cytoolz-0.8.0.ebuild
new file mode 100644
index 000..eda9176
--- /dev/null
+++ b/dev-python/cytoolz/cytoolz-0.8.0.ebuild
@@ -0,0 +1,38 @@
+# 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="Cython implementation of Toolz: High performance functional 
utilities"
+HOMEPAGE="https://pypi.python.org/pypi/cytoolz;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+# Informed by author the dep in toolz is not only required but the
+# tests are version sensitive.
+# https://github.com/pytoolz/cytoolz/issues/57
+RDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}]
+   >=dev-python/toolz-0.8[${PYTHON_USEDEP}] )"
+
+python_compile() {
+   python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+
+   distutils-r1_python_compile
+}
+
+python_test() {
+   pushd "${BUILD_DIR}"/lib/ > /dev/null
+   PYTHONPATH=.:${PN} nosetests --with-doctest ${PN} || die "tests failed 
under ${EPYTHON}"
+   popd > /dev/null
+}



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

2016-06-29 Thread Martin Mokrejs
commit: dfe4740e56768cd9d22ae0717e8f3375290dd365
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Wed Jun 29 15:35:20 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Wed Jun 29 15:35:20 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=dfe4740e

sci-biology/exonerate: fix possible typo from commit 
5f9c9c1d2a68a9a5f29d3c060ff807becd70fe5f

Package-Manager: portage-2.2.28

 sci-biology/exonerate-gff3/exonerate-gff3-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-biology/exonerate-gff3/exonerate-gff3-.ebuild 
b/sci-biology/exonerate-gff3/exonerate-gff3-.ebuild
index a2c98e8..fda6c78 100644
--- a/sci-biology/exonerate-gff3/exonerate-gff3-.ebuild
+++ b/sci-biology/exonerate-gff3/exonerate-gff3-.ebuild
@@ -35,7 +35,7 @@ src_prepare() {
sed \
-e 's: -O3 -finline-functions::g' \
-i configure.in || die
-   mc configure.in configure.ac
+   mv configure.in configure.ac
autotools-utils_src_prepare
 }
 



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

2016-06-29 Thread Michael Palimaka
commit: c3abcf88c33bc0258bc5bdd1c25e00bd3e7907e5
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 15:31:59 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 15:32:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3abcf88

profiles: mask kde-apps/mplayerthumbs for removal

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 0f0b506..ffbce78 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Michael Palimaka  (29 Jun 2016)
+# No longer released upstream. Use kde-apps/ffmpegthumbs instead.
+# Masked for removal in 30 days.
+kde-apps/mplayerthumbs
+
 # Johannes Huber  (28 Jun 2016)
 # Masked for removal in 30 days. Dead upstream. Was only
 # useful with Nepomuk, superseded by Baloo long time ago.



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

2016-06-29 Thread Michael Palimaka
commit: 5acc334678839d9a183a184d2d1e91b5add1caef
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 15:26:10 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 15:32:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5acc3346

kde-apps/kdemultimedia-meta: kde-apps/mplayerthumbs is being removed

Package-Manager: portage-2.3.0

 kde-apps/kdemultimedia-meta/kdemultimedia-meta-15.12.3.ebuild | 2 --
 kde-apps/kdemultimedia-meta/kdemultimedia-meta-4.14.3.ebuild  | 5 ++---
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/kde-apps/kdemultimedia-meta/kdemultimedia-meta-15.12.3.ebuild 
b/kde-apps/kdemultimedia-meta/kdemultimedia-meta-15.12.3.ebuild
index ee3061d..7931bb5 100644
--- a/kde-apps/kdemultimedia-meta/kdemultimedia-meta-15.12.3.ebuild
+++ b/kde-apps/kdemultimedia-meta/kdemultimedia-meta-15.12.3.ebuild
@@ -14,8 +14,6 @@ HOMEPAGE="
 KEYWORDS="amd64 x86"
 IUSE="+ffmpeg"
 
-# Add back whenever it is ported - no change since 4.10
-#  mplayer? ( $(add_kdeapps_dep mplayerthumbs) )
 RDEPEND="
$(add_kdeapps_dep audiocd-kio)
$(add_kdeapps_dep dragon)

diff --git a/kde-apps/kdemultimedia-meta/kdemultimedia-meta-4.14.3.ebuild 
b/kde-apps/kdemultimedia-meta/kdemultimedia-meta-4.14.3.ebuild
index f7f15c5..9e14aec 100644
--- a/kde-apps/kdemultimedia-meta/kdemultimedia-meta-4.14.3.ebuild
+++ b/kde-apps/kdemultimedia-meta/kdemultimedia-meta-4.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ HOMEPAGE="
https://multimedia.kde.org/
 "
 KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="+ffmpeg mplayer"
+IUSE="+ffmpeg"
 
 RDEPEND="
$(add_kdeapps_dep dragon)
@@ -21,6 +21,5 @@ RDEPEND="
$(add_kdeapps_dep kscd)
$(add_kdeapps_dep libkcddb)
$(add_kdeapps_dep libkcompactdisc)
-   mplayer? ( $(add_kdeapps_dep mplayerthumbs) )
ffmpeg? ( $(add_kdeapps_dep ffmpegthumbs) )
 "



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

2016-06-29 Thread Michael Palimaka
commit: 9dfdbe8ec3937daa96f58cdecbd6eb647ffd1573
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 15:25:14 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 15:32:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dfdbe8e

kde-apps/dolphin: kde-apps/mplayerthumbs is being removed

Package-Manager: portage-2.3.0

 kde-apps/dolphin/dolphin-4.14.3-r1.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild 
b/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild
index 198fa72..7eb4726 100644
--- a/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild
+++ b/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild
@@ -30,10 +30,7 @@ RDEPEND="${DEPEND}
$(add_kdeapps_dep konsolepart)
thumbnail? (
$(add_kdeapps_dep thumbnailers)
-   || (
-   $(add_kdeapps_dep ffmpegthumbs)
-   $(add_kdeapps_dep mplayerthumbs)
-   )
+   $(add_kdeapps_dep ffmpegthumbs)
)
 "
 



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

2016-06-29 Thread Michael Palimaka
commit: 860ee77afbdf23c147152327f9756522ddb1cedc
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun 29 15:28:02 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun 29 15:32:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=860ee77a

media-gfx/digikam: kde-apps/mplayerthumbs is being removed

Package-Manager: portage-2.3.0

 media-gfx/digikam/digikam-4.14.0-r1.ebuild | 5 +
 media-gfx/digikam/digikam-4.4.0-r1.ebuild  | 2 --
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/media-gfx/digikam/digikam-4.14.0-r1.ebuild 
b/media-gfx/digikam/digikam-4.14.0-r1.ebuild
index c8e12e9..bea1bc9 100644
--- a/media-gfx/digikam/digikam-4.14.0-r1.ebuild
+++ b/media-gfx/digikam/digikam-4.14.0-r1.ebuild
@@ -54,10 +54,7 @@ CDEPEND="
 RDEPEND="${CDEPEND}
$(add_kdeapps_dep kreadconfig)
media-plugins/kipi-plugins:4
-   video? ( || (
-   $(add_kdeapps_dep ffmpegthumbs)
-   $(add_kdeapps_dep mplayerthumbs)
-   ) )
+   video? ( $(add_kdeapps_dep ffmpegthumbs) )
 "
 DEPEND="${CDEPEND}
dev-cpp/eigen:3

diff --git a/media-gfx/digikam/digikam-4.4.0-r1.ebuild 
b/media-gfx/digikam/digikam-4.4.0-r1.ebuild
index 2fbd31a..b3b776b 100644
--- a/media-gfx/digikam/digikam-4.4.0-r1.ebuild
+++ b/media-gfx/digikam/digikam-4.4.0-r1.ebuild
@@ -60,8 +60,6 @@ RDEPEND="${CDEPEND}
video? (
|| (
kde-apps/ffmpegthumbs:4
-   kde-apps/mplayerthumbs:4
-   $(add_kdeapps_dep mplayerthumbs)
$(add_kdeapps_dep ffmpegthumbs)
)
)



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

2016-06-29 Thread Jason Donenfeld
commit: b238a50baf7b929563cd25af1d5bed68e5f5be1c
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Wed Jun 29 14:59:34 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Wed Jun 29 14:59:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b238a50b

net-misc/wireguard: fix little details

 net-misc/wireguard/wireguard-.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/wireguard/wireguard-.ebuild 
b/net-misc/wireguard/wireguard-.ebuild
index 675c751..bfc0a9c 100644
--- a/net-misc/wireguard/wireguard-.ebuild
+++ b/net-misc/wireguard/wireguard-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=6
 
-inherit linux-mod linux-info
+inherit linux-mod
 
 DESCRIPTION="Simple yet fast and modern VPN that utilizes state-of-the-art 
cryptography."
 HOMEPAGE="https://www.wireguard.io/;
@@ -39,8 +39,8 @@ pkg_setup() {
 }
 
 src_compile() {
-linux-mod_src_compile
-emake -C src/tools
+   linux-mod_src_compile
+   emake -C src/tools
 }
 
 src_install() {



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

2016-06-29 Thread Brian Evans
commit: 22bb445c0eccfe59c656d49ecb2396d7ead3c2cb
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jun 29 14:48:05 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun 29 14:48:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22bb445c

dev-db/mariadb: Version bump to 10.0.26

Package-Manager: portage-2.3.0

 dev-db/mariadb/Manifest   |   2 +
 dev-db/mariadb/mariadb-10.0.26.ebuild | 185 ++
 2 files changed, 187 insertions(+)

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index f25e946..c192f77 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -1,6 +1,7 @@
 DIST mariadb-10.0.23.tar.gz 57394548 SHA256 
156eed69892834be66736aebe0a17a76d5031fd1c2f481a82228ff33bb7ba274 SHA512 
c3b6d33efeb720bcffc3c20191726671c5c9ec96da0539d9a4df34051a16770e8fef07ee43efdd79e76be50b0e007519325d39b000de3843a8c6af3671e989a3
 WHIRLPOOL 
2de6816353c4d0873a038255dadd296433709b55cf794021f5107e8e5657afb98dadebc89e8d93747a105d70b03b9c02edae47be8986d206240d2d894fd83c8e
 DIST mariadb-10.0.24.tar.gz 57438082 SHA256 
65de16f5f9b1696e2a537bc7a99d122bc38fa77941ba2e65d8cdf363c8449094 SHA512 
57c91edd45e779401f934b18364bce3b933fc096647727e586c2fc6543ddcec60662b46ffaa4f950a84e927dac38f55547117761d9bd7a29e5c38abed7164482
 WHIRLPOOL 
1753a7fb407e4e39ceedb57fb7d22a19e64b586e675db03ed0449e119e2c314a13344714853d12f194306a9fa9496bd1e2a79fc1245fd0dd4eb607a0edf62d64
 DIST mariadb-10.0.25.tar.gz 57459461 SHA256 
4540832c18112a332f61f4eeb57140890c4e2188ae12b312f4e2e8a0363553e4 SHA512 
7d07834dcd5a89ac276c0a85ca3ab99c630cc3768d3576ac7c1038698e3633803ae0ec0f27619c271ccd79371885f6b3f2a67d36b17ecf76432ba90760fbb96d
 WHIRLPOOL 
011400ec5d2fc99d4426315cb5190cf2888d65f47535bfa7cc0c97b89915a029ec76d956dbc4635a18bcd42bc84905da08ea73c6c75eb9e955385b5f586c737c
+DIST mariadb-10.0.26.tar.gz 57621647 SHA256 
578538d9b51f455cbd0cb021f523284a45480b4bba853b4a79f3497c49ec40c0 SHA512 
7291a91cc0e17bcedbba6e93cf05679f3119efcd588b249beb423e9ac5152d1c0add9321a4dc0a59ac94ca16d5d733983234a64b7b555183b6312a045dc8991c
 WHIRLPOOL 
c09aba18191c476920fa2b39558ed5e64df1e77029ed913ffc2f34299402b89b03a3fefc711295cb58db346e84d8865fb8dabe78daa47e996c257dd9ea4a5d84
 DIST mariadb-10.1.12.tar.gz 55254244 SHA256 
795f466ac0e4df148981b85df735855d41614abaedcda51520a513a4ad60f4e7 SHA512 
c0f28de80e22b7fc1f74946f309c364601036aefeea2bb464b11e3658e102dd80ef0d6d156d0af67af76e54741e60334be8c48630766141b01b885d53068b659
 WHIRLPOOL 
28ceaa2445a89c82c91ca4f6806fb78fd40705b823b95817625e6fc97112f9a5eddfd4e1d1527c5ad588a9fec33353e4f88174272409637090d8495175a8cd3d
 DIST mariadb-10.1.13.tar.gz 55272572 SHA256 
21e1c7da1421146c69f5e8077333aaac06778a87046a1943ee4f449fbcefc00d SHA512 
fdaa35f1a93e2a124339f3a4a85d7247c223ffec2cd7ed36f029f63a76bd348b8f41f491e5b2f81f53bed82ed79bc89b62dd6966d5a946910299070ece667b5e
 WHIRLPOOL 
0ff2891af910380749be8b31bdacec02777cc4f2b474172b3257cecc10b900222c3c089515c9fd4621ea75ea58179b1f1336b7c26185ec43282df0ce661e621d
 DIST mariadb-10.1.14.tar.gz 55341017 SHA256 
18e71974a059a268a3f28281599607344d548714ade823d575576121f76ada13 SHA512 
dad8f296320f95b2ab2f3a9e888c1829df63229cb8c76161ad004c6c1a1a488f0db7918e3e655de04281dc65aab71f6e5d9ecab75e6071521799631355cfeadf
 WHIRLPOOL 
6788513c58e1b0875dba4a2f661a161e6d7a355503ff018c75cc298b8b2609e2d720a1c572904214aebc34aa71e394bb5eb1df8f6808ecf39b84aa72656b5a6a
@@ -8,3 +9,4 @@ DIST mariadb-5.5.49.tar.gz 45738390 SHA256 
2c82f2af71b88a7940d5ff647498ed78922c9
 DIST mysql-extras-20150509-1847Z.tar.bz2 1494301 SHA256 
de9c9fbb67998604cb3c0409842e4601646c8ad17f2aa301f55ffd4aed7a483d SHA512 
f87d96ab8c35236d4453182c49f87f6e703af9dc217916546e4dd7368caa18a2340c9063decd96c22251d1097d7e2cac58bef30e6ff75c23aedf8926dbc3d3b4
 WHIRLPOOL 
f60297c8ee1dfd9867ed6b29a8b04a002f23bc36b1e8d9b5db30e1e454a49fe06ffc37b10d934b11235364eecdc62beb50ce24690ab3d07a50056357906fa0fa
 DIST mysql-extras-20151223-1501Z.tar.bz2 295335 SHA256 
8b5100aef8e0f8f6302bb389555dc7c91dd78ac1e4eb39bfd4f9d9d0b2321971 SHA512 
84dc1dab6651aea51b4b2bad4304ae19dbedbda6e9c8f49377d01adb9d42fed7ce0018951a6694fd09f316ce99816c0269f2787b490cad6838d729f365ad4a6d
 WHIRLPOOL 
30ec83b7054eaa711cfbb57b39c0696a028aee862ed2ca5dfe2515ab1bd625a28175e4d789d9ba2c67692a1b1429e08cc50d72132ac002ccb2be2d26c91cfdfb
 DIST mysql-extras-20160131-0252Z.tar.bz2 295849 SHA256 
442966972d2f9d9bcc3a27c1df31ed5a5bbcba13fa7ca1254c8964e9d0b7805e SHA512 
d8018fd46c94a344fcbcdedfcdee4b3d75878b879b28cd4d07dfb9f29e62df217b243cf43f1e80ebca3507faef9c37c14c21372db84f9ba487c98ed32d7f3c0b
 WHIRLPOOL 
4416bb455ed5862dd1d012ffe6fa6e65d5d24bb60b5b5b71adac2c3ccebb46a3ec75f82a7eef75ff5c37d3a0ab91d191b2395beb643e71a98ee0238b13d4b7fe
+DIST mysql-extras-20160629-1442Z.tar.bz2 299152 SHA256 
c90979db927772468f8b398c640469ff4740f950068e740c04ff60500e714766 SHA512 
1de46daf6b4534dadf9d3eff8d5d557778e63b5e04aedb57fe56d3016ba93a9d55d80faee38f77852d23da5169879e4f25b3386abe44ee8d961db7ffc4145715
 WHI

[gentoo-commits] proj/mysql-extras: New tag: mysql-extras-20160629-1442Z

2016-06-29 Thread Brian Evans
commit: 
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun 29 14:42:28 2016 +

New tag: mysql-extras-20160629-1442Z




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

2016-06-29 Thread Martin Mokrejs
commit: c3337f0e8f4f84c026a71978a4c0cf8e444f4ae9
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Wed Jun 29 13:56:55 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Wed Jun 29 13:56:55 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c3337f0e

sci-biology/assembly-stats: remove obsolete comment

Package-Manager: portage-2.2.28

 sci-biology/assembly-stats/assembly-stats-.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sci-biology/assembly-stats/assembly-stats-.ebuild 
b/sci-biology/assembly-stats/assembly-stats-.ebuild
index 442f3db..b60e7a9 100644
--- a/sci-biology/assembly-stats/assembly-stats-.ebuild
+++ b/sci-biology/assembly-stats/assembly-stats-.ebuild
@@ -18,9 +18,7 @@ IUSE=""
 DEPEND=">=dev-cpp/gtest-1.7.0"
 RDEPEND="${DEPEND}"
 
-# installs into /usr/local/bin
-# should not even try to compile bundled gtest
-
+# TODO: should not even try to compile bundled gtest
 src_prepare(){
eapply_user
sed -e 's#/usr/local/bin#${EPREFIX}/usr/bin#' -i CMakeLists.txt || die



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

2016-06-29 Thread Martin Mokrejs
commit: 7b6d027acdacbcedae9b428a4ae8a83134a58263
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Wed Jun 29 13:54:11 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Wed Jun 29 13:54:11 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=7b6d027a

sci-biology/assembly-stats: respect EPREFIX

Package-Manager: portage-2.2.28

 sci-biology/assembly-stats/assembly-stats-.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/sci-biology/assembly-stats/assembly-stats-.ebuild 
b/sci-biology/assembly-stats/assembly-stats-.ebuild
index 895aa9a..442f3db 100644
--- a/sci-biology/assembly-stats/assembly-stats-.ebuild
+++ b/sci-biology/assembly-stats/assembly-stats-.ebuild
@@ -20,3 +20,8 @@ RDEPEND="${DEPEND}"
 
 # installs into /usr/local/bin
 # should not even try to compile bundled gtest
+
+src_prepare(){
+   eapply_user
+   sed -e 's#/usr/local/bin#${EPREFIX}/usr/bin#' -i CMakeLists.txt || die
+}



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

2016-06-29 Thread Patrick Lauer
commit: b91199f8c4f9520e855a9017cf337921cddcad64
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 11:05:07 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 13:20:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b91199f8

dev-python/contextlib2: Bump

Package-Manager: portage-2.3.0

 dev-python/contextlib2/Manifest |  1 +
 dev-python/contextlib2/contextlib2-0.5.3.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-python/contextlib2/Manifest b/dev-python/contextlib2/Manifest
index 4317aad..af2562f 100644
--- a/dev-python/contextlib2/Manifest
+++ b/dev-python/contextlib2/Manifest
@@ -1,2 +1,3 @@
 DIST contextlib2-0.4.0.tar.gz 18741 SHA256 
55a5dc78f7a742a0e756645134ffb39bbe11da0fea2bc0f7070d40dac208b732 SHA512 
622762c5490f0ff3e4b421a63bccce8fe0753977112ee0db9640dad31093c40c8a331f3d7cade9925f17903eaeaa376925ef607d7a440170c7c5ec1c8e04f56a
 WHIRLPOOL 
b1b2b753b15cb5124ebc378acf6b959839e727a53d3a096eea5b04404fc059f6a1b49b9fa23cc6310ad1b9bcfa655a82088af0906a74f8326d7bf57f3793440c
 DIST contextlib2-0.5.1.tar.gz 25186 SHA256 
227c79e126e8a8904a81d162750581ed3d49af2395a3100be7067b7296d33d45 SHA512 
da3a954a52a0f036e0b2d949bf4e73f4551eb637944eae5f6f421a1c22b2177dcfa56984a6c77692bb92713cf73a0df02b9159268b428550651fb7be97074613
 WHIRLPOOL 
b970100478d107ce89ea9a21d670767cae8921acc095922fb82a3b1c19eeecb98bc326888e97ac9fd5b9dec71f2a69b769693f2a07ecb48060b3b76353ad1ade
+DIST contextlib2-0.5.3.tar.gz 26415 SHA256 
30e500f13921c73c96f49a6dd2adfbdd92bc3fae12183e91b06b2e4583486206 SHA512 
9d4ba9d10ec0e222f8e76ad4704b83f89892fe503dcf558fde7a8e2bfefe35f2292411843cdb7bae3f8383a9f27ff851f6bc566314e1ae76e2dcefc29fc712e2
 WHIRLPOOL 
90b022aa1c141accd29816bfdedd4b12402e826b4e707e4086ccf842e8149eb35afd131bad638eda0c3a57ba308d1605a16d55af00827753abd7336066eb2a99

diff --git a/dev-python/contextlib2/contextlib2-0.5.3.ebuild 
b/dev-python/contextlib2/contextlib2-0.5.3.ebuild
new file mode 100644
index 000..09a8aed
--- /dev/null
+++ b/dev-python/contextlib2/contextlib2-0.5.3.ebuild
@@ -0,0 +1,24 @@
+# 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,3_5} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Backports and enhancements for the contextlib module"
+HOMEPAGE="https://pypi.python.org/pypi/contextlib2;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="PSF-2.4"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+DEPEND="test? ( dev-python/unittest2[${PYTHON_USEDEP}] )"
+
+python_test() {
+   "${PYTHON}" test_contextlib2.py || die "Tests fail for ${EPYTHON}"
+}



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

2016-06-29 Thread Patrick Lauer
commit: eb321b7700eb61e5f2d020577b0746e895d4346a
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 13:20:30 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 13:20:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb321b77

dev-python/alabaster: Bump

Package-Manager: portage-2.3.0

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

diff --git a/dev-python/alabaster/Manifest b/dev-python/alabaster/Manifest
index 9ffbf84..e79aaa8 100644
--- a/dev-python/alabaster/Manifest
+++ b/dev-python/alabaster/Manifest
@@ -1,2 +1,3 @@
 DIST alabaster-0.7.6.tar.gz 16598 SHA256 
309d33e0282c8209f792f3527f41ec04e508ff837c61fc1906dde988a256deeb SHA512 
90058e56365c59a4eed6034273ea83132fcf77ee26e3dfd2d9aa0233657192e1f32d8f40cd6477e307d063d0136ea5e18b94c6c0874a378d6386874dceccfdc8
 WHIRLPOOL 
2249f055772ce7a389df88a4a659a9a2b0b7c45992d9e225f93ecc79c9038c89474554fdf3557c78ff645242cffa0f1c4822f1b08831f1943140244931b7c812
 DIST alabaster-0.7.7.tar.gz 18996 SHA256 
f416a84e0d0ddbc288f6b8f2c276d10b40ca1238562cd9ed5a751292ec647b71 SHA512 
e19ec193d49ff5adf4552c1e3f9c77845045fd97cdb26285e774124960866bf790922a421cc70a8346f1bc98c1a5aa8b70211d4589e8429a9df4d4577880c0df
 WHIRLPOOL 
a9ba98e82461be443a3d7f1f19683db07612f28726c69b2c05038be9caaae70db5aa52f750ddb18c657dde2f6943d3265901460167eb1cb1e0889a5a251f9a68
+DIST alabaster-0.7.8.tar.gz 21030 SHA256 
a1cb1b94fcc192ff74ca212d6ef5cb543bb169cfe7991c2b9df256bb354c1fff SHA512 
43f159cfe5657b7b22dd9faed106ed8c9dca54d56a6cd850570a798cdc4919eba734457f75ecac293cd44efba83b2dd264fa903bbd8cbbe4939a7a211613dcd9
 WHIRLPOOL 
8dae4e88abef6b7e39fe0ea8aafdec5abf6345389d8d466011cd5454c8fce292b8a3d2d9cc58523632519abd9a69af600072f5a44ec75410f137a190edd64ce5

diff --git a/dev-python/alabaster/alabaster-0.7.8.ebuild 
b/dev-python/alabaster/alabaster-0.7.8.ebuild
new file mode 100644
index 000..265b271
--- /dev/null
+++ b/dev-python/alabaster/alabaster-0.7.8.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A configurable sidebar-enabled Sphinx theme"
+HOMEPAGE="https://github.com/bitprophet/alabaster;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+SLOT="0"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2016-06-29 Thread Patrick Lauer
commit: 5a0cc539ffebe302ef97464c68d20ba21da4e48e
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jun 29 11:18:17 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jun 29 13:20:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a0cc539

dev-python/pyte: Bump

Package-Manager: portage-2.3.0

 dev-python/pyte/Manifest  |  1 +
 dev-python/pyte/pyte-0.5.2.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-python/pyte/Manifest b/dev-python/pyte/Manifest
index d6a6e4e..c5b1627 100644
--- a/dev-python/pyte/Manifest
+++ b/dev-python/pyte/Manifest
@@ -1,3 +1,4 @@
 DIST pyte-0.4.10.tar.gz 44410 SHA256 
9c492bacc628c2e88fe3a5cb70dcd361b544baa46cd51435861e48068a896ecf SHA512 
64ee60285c621cf13e24bb7e22e541bb66ed4eb2fa5cb371e0051d65e96766ae630c15206b0f0ee3f98dff87a82517b65dd9b322445439d97a92dd226a54969f
 WHIRLPOOL 
bd7f1526cf58e4ba31236d8d7f4f7e352110a70c155dfdf21b84b497262f9e8106f5efbdc30e42733cd27f9e430322ab4fceaec8f18267e09b7ccc0ea52636fb
 DIST pyte-0.4.9.tar.gz 43730 SHA256 
3b1d3b9df29e24f6ae3e9c277d830a01bbb610bf88e6bb4c8255a25c00472ba3 SHA512 
551f464282db7bd4eadf53358619651a6bac59868939f30ee3f33255a275ec321d773c075e786f28861824ed005282ec7aac11a63ced173fe8a1aacbfa9e2e0c
 WHIRLPOOL 
20eac26136cdc906d40ea0b409be99959443fd2b24143a29223f78f42986f52f4e4b99c0817a22ed0edcf2b59e1d5961fac0cf4cc32d1430f71f64b532b9e951
 DIST pyte-0.5.1.tar.gz 49849 SHA256 
d2cf77ef6395c6b97d5c10ee47f38d348114170e504fc55a043d4c7dd1aea6e1 SHA512 
7077af73b91a990b03689b49172f2ec4ece98f132021bac2c3adbf1a61d7b868acdb400400bb43bb51ce3873cb9a5dc365662e0689cebf058151476c8cb69e9b
 WHIRLPOOL 
5b79a96e45183d9ff6c0f7ac9a16be0eb96cad1a9e4bf48077992a55f4cce3c53e135d3c0befb8106115538825c4625d1467ecd70f728fcfc9c797662b6e72d7
+DIST pyte-0.5.2.tar.gz 42719 SHA256 
d734cf4021035df222a51853e1b40e27dc06e1f5ed547cfefff4ae4865ee7529 SHA512 
da903b31bb67e60bc8271c162f3429871d0def039cec5f63f07764fce1994236063876eb069a88783a4c7d8b0eac0646549c00f2a51ab8630287d852f05f4b0d
 WHIRLPOOL 
0707f6a905b46d6e89abff343dd0cb5cb81a096b2b6726a87780beba89a13b12cd554383902025975a8d3d2c2344fdc902912eae33fa0fc77d976fd7e3df0019

diff --git a/dev-python/pyte/pyte-0.5.2.ebuild 
b/dev-python/pyte/pyte-0.5.2.ebuild
new file mode 100644
index 000..eabc438
--- /dev/null
+++ b/dev-python/pyte/pyte-0.5.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Simple VTXXX-compatible terminal emulator"
+HOMEPAGE="https://pypi.python.org/pypi/pyte/ https://github.com/selectel/pyte;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="LGPL-3"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/wcwidth[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   esetup.py test --verbose
+}



  1   2   >