[gentoo-commits] repo/gentoo:master commit in: net-analyzer/2ping/

2015-11-17 Thread Anthony G. Basile
commit: 964307d289a24171105de10185901bc9598e2b3d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Nov 17 11:21:55 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Nov 17 11:22:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=964307d2

net-analyzer/2ping: version bump to 3.1.0

Package-Manager: portage-2.2.20.1

 net-analyzer/2ping/2ping-3.1.0.ebuild | 28 
 net-analyzer/2ping/Manifest   |  1 +
 2 files changed, 29 insertions(+)

diff --git a/net-analyzer/2ping/2ping-3.1.0.ebuild 
b/net-analyzer/2ping/2ping-3.1.0.ebuild
new file mode 100644
index 000..4c311b3
--- /dev/null
+++ b/net-analyzer/2ping/2ping-3.1.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="A bi-directional ping utility"
+HOMEPAGE="http://www.finnie.org/software/2ping/;
+SRC_URI="http://www.finnie.org/software/2ping/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
+IUSE="server"
+
+src_install() {
+   distutils-r1_src_install
+   doman doc/2ping.1
+   dodoc doc/{2ping-protocol-examples.py,2ping-protocol.md}
+   use server && {
+   doinitd "${FILESDIR}"/2pingd
+   newconfd "${FILESDIR}"/2pingd.conf 2pingd
+   }
+}

diff --git a/net-analyzer/2ping/Manifest b/net-analyzer/2ping/Manifest
index 9701060..1ea41b1 100644
--- a/net-analyzer/2ping/Manifest
+++ b/net-analyzer/2ping/Manifest
@@ -1 +1,2 @@
 DIST 2ping-3.0.1.tar.gz 39752 SHA256 
d6997cd1680151e6f7d5e60137d45cd41bf385d26029878afdaaf5dc4f63dcc4 SHA512 
c5e8b26591a51bc3410db2ab572b17d6fddbce8f25c8cbfb4eb23cb738b28b12dae1cc395d26987e84191039193853178dffb748b1f951661e319ac2d5c053db
 WHIRLPOOL 
1f90e57a5e5e6788cc832335213fa3c93d029b2bb82837e322dc65b41c1b2dbfe7aa824e38e1595f3378b2ea2978604915404351866cac245276beedef6cbf39
+DIST 2ping-3.1.0.tar.gz 42581 SHA256 
0f5b4e10f89dd99ef04e2cc0564d6673ceae897ed0bf59b636553ec6aa1c7a92 SHA512 
6b264001f32cd6d7178f66365a0999e5087516681ee266b9170fe4a8bf10be27e451302e40141534a3d115dfa73689954e566cb68b51ce181965f0d347b8f844
 WHIRLPOOL 
90ddfa773e0cedf292acb3671c3e1f9cd444a082379e2132553de505de81c16d77fbff0c2bd2f976cf92b1e82b11a4c3945b181e6805c01e48f8de11a10c9cb8



[gentoo-commits] proj/eselect-python:mgornys-hackery commit in: /

2015-11-17 Thread Michał Górny
commit: 6824d7d6841536d153cb56a350c6f89708725777
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 12 17:07:35 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 12:59:04 2015 +
URL:
https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=6824d7d6

Remove python-wrapper

 Makefile.am  |   3 -
 configure.ac |  26 +-
 python-wrapper.c | 244 ---
 3 files changed, 1 insertion(+), 272 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 06f7d1c..beb4029 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,2 @@
-bin_PROGRAMS = python-wrapper
-python_wrapper_CPPFLAGS = -DENVD='"$(sysconfdir)/env.d"'
-
 eselectdir = $(datadir)/eselect/modules
 nodist_eselect_DATA = python.eselect

diff --git a/configure.ac b/configure.ac
index dc142ae..d9a6461 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,36 +1,12 @@
 AC_INIT([eselect-python], [20140125])
 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-bzip2])
 
+# note: we need AC_PROG_CC to determine EXEEXT (AC_EXEEXT does not work)
 AC_PROG_CC
 AC_PATH_PROG(INSTALL, install)
 AC_PROG_MKDIR_P
 
-AC_USE_SYSTEM_EXTENSIONS
-
-# setenv() was introduced in POSIX.1-2008.
-# strtok_r() was introduced in POSIX.1-2001.
-AC_CHECK_FUNCS([setenv strtok_r])
-
-# strndup() was introduced in POSIX.1-2008 and is also an implicitly declared 
built-in function in GCC.
-AC_MSG_CHECKING([for strndup])
-old_CFLAGS="${CFLAGS}"
-CFLAGS="${CFLAGS} -Wall -Werror -Wextra"
-AC_LINK_IFELSE([AC_LANG_SOURCE([[#include 
-int main()
-{
-  strndup("", 0);
-  return 0;
-}]])], [have_strndup="1"], [have_strndup="0"])
-if test "${have_strndup}" = "1"; then
-  AC_MSG_RESULT([yes])
-  AC_DEFINE([HAVE_STRNDUP], [1], [Define to 1 if you have the 'strndup' 
function.])
-else
-  AC_MSG_RESULT([no])
-fi
-CFLAGS="${old_CFLAGS}"
-
 # Create output files.
-AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_FILES([Makefile python.eselect])
 
 AC_OUTPUT

diff --git a/python-wrapper.c b/python-wrapper.c
deleted file mode 100644
index 75a1de4..000
--- a/python-wrapper.c
+++ /dev/null
@@ -1,244 +0,0 @@
-/* Copyright 1999-2010 Gentoo Foundation
- * Distributed under the terms of the GNU General Public License v2
- */
-
-#include "config.h"
-
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-
-#ifndef ENVD
-#define ENVD "/etc/env.d"
-#endif
-
-#define ENVD_CONFIG ENVD "/python/config"
-
-/* 127 is the standard return code for "command not found" */
-#define EXIT_ERROR 127
-
-char* dir_cat(const char* dir, const char* file)
-{
-   size_t dir_len = strlen(dir);
-   char* abs = malloc(dir_len + strlen(file) + 2);
-   strcpy(abs, dir);
-   abs[dir_len] = '/';
-   abs[dir_len + 1] = 0;
-   return strcat(abs, file);
-}
-
-const char* find_path(const char* exe)
-{
-   const char* last_slash = strrchr(exe, '/');
-   if (last_slash)
-   {
-#ifdef HAVE_STRNDUP
-   return strndup(exe, last_slash - exe);
-#else
-   size_t len = last_slash - exe;
-   char* ret = malloc(sizeof(char) * (len + 1));
-   memcpy(ret, exe, len);
-   ret[len] = '\0';
-   return(ret);
-#endif
-   }
-   const char* PATH = getenv("PATH");
-   if (! PATH)
-   {
-   /* If PATH is unset, then it defaults to ":/bin:/usr/bin", per
-* execvp(3).
-*/
-   PATH = ":/bin:/usr/bin";
-   }
-   char* path = strdup(PATH);
-#ifdef HAVE_STRTOK_R
-   char* state = NULL;
-   const char* token = strtok_r(path, ":", );
-#else
-   const char* token = strtok(path, ":");
-#endif
-   while (token)
-   {
-   /* If an element of PATH is empty ("::"), then it is "." */
-   if (! *token)
-   {
-   token = ".";
-   }
-   struct stat sbuf;
-   char* str = dir_cat(token, exe);
-   if (stat(str, ) == 0 && (S_ISREG(sbuf.st_mode) || 
S_ISLNK(sbuf.st_mode)))
-   {
-   return token;
-   }
-#ifdef HAVE_STRTOK_R
-   token = strtok_r(NULL, ":", );
-#else
-   token = strtok(NULL, ":");
-#endif
-   }
-   return NULL;
-}
-
-/* True if a valid file name, and not "python" */
-int valid_interpreter(const char* name)
-{
-   if (! name || ! *name || (strcmp(name, "python") == 0))
-   {
-   return 0;
-   }
-   return 1;
-}
-
-int get_version(const char* name)
-{
-   /* Only find files beginning with "python" - this is a fallback,
-* so we only want CPython
-*/
-   if (! valid_interpreter(name) || strncmp(name, "python", 6) != 0)
-   return -1;
-   int pos = 6;
-   int major = 0;
-   int minor = 0;
-   if (name[pos] < '0' || name[pos] > '9')
-   return -1;
-   do
-   {
-   

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

2015-11-17 Thread Mike Pagano
commit: 1e75c4123caa356c1889c94a94cef2d06d00dc1c
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Nov 17 13:33:02 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Nov 17 13:33:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e75c412

kernel-2.eclass: Fixes for comparison code. Thanks to mgorny for review and 
suggestion.

 eclass/kernel-2.eclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
index 5a9ea9f..1a508f1 100644
--- a/eclass/kernel-2.eclass
+++ b/eclass/kernel-2.eclass
@@ -1079,7 +1079,8 @@ unipatch() {
# https://bugs.gentoo.org/show_bug.cgi?id=507656
   #


if [[ ${PN} == "git-sources" ]] ; then
-   if [[ ${KV_MAJOR}.${KV_PATCH} > 3.15 && 
${RELEASETYPE} == -rc ]] ; then
+   if [[ ${KV_MAJOR} -gt 3 || ( ${KV_MAJOR} -eq 3 
&& ${KV_PATCH} -gt 15 ) &&
+   ${RELEASETYPE} == -rc ]] ; then
ebegin "Applying ${i/*\//} (-p1)"
if [ $(patch -p1 
--no-backup-if-mismatch -f < ${i} >> ${STDERR_T}) "$?" -le 2 ]; then
eend 0



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

2015-11-17 Thread Patrice Clement
commit: 92ece2968e225eb32fe4c0859e65ce19605a1035
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 17 10:45:39 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 10:45:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92ece296

Merge remote-tracking branch 'github/pr/359'.

 .../files/gupnp-ui-0.1.1-underlinking.patch| 25 ++
 net-libs/gupnp-ui/gupnp-ui-0.1.1.ebuild| 11 +-
 2 files changed, 35 insertions(+), 1 deletion(-)



[gentoo-commits] repo/gentoo:master commit in: net-libs/gupnp-ui/files/, net-libs/gupnp-ui/

2015-11-17 Thread Patrice Clement
commit: b23ff5443dd562ddfc974f6aff9a971ac2942ebc
Author: Christian Strahl  gmail  com>
AuthorDate: Thu Nov 12 14:49:40 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 10:43:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23ff544

net-libs/gupnp-ui: Mend underlinking issue. Fixes bug 522490.

 .../files/gupnp-ui-0.1.1-underlinking.patch| 25 ++
 net-libs/gupnp-ui/gupnp-ui-0.1.1.ebuild| 11 +-
 2 files changed, 35 insertions(+), 1 deletion(-)

diff --git a/net-libs/gupnp-ui/files/gupnp-ui-0.1.1-underlinking.patch 
b/net-libs/gupnp-ui/files/gupnp-ui-0.1.1-underlinking.patch
new file mode 100644
index 000..207eecc
--- /dev/null
+++ b/net-libs/gupnp-ui/files/gupnp-ui-0.1.1-underlinking.patch
@@ -0,0 +1,25 @@
+--- configure.ac
 configure.ac
+@@ -11,7 +11,7 @@
+ AC_PROG_LIBTOOL
+ 
+ PKG_CHECK_MODULES(LIBGUPNP_UI, gupnp-1.0 >= 0.3 gtk+-2.0)
+-
++PKG_CHECK_MODULES(GSSDP, gssdp-1.0)
+ PKG_CHECK_MODULES(GTHREAD, gthread-2.0)
+ 
+ # Debugging
+--- tests/Makefile.am
 tests/Makefile.am
+@@ -1,9 +1,9 @@
+-AM_CFLAGS = $(LIBGUPNP_UI_CFLAGS) $(GTHREAD_CFLAGS) -I$(top_srcdir)
++AM_CFLAGS = $(LIBGUPNP_UI_CFLAGS) $(GTHREAD_CFLAGS) $(GSSDP_CFLAGS) 
-I$(top_srcdir)
+ 
+ noinst_PROGRAMS = test-view
+ 
+ test_view_SOURCES = test-view.c
+-test_view_LDADD   = $(top_builddir)/libgupnp-ui/libgupnp-ui-1.0.la 
$(GTHREAD_LIBS)
++test_view_LDADD   = $(top_builddir)/libgupnp-ui/libgupnp-ui-1.0.la 
$(GTHREAD_LIBS) $(GSSDP_LIBS)
+ 
+ CLEANFILES = $(BUILT_SOURCES)
+ DISTCLEANFILES = $(BUILT_SOURCES)

diff --git a/net-libs/gupnp-ui/gupnp-ui-0.1.1.ebuild 
b/net-libs/gupnp-ui/gupnp-ui-0.1.1.ebuild
index 6ccd7ff..1d129c2 100644
--- a/net-libs/gupnp-ui/gupnp-ui-0.1.1.ebuild
+++ b/net-libs/gupnp-ui/gupnp-ui-0.1.1.ebuild
@@ -2,7 +2,12 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=2
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=1
+AUTOTOOLS_IN_SOURCE_BUILD=1
+
+inherit autotools-utils
 
 DESCRIPTION="Collection of simple GTK+ widgets on top of GUPnP"
 HOMEPAGE="http://gupnp.org;
@@ -19,6 +24,10 @@ DEPEND="${RDEPEND}
virtual/pkgconfig
sys-devel/gettext"
 
+PATCHES=(
+   "${FILESDIR}"/${P}-underlinking.patch
+)
+
 src_configure() {
econf \
--disable-dependency-tracking \



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

2015-11-17 Thread Justin Lecher
commit: a4aee84b4dbdaeba7ca046a39f712136eb187d10
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 10:56:01 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 11:03:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4aee84b

dev-python/setuptools_scm: Version Bump

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/setuptools_scm/Manifest |  1 +
 .../setuptools_scm/setuptools_scm-1.9.0.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/setuptools_scm/Manifest 
b/dev-python/setuptools_scm/Manifest
index f760397..f496b5f 100644
--- a/dev-python/setuptools_scm/Manifest
+++ b/dev-python/setuptools_scm/Manifest
@@ -2,3 +2,4 @@ DIST setuptools_scm-1.5.4.tar.gz 15647 SHA256 
756fb77b82c5e22818683b838c978537f4
 DIST setuptools_scm-1.5.5.tar.gz 17442 SHA256 
63f56843b9cc18743c843e43d54fd78ab091cb82d01f5acb64655743e8002134 SHA512 
39516db6164dc0d6179922fd79b012950c0684c8f6d4dbf71c2fcae661d1a54ef745c48c8d521ed3906c4f74d91b79fe4a94b5e27ab6a84701964494057c2494
 WHIRLPOOL 
929e5c38aaef9c247a451382842bf16faf44528858981af7c29133d5b3f4693414b85d076ade33c033dfbadb5803bf1b95fa5d8fa942725af2c3b01534d72a72
 DIST setuptools_scm-1.7.0.tar.gz 18754 SHA256 
f2f69c782b4f549003edf5b75b356b37f40a4e880b615996c5d9c117913d6f9c SHA512 
58fb39dff1fe7731d8f8fb9a383d4df41ad9271590c13e64d75bf9e5d390f553414a47b3223747e2c6d9407af44eff84365bce162251f0c0324bfb216f44c1a8
 WHIRLPOOL 
3555650b8d40df3b43e61240c0c7c09b46d7fb735c9cc64cf50da7fc3b9c6c66f237b69f1eb7bc66bfc4592daed824f1b25e2db507245a946ea6dafd028ec0fe
 DIST setuptools_scm-1.8.0.tar.bz2 14491 SHA256 
ddbf365e60e5f8e3f86fe117edeee4a7e1dd8ce7a9337951c9c163e7c506e602 SHA512 
a109fa3ffc89d3f6e515fa58026cebbd8ba98c1a401c49d5008e0dfc693f0e9e9468823621bd7b055911d3c898394e0ed1e498136cecaaa0be25e6312ec059df
 WHIRLPOOL 
ed87332ea7c27f1618c5c0c69b95360d48ec3b7d762d928d4cb097310fc0435c1aac15e53155417c0bdc0b9ba6ae6835e28f35735c10d70c6164d91340b09762
+DIST setuptools_scm-1.9.0.tar.gz 17669 SHA256 
b17362734ea2494a5fee611a2b3f09c251356fa5b9ed4567b666fe91105d4478 SHA512 
e44cd8fa4e6badd707e8987e0d91f79d6dee4cda3dbab42bba70f661a66b841cc16dc9b59b35fecc0948b80e6ef198fb19f267aa839e32d09a543f3b724645cd
 WHIRLPOOL 
f688f00d2c700946ba17bc2acbc357412569068063893fd72414ab41d5e4e3360d410ae3e48b837ddebec5979e7e024ab544e75556b428d5e2603edf2b82acff

diff --git a/dev-python/setuptools_scm/setuptools_scm-1.9.0.ebuild 
b/dev-python/setuptools_scm/setuptools_scm-1.9.0.ebuild
new file mode 100644
index 000..79c9688
--- /dev/null
+++ b/dev-python/setuptools_scm/setuptools_scm-1.9.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="package to manage versions by scm tags via setuptools"
+HOMEPAGE="https://github.com/pypa/setuptools_scm 
https://pypi.python.org/pypi/setuptools_scm;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE="test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+   py.test -v -v -x || die "tests failed under ${EPYTHON}"
+}



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

2015-11-17 Thread Justin Lecher
commit: b03e168510fde4c47b2b9e73eb116f465c997046
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 10:57:14 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 11:03:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b03e1685

dev-python/pyparsing: Version Bump

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/pyparsing/Manifest   |  1 +
 dev-python/pyparsing/metadata.xml   |  2 +-
 dev-python/pyparsing/pyparsing-2.0.6.ebuild | 38 +
 3 files changed, 40 insertions(+), 1 deletion(-)

diff --git a/dev-python/pyparsing/Manifest b/dev-python/pyparsing/Manifest
index bcb24da..54740a4 100644
--- a/dev-python/pyparsing/Manifest
+++ b/dev-python/pyparsing/Manifest
@@ -2,3 +2,4 @@ DIST pyparsing-1.5.6.tar.gz 1418892 SHA256 
5c84aa4500e82d5aa2c0842d5628c5da985e6
 DIST pyparsing-2.0.3.tar.gz 1462653 SHA256 
06e729e1cbf5274703b1f47b6135ed8335999d547f9d8cf048b210fb8ebf844f SHA512 
9771851f4b0191c7d3f8d2a2a6d2a9198b173120d3f133d08284b71e792fc59a906d571edea8f44ba04ab00c1d906e1974d1e8a2d6155d492de1358ba99c575a
 WHIRLPOOL 
42b9c7aa0b8d4d91436a01a60cbca64a9c8f7798b7aeb60bd2c4af085f9e13167a5ac5132d55bd890b4890c00428e908dfae32ed78ec153c868ee02ed3cdaa3f
 DIST pyparsing-2.0.4.tar.gz 1140009 SHA256 
c43c9f1395975bf2b032c20e6b149d6b698cdabf9291079bcaf0131709e95f59 SHA512 
021d3610ead6b864b1e0227b6cad2393aae0c1f38a44c09dd7ac33d05be30cb4c75176a33ebd8c44e87ed9d54b58aaf27fab7ac8f3cdcb3ce4418b5b0d586b01
 WHIRLPOOL 
0fa3fe631c5c6fc79fb13f029fe8a32bd9651fd663e915c5be394225bcb1ea1f199d3edc2294e7a4b0732590e7a0cc3053effca9aa20155ca69d4c3908019e6d
 DIST pyparsing-2.0.5.tar.gz 1140072 SHA256 
58756bf33e989d84ac72142e4ca558cf10c778a3233edb0a86632f271409ba9e SHA512 
203c4520378302434078b49467369ee0ae70ef4807ca16b8e0ca361dbc3f555806e5e07f9e5005eec34452144b528ed0480f8892b1c61bae83512baa4e74b56e
 WHIRLPOOL 
0da95e0d61a877669ff0f586e3688b0f8444baa5b857fdea8bb758b52af1ea8d6709effe2d1df031bf7d5940fb3b65582f44ca750adedaae12a36d5af105b6a6
+DIST pyparsing-2.0.6.tar.gz 1140849 SHA256 
aea69042752ad7e9c436eea6ae5d40e73642e27f50edb6da4a2532030ef532da SHA512 
3722198efc98f6ffc124fa012f6ef23ec840ccc2280922dcb35b05c1e78cdc40f1057be0f364732d20fb0dd25897776a15625ceadee14f6800d67b6d180b42f1
 WHIRLPOOL 
c6228050452d4297bcb77326972b5ea5c671ee264ce8ebba1ceb115f8ca84e099d94a6db43a1dafef761e26bbf8cab96d46602e116c1d03607ab1860d907c233

diff --git a/dev-python/pyparsing/metadata.xml 
b/dev-python/pyparsing/metadata.xml
index 2e238a8..e9e8731 100644
--- a/dev-python/pyparsing/metadata.xml
+++ b/dev-python/pyparsing/metadata.xml
@@ -1,4 +1,4 @@
-
+
 http://www.gentoo.org/dtd/metadata.dtd;>
 
python

diff --git a/dev-python/pyparsing/pyparsing-2.0.6.ebuild 
b/dev-python/pyparsing/pyparsing-2.0.6.ebuild
new file mode 100644
index 000..ef7c5b1
--- /dev/null
+++ b/dev-python/pyparsing/pyparsing-2.0.6.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Easy-to-use Python module for text parsing"
+HOMEPAGE="http://pyparsing.wikispaces.com/ 
https://pypi.python.org/pypi/pyparsing;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc examples"
+
+RDEPEND="!dev-python/pyparsing:py2 !dev-python/pyparsing:py3"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+# no contained in the tarball
+RESTRICT=test
+
+python_install_all() {
+   local HTML_DOCS=( HowToUsePyparsing.html )
+   if use doc; then
+   HTML_DOCS+=( htmldoc/. )
+   dodoc docs/*.pdf
+   fi
+   use examples && local EXAMPLES=( examples/. )
+   distutils-r1_python_install_all
+}
+
+python_test() {
+   ${PYTHON} unitTests.py || die
+}



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

2015-11-17 Thread Justin Lecher
commit: 92ac6a12c1b1cd26901473e4a6bb4a06ede00825
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 10:56:45 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 11:03:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92ac6a12

dev-python/testtools: Version Bump

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/testtools/Manifest   |  1 +
 dev-python/testtools/testtools-1.8.1.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-python/testtools/Manifest b/dev-python/testtools/Manifest
index 9ba454c..0c5a481 100644
--- a/dev-python/testtools/Manifest
+++ b/dev-python/testtools/Manifest
@@ -4,3 +4,4 @@ DIST testtools-1.3.0.tar.gz 204755 SHA256 
3bf0be7c76587e8318936462438124ffb74372
 DIST testtools-1.5.0.tar.gz 205197 SHA256 
8d22a559f15b4540e069df0d69698d5bc70d9c42c8694c5e253595d70283511a SHA512 
187a3f65eb3b00382853b8490d598f71990398f5867e985be00d13b87bb3ed155e9ecd3c16a268adf16ddf730b58a7d8849a8ba313668fc10af317e3eb3c825e
 WHIRLPOOL 
de91a36d9abc18680dba0f1c2b94133fe07d387093ee70a8f7bed2685faf55bbcbb46b5f9fcab0cdab73de382fabf800e78fa48889a733b9bceee06a61d3cbf9
 DIST testtools-1.7.1.tar.gz 202573 SHA256 
eeecf002a9fdc499ab82c13cc7b40226ed4b5fc4ed2a2c1cfb08fe23cfea SHA512 
ca38d61abf2fa9589177f986f57f15abd3105ed26b834c136cb12592a0aaa1bbe62d5bc3914ec958daad323091e8d88fd3ccad68c5d970a67d84188baa53ba41
 WHIRLPOOL 
b38f00016d82852a58350d1a456b861af9c6a3e1f97d40463b225c7b6349b765680b45af6e18f21e05c88d40ce3c02445b04072c48d0f433176a4d718f907f88
 DIST testtools-1.8.0.tar.gz 207976 SHA256 
8afd6400fb4e75adb0b29bd09695ecb2024cd7befab4677a58c147701afadd97 SHA512 
b5f0201222d1e8c60fb7c2793bcd38e1c96c6f9fae99e9f3e784d17230c9abbf7325053d501c07e752bad2da36b49e2c79a25d0c20cb9a2f426057f839a77b3a
 WHIRLPOOL 
71d4082197a9c179862fc3c63eadc37d6ff776f0a62e5fb08c296a5bf7109dc5110a2104a1ed15ca97c523aa0afb9e7124805ec6a6ae18f7605d7641abd9c54a
+DIST testtools-1.8.1.tar.gz 209327 SHA256 
155ed29086e48156519e15f7801b702c15ba34d8700d80ba606101f448a3839f SHA512 
0bd765bd3cc82a38c980d251427f9f32d44c377aa753d2d83c36fb8cfaeb8a10cfc86a38899b89ff454fe11742ab5e309439980e12a8bbae19b3d9df799803d9
 WHIRLPOOL 
06f654e447b6ae42cffbff454886dc1016746bf218c90e89c4b9361af2dc709acdfdcd0100c1624dffc1f72dec5c8037dd4357aa373a6413abf945c0d27868e1

diff --git a/dev-python/testtools/testtools-1.8.1.ebuild 
b/dev-python/testtools/testtools-1.8.1.ebuild
new file mode 100644
index 000..c982495
--- /dev/null
+++ b/dev-python/testtools/testtools-1.8.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Extensions to the Python standard library unit testing framework"
+HOMEPAGE="https://github.com/testing-cabal/testtools;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+CDEPEND="
+   dev-python/extras[${PYTHON_USEDEP}]
+   dev-python/mimeparse[${PYTHON_USEDEP}]
+   >=dev-python/pbr-0.11[${PYTHON_USEDEP}]
+   >=dev-python/unittest2-1.0.0[${PYTHON_USEDEP}]
+   dev-python/traceback2[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+"
+RDEPEND="${CDEPEND}"
+
+python_compile_all() {
+   use doc && emake -C doc html
+}
+
+python_test() {
+   "${PYTHON}" -m testtools.run testtools.tests.test_suite || die "tests 
failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( doc/_build/html/. )
+
+   distutils-r1_python_install_all
+}



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

2015-11-17 Thread Lars Wendler
commit: a0e70f1b80f813c5d9d6a901274235b9976e5d57
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Nov 17 13:07:49 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Nov 17 13:08:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0e70f1b

net-misc/wget: Removed old.

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

 net-misc/wget/Manifest |   3 -
 .../files/wget-1.13.4-openssl-pkg-config.patch |  31 
 net-misc/wget/files/wget-1.14-gnutls-ssl.patch |  68 ---
 net-misc/wget/files/wget-1.14-pkg-config.patch | 200 -
 net-misc/wget/files/wget-1.14-texi2pod.patch   |  32 
 net-misc/wget/files/wget-1.14-wgetrc.patch |  31 
 net-misc/wget/files/wget-1.15-pkg-config.patch | 190 
 net-misc/wget/files/wget-1.15-test_fix.patch   |  26 ---
 .../wget/files/wget-1.16-fix-proxy-test-race.patch |  96 --
 net-misc/wget/files/wget-1.16-openssl-header.patch |  31 
 .../wget/files/wget-1.16-openssl-no-ssl3.patch |  34 
 net-misc/wget/files/wget-1.16-pkg-config.patch | 200 -
 net-misc/wget/files/wget-1.16-tests-skip.patch |  27 ---
 net-misc/wget/wget-1.16.1.ebuild   |  93 --
 net-misc/wget/wget-1.16.2.ebuild   |  87 -
 net-misc/wget/wget-1.16.3.ebuild   |  87 -
 net-misc/wget/wget-1.16.ebuild |  97 --
 17 files changed, 1333 deletions(-)

diff --git a/net-misc/wget/Manifest b/net-misc/wget/Manifest
index ad19d52..58c9589 100644
--- a/net-misc/wget/Manifest
+++ b/net-misc/wget/Manifest
@@ -1,6 +1,3 @@
-DIST wget-1.16.1.tar.xz 1760120 SHA256 
2b96c707ee15fe847f5bc2f872a7a530dca803b927a750419b44f50803e14d33 SHA512 
28f69b2037bb3ea34b109bb20d99da7056e025dd9cce18a74cde2ffcc61933625b643673c76a7ba59b42d7e029898774da2d8af0fdbca3cffd5e4434c30e339a
 WHIRLPOOL 
a5ed1b7515acbfb33390c575588f8f476bf537eb90ebaaeb2b880e1962f15a6992eb7aa4a977b554fc6e34d384569f132760df7df9c48007e369e9773ceda696
-DIST wget-1.16.2.tar.xz 1805080 SHA256 
a7dfde1bcb0eb135addf587a649fd0e47c1a876edef359b9197cdffd1fdcd7d5 SHA512 
ec99606577afb131fa1eb3c286a3dd9dccea689bf5c83df8303b1130ed569934ca27f8c517a06f9e2be456c020480842cbf8eebe97285890e46dca60158f3c12
 WHIRLPOOL 
2b174aa4223d3f3ff64366b96ed5f725e4c4a1c96f2aa01ab4ee0eac702a600869a71636a1860bd9ebca6fad5e0c16164280ca202f92254b6b5052a10bdf0fb7
 DIST wget-1.16.3.tar.xz 1794148 SHA256 
67f7b7b0f5c14db633e3b18f53172786c001e153d545cfc85d82759c5c2ffb37 SHA512 
2d1fe632bcd116a68ae333278e368cb810081b51d2259ddade602bebf3dd08dee1f51f67c9c7d79d2410e19fe0d48a0b9a1b1a7c7c6eeb47e2840ce6c1a3471c
 WHIRLPOOL 
b8fe9880523fc295b092c3b9ff4f9af58c071f55d516903ded66df67722cd27955ad651f6f2f6032b611e5445dd89b8ff97878443abc04d095c29e76f0564490
-DIST wget-1.16.tar.xz 1697308 SHA256 
9261dd090a17687b6dc0682a257e90a926def15624b650e8f799af57e5c8b0e7 SHA512 
20f1247a344cac8f9120a506a4ca1fff84e5f3f5abb8492f67c22d213cb41cbfa24d5a68b91512a6ca42765d319bea8785adff8fad58d854f8f563c6593b4298
 WHIRLPOOL 
a1094b27f77547baf7dac6f1a6ded691b3a043caff948e8fd84555a730d6a02ae157f4d72144f3c1672439166da28a4cca26f9c4f7ec4473603899545cc956b4
 DIST wget-1.17-fix_disabled_ipv6.patch 4218 SHA256 
3ba621258f60fe4b64735f0beed8b691c58b502a6109a1116c819a76b0e02147 SHA512 
83a123fa0f2b269993265dd0e23d35bab2d82e7e9055689987a19b09a9c7833e5ffd33d136ee0e5c0645f1a81f65d4f155b9a96c20a1fa7270dbbc674f1bad3b
 WHIRLPOOL 
b74fb6d3ae67be9ab924b1eee87a6b48b0b8b4bb34d0cb42697af408ee1ea5734c265b745692c41da73c7885523b305c4b4c3f043bf2431b37f950e6ca9406ef
 DIST wget-1.17.tar.xz 1884628 SHA256 
bd69d63acbf329a8286ccebbe63cd4fecc998718131a0d4b2ab9239542d2bb87 SHA512 
4936dad41580f6ba33df73de041e407cd6dd5266af4af947ebf4c54457f0f296e3462cfff1fb203b27ff5760ec4f6f4d24ea4faceeea461f98c22b031225947f
 WHIRLPOOL 
a0e87d20e99276c74c7ea17e09893481d02e431a19184cbc2b0245d61b555f521293de89de7c27f5645d8ad22f2628ab0aab42b901ccd548c19bf026b8f1bef4

diff --git a/net-misc/wget/files/wget-1.13.4-openssl-pkg-config.patch 
b/net-misc/wget/files/wget-1.13.4-openssl-pkg-config.patch
deleted file mode 100644
index 97037ce..000
--- a/net-misc/wget/files/wget-1.13.4-openssl-pkg-config.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-detect openssl via pkg-config if it's available
-
 a/configure.ac
-+++ b/configure.ac
-@@ -234,7 +234,17 @@ dnl
- dnl Checks for libraries.
- dnl
- 
-+PKG_PROG_PKG_CONFIG
-+
- AS_IF([test x"$with_ssl" = xopenssl], [
-+PKG_CHECK_MODULES([OPENSSL], [openssl], [
-+AC_MSG_NOTICE([compiling in support for SSL via OpenSSL])
-+AC_LIBOBJ([openssl])
-+LIBS="$OPENSSL_LIBS $LIBS"
-+CFLAGS="$OPENSSL_CFLAGS -DHAVE_LIBSSL $CFLAGS"
-+LIBSSL=" " # ntlm check below wants this #395349
-+], [
-+
- dnl some versions of openssl use zlib compression
- AC_CHECK_LIB(z, compress)
- 
-@@ -294,6 +303,8 @@ AS_IF([test 

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

2015-11-17 Thread Lars Wendler
commit: f1d79aba5ac0abfb1b2377ddadd1712fc5026d04
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Nov 17 13:05:28 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Nov 17 13:08:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1d79aba

net-misc/wget: Bump to version 1.17

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

 net-misc/wget/Manifest |  2 +
 net-misc/wget/wget-1.17.ebuild | 94 ++
 2 files changed, 96 insertions(+)

diff --git a/net-misc/wget/Manifest b/net-misc/wget/Manifest
index 88ff133..ad19d52 100644
--- a/net-misc/wget/Manifest
+++ b/net-misc/wget/Manifest
@@ -2,3 +2,5 @@ DIST wget-1.16.1.tar.xz 1760120 SHA256 
2b96c707ee15fe847f5bc2f872a7a530dca803b92
 DIST wget-1.16.2.tar.xz 1805080 SHA256 
a7dfde1bcb0eb135addf587a649fd0e47c1a876edef359b9197cdffd1fdcd7d5 SHA512 
ec99606577afb131fa1eb3c286a3dd9dccea689bf5c83df8303b1130ed569934ca27f8c517a06f9e2be456c020480842cbf8eebe97285890e46dca60158f3c12
 WHIRLPOOL 
2b174aa4223d3f3ff64366b96ed5f725e4c4a1c96f2aa01ab4ee0eac702a600869a71636a1860bd9ebca6fad5e0c16164280ca202f92254b6b5052a10bdf0fb7
 DIST wget-1.16.3.tar.xz 1794148 SHA256 
67f7b7b0f5c14db633e3b18f53172786c001e153d545cfc85d82759c5c2ffb37 SHA512 
2d1fe632bcd116a68ae333278e368cb810081b51d2259ddade602bebf3dd08dee1f51f67c9c7d79d2410e19fe0d48a0b9a1b1a7c7c6eeb47e2840ce6c1a3471c
 WHIRLPOOL 
b8fe9880523fc295b092c3b9ff4f9af58c071f55d516903ded66df67722cd27955ad651f6f2f6032b611e5445dd89b8ff97878443abc04d095c29e76f0564490
 DIST wget-1.16.tar.xz 1697308 SHA256 
9261dd090a17687b6dc0682a257e90a926def15624b650e8f799af57e5c8b0e7 SHA512 
20f1247a344cac8f9120a506a4ca1fff84e5f3f5abb8492f67c22d213cb41cbfa24d5a68b91512a6ca42765d319bea8785adff8fad58d854f8f563c6593b4298
 WHIRLPOOL 
a1094b27f77547baf7dac6f1a6ded691b3a043caff948e8fd84555a730d6a02ae157f4d72144f3c1672439166da28a4cca26f9c4f7ec4473603899545cc956b4
+DIST wget-1.17-fix_disabled_ipv6.patch 4218 SHA256 
3ba621258f60fe4b64735f0beed8b691c58b502a6109a1116c819a76b0e02147 SHA512 
83a123fa0f2b269993265dd0e23d35bab2d82e7e9055689987a19b09a9c7833e5ffd33d136ee0e5c0645f1a81f65d4f155b9a96c20a1fa7270dbbc674f1bad3b
 WHIRLPOOL 
b74fb6d3ae67be9ab924b1eee87a6b48b0b8b4bb34d0cb42697af408ee1ea5734c265b745692c41da73c7885523b305c4b4c3f043bf2431b37f950e6ca9406ef
+DIST wget-1.17.tar.xz 1884628 SHA256 
bd69d63acbf329a8286ccebbe63cd4fecc998718131a0d4b2ab9239542d2bb87 SHA512 
4936dad41580f6ba33df73de041e407cd6dd5266af4af947ebf4c54457f0f296e3462cfff1fb203b27ff5760ec4f6f4d24ea4faceeea461f98c22b031225947f
 WHIRLPOOL 
a0e87d20e99276c74c7ea17e09893481d02e431a19184cbc2b0245d61b555f521293de89de7c27f5645d8ad22f2628ab0aab42b901ccd548c19bf026b8f1bef4

diff --git a/net-misc/wget/wget-1.17.ebuild b/net-misc/wget/wget-1.17.ebuild
new file mode 100644
index 000..dc0a588
--- /dev/null
+++ b/net-misc/wget/wget-1.17.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="4"
+PYTHON_COMPAT=( python{3_3,3_4} )
+
+inherit flag-o-matic python-any-r1 toolchain-funcs
+
+DESCRIPTION="Network utility to retrieve files from the WWW"
+HOMEPAGE="https://www.gnu.org/software/wget/;
+SRC_URI="mirror://gnu/wget/${P}.tar.xz
+   
http://git.savannah.gnu.org/cgit/wget.git/patch/?id=2cfcadf5e6d5c444765aa460915ae27109a8dbce
 -> ${PN}-1.17-fix_disabled_ipv6.patch"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib"
+REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
+
+LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )
+   pcre? ( dev-libs/libpcre[static-libs(+)] )
+   ssl? (
+   gnutls? ( net-libs/gnutls[static-libs(+)] )
+   !gnutls? (
+   !libressl? ( dev-libs/openssl:0[static-libs(+)] )
+   libressl? ( dev-libs/libressl[static-libs(+)] )
+   )
+   )
+   uuid? ( sys-apps/util-linux[static-libs(+)] )
+   zlib? ( sys-libs/zlib[static-libs(+)] )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   virtual/pkgconfig
+   static? ( ${LIB_DEPEND} )
+   test? (
+   ${PYTHON_DEPS}
+   dev-lang/perl
+   dev-perl/HTTP-Daemon
+   dev-perl/HTTP-Message
+   dev-perl/IO-Socket-SSL
+   )
+   nls? ( sys-devel/gettext )"
+
+DOCS=( AUTHORS MAILING-LIST NEWS README doc/sample.wgetrc )
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   epatch 

[gentoo-commits] repo/gentoo:master commit in: games-strategy/ufo-ai/

2015-11-17 Thread Patrice Clement
commit: aad301084de8b1716c1254bea93d15e49397a848
Author: quazgar  droggelbecher>
AuthorDate: Sun Nov  8 21:44:50 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 13:14:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aad30108

games-strategy/ufo-ai-2.5: Style changes.

Fixed a lot of style problems.  Also removed games.eclass inheritance and
editor USE flag.

Still needs work until the dedicated server works, but should definitely
be usable for playing.

 games-strategy/ufo-ai/ufo-ai-2.5.ebuild | 130 ++--
 1 file changed, 73 insertions(+), 57 deletions(-)

diff --git a/games-strategy/ufo-ai/ufo-ai-2.5.ebuild 
b/games-strategy/ufo-ai/ufo-ai-2.5.ebuild
index ca3d044..baf3a40 100644
--- a/games-strategy/ufo-ai/ufo-ai-2.5.ebuild
+++ b/games-strategy/ufo-ai/ufo-ai-2.5.ebuild
@@ -3,45 +3,55 @@
 # $Id$
 
 EAPI=5
-inherit eutils flag-o-matic games
+inherit eutils flag-o-matic gnome2-utils
 
 MY_P=${P/ufo-ai/ufoai}
 
+# better than the default "/usr/games/ufo/"
+MY_DATADIR="${EPREFIX}/usr/share/games/${PN/-}"
+
 DESCRIPTION="UFO: Alien Invasion - X-COM inspired strategy game"
 HOMEPAGE="http://ufoai.sourceforge.net/;
 SRC_URI="mirror://sourceforge/ufoai/${MY_P}-source.tar.bz2
-   mirror://sourceforge/ufoai/${MY_P}-data.tar"
+   mirror://sourceforge/ufoai/${MY_P}-data.tar
+"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="debug server editor +client sse profile"
+KEYWORDS="~amd64 ~x86"
+# "editor" USE flag disabled until someone gets it to work
+# See http://ufoai.org/forum/index.php?topic=8978
+IUSE="debug dedicated profile"
 
 # Dependencies and more instructions can be found here:
 # http://ufoai.ninex.info/wiki/index.php/Compile_for_Linux
-DEPEND="!server? (
+DEPEND="!dedicated? (
virtual/opengl
virtual/glu
-   media-libs/libsdl2
+   media-libs/libsdl2[joystick,opengl,sound,threads,video]
media-libs/sdl2-image[jpeg,png]
media-libs/sdl2-ttf
media-libs/sdl2-mixer
-   virtual/jpeg
+   virtual/jpeg:62
media-libs/libpng:0
media-libs/libogg
media-libs/libvorbis
+   media-libs/libtheora
x11-proto/xf86vidmodeproto
)
net-misc/curl
sys-devel/gettext
sys-libs/zlib
-   editor? (
-   dev-libs/libxml2
-   virtual/jpeg
-   media-libs/openal
-   x11-libs/gtkglext
-   x11-libs/gtksourceview:2.0
-   )"
+"
+   # editor? (
+   #   dev-libs/libxml2
+   #   virtual/jpeg:62
+   #   media-libs/openal
+   #   x11-libs/gtkglext
+   #   x11-libs/gtksourceview:2.0
+   # )
+   # "
+
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${MY_P}-source
@@ -50,18 +60,28 @@ pkg_setup() {
if use profile; then
ewarn "USE=\"profile\" is incompatible with the hardened 
profile's -pie flag."
fi
+
+   einfo "
+   Note that the dedicated server (ufoded) is currently missing some
+   map files and therefore might not start:
+   http://ufoai.org/bugs/ufoalieninvasion/issues/5383
+
+   Help to fix this is welcome!
+"
+   if use dedicated ; then
+   ewarn "Only building dedicated server, which is known to still 
fail."
+   fi
 }
 
 src_unpack() {
unpack ${MY_P}-source.tar.bz2
-   cd "${S}"
-   pwd
+   cd "${S}" || die
unpack ${MY_P}-data.tar
 }
 
 src_configure() {
-   # they are special and provide hand batched configure file
-   local myconf="
+   # The configure script of UFO:AI is hand crafted and a bit special
+   local MY_CONF=(
--disable-cgame-campaign
--disable-cgame-multiplayer
--disable-cgame-skirmish
@@ -69,60 +89,56 @@ src_configure() {
--disable-testall
--disable-ufomodel
--disable-ufoslicer
+   --enable-ufoded
$(use_enable !debug release)
-   $(use_enable editor uforadiant)
-   $(use_enable editor ufo2map)
-   $(use_enable server ufoded)
-   $(use_enable client ufo)
-   $(use_enable sse)
-   --enable-game
+   # $(use_enable !dedicated game)
+   --disable-uforadiant
+   --disable-ufo2map
+   # $(use_enable editor uforadiant)
+   # $(use_enable editor ufo2map)
--disable-paranoid
$(use_enable profile profiling)
-   --bindir="${GAMES_BINDIR}"
-   --libdir="$(games_get_libdir)"
-   --datadir="${GAMES_DATADIR}/${PN/-}"
-   --localedir="${EPREFIX}/usr/share/locale/"
-   --prefix="${GAMES_PREFIX}"
-   "
-   echo "./configure ${myconf}"
- 

[gentoo-commits] repo/gentoo:master commit in: games-strategy/ufo-ai/

2015-11-17 Thread Patrice Clement
commit: 50aff92142cb84ec55fa5237d1c8844d8dd33fe5
Author: quazgar  droggelbecher>
AuthorDate: Sun Oct 18 18:31:24 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 13:14:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50aff921

games-strategy/ufo-ai: Version bump to 2.5

Ebuild taken from bug #515660 and upgraded to EAPI 5.

 games-strategy/ufo-ai/Manifest  |   2 +
 games-strategy/ufo-ai/ufo-ai-2.5.ebuild | 128 
 2 files changed, 130 insertions(+)

diff --git a/games-strategy/ufo-ai/Manifest b/games-strategy/ufo-ai/Manifest
index 6f19f0d..a99613d 100644
--- a/games-strategy/ufo-ai/Manifest
+++ b/games-strategy/ufo-ai/Manifest
@@ -1,3 +1,5 @@
 DIST 1maps.pk3 242016 SHA256 
8cdb8c231c0ba98900d97012b62c5cef72ab5710fe3f087e534496a66f7b0e4e SHA512 
9615b365e590dceb82362e7cd683980e15401a3b5a2b359a33c7ed2a4c51e5328efb352618cc48f46971a2ced1717276b5270ca6bf6d2bc7fc2b2238030eb3ae
 WHIRLPOOL 
8e798ffeaa83609114fd239ea8f379ee54fa6038735a09bd3abe3076073e92b44e7fa867c893d597577da462b4e583fb0a2bba7cd2014a9f4b4bb8ef04b377e6
 DIST ufoai-2.4-data.tar 937062400 SHA256 
6bb322fc0362781d07439799de32c677884cef7c96fcf17dd87c62cc108030b7 SHA512 
471eab2f62cad144fe9966317d48c408fba19de0c33cf7414918b502c723b722af38a025f808848698d9a06ffc10fb0faac145dd01dcd3d321547c87da1c6246
 WHIRLPOOL 
139251bdbd76f86cb38175eb9c14149ea0cab6bbcb04e2dba7351cdb5b0e21bdfd231e350c0af4f52379d0c5bee91f0512422a7eb9f6339eb6a07170d64fec0c
 DIST ufoai-2.4-source.tar.bz2 16875353 SHA256 
254a61b770f141374d57e5c2589048be9298d0a920e914c6e72c2b98255bb94f SHA512 
3f9d0df7392f50c201464c81e42435f860df97d5d7a2ef53bb9a05d2b2fc645a1130baaf16fc34818b88bb07b8cf83283f7479d685cbd3caf80ea7522e13c56f
 WHIRLPOOL 
0e68149ab2b3eeffb7134e65cc29de9cecf60dc89c965958a0d669c2d22462d05b89b0a81a3225ebbd7e47015fc63697cbad365136706f4853f9c1e690b0667d
+DIST ufoai-2.5-data.tar 1269913600 SHA256 
0d12041cba3aaaba1ce114650c36586d286dcce51c721844c06fdace06e307b8 SHA512 
429ddc33391aa33ca5ff1788a01114a5c8eb0bb6d66a5bedb1c88c3a46810813cade2ecd69b4ef4f18e9dd6b41485c1bf9f9b0f13fc9255cbf1f9484186f883b
 WHIRLPOOL 
d10e517ebd158a65e427f3d105df89d0ee5eb2900b99142d0e5b044c3bdd9f5063c6774c4570f93da87f408b0099a364e48ad7cec1638b4e6c6282c495557f8e
+DIST ufoai-2.5-source.tar.bz2 24239539 SHA256 
0c7cc3bc9efeb276f71cbe6ee8ff7c76f98d183de79f1a069fa63059cf182a8f SHA512 
072fe8820b1b242bb13f0820459fc27092b8597573231c8921c711859df39c8e28d9854e8a0300ebabb38cdeb99db16bed388a1391ba9f54100268b831db056f
 WHIRLPOOL 
23cf4c88e88a85f5e6857e8c91e55e19bfce3c59d49168d16deca58a4ce9de25f942f86d7219c6d07f4b8dab2649068462616b38191ceb3b03973fed165bf058

diff --git a/games-strategy/ufo-ai/ufo-ai-2.5.ebuild 
b/games-strategy/ufo-ai/ufo-ai-2.5.ebuild
new file mode 100644
index 000..ca3d044
--- /dev/null
+++ b/games-strategy/ufo-ai/ufo-ai-2.5.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils flag-o-matic games
+
+MY_P=${P/ufo-ai/ufoai}
+
+DESCRIPTION="UFO: Alien Invasion - X-COM inspired strategy game"
+HOMEPAGE="http://ufoai.sourceforge.net/;
+SRC_URI="mirror://sourceforge/ufoai/${MY_P}-source.tar.bz2
+   mirror://sourceforge/ufoai/${MY_P}-data.tar"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="debug server editor +client sse profile"
+
+# Dependencies and more instructions can be found here:
+# http://ufoai.ninex.info/wiki/index.php/Compile_for_Linux
+DEPEND="!server? (
+   virtual/opengl
+   virtual/glu
+   media-libs/libsdl2
+   media-libs/sdl2-image[jpeg,png]
+   media-libs/sdl2-ttf
+   media-libs/sdl2-mixer
+   virtual/jpeg
+   media-libs/libpng:0
+   media-libs/libogg
+   media-libs/libvorbis
+   x11-proto/xf86vidmodeproto
+   )
+   net-misc/curl
+   sys-devel/gettext
+   sys-libs/zlib
+   editor? (
+   dev-libs/libxml2
+   virtual/jpeg
+   media-libs/openal
+   x11-libs/gtkglext
+   x11-libs/gtksourceview:2.0
+   )"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/${MY_P}-source
+
+pkg_setup() {
+   if use profile; then
+   ewarn "USE=\"profile\" is incompatible with the hardened 
profile's -pie flag."
+   fi
+}
+
+src_unpack() {
+   unpack ${MY_P}-source.tar.bz2
+   cd "${S}"
+   pwd
+   unpack ${MY_P}-data.tar
+}
+
+src_configure() {
+   # they are special and provide hand batched configure file
+   local myconf="
+   --disable-cgame-campaign
+   --disable-cgame-multiplayer
+   --disable-cgame-skirmish
+   --disable-memory
+   --disable-testall
+   --disable-ufomodel
+   --disable-ufoslicer
+   $(use_enable !debug release)
+  

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

2015-11-17 Thread Patrice Clement
commit: d2b59c7384255f91d4cc850aaff3b8d65ee39d80
Author: Christian Affolter  stepping-stone  ch>
AuthorDate: Mon Nov 16 22:19:00 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Nov 16 22:19:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2b59c73

app-emulation/spice: Added dev-python/six build dependency

Spice requires Six, the Python 2 and 3 compatibility library, otherwise
the build will fail with the following error:

[...]
make[4]: Entering directory 
'/var/tmp/portage/app-emulation/spice-0.12.6/work/spice-0.12.6/spice-common/common'
/usr/bin/python2.7 /usr/lib64/spice-protocol/spice_codegen.py 
--generate-demarshallers --client --include common/messages.h 
/usr/lib64/spice-protocol/spice.proto generated_client_demarshallers.c 
>/dev/null
Traceback (most recent call last):
  File "/usr/lib64/spice-protocol/spice_codegen.py", line 7, in 
from python_modules import spice_parser
  File "/usr/lib64/spice-protocol/python_modules/spice_parser.py", line 1, in 

import six
ImportError: No module named six
Makefile:794: recipe for target 'generated_client_demarshallers.c' failed
make[4]: *** [generated_client_demarshallers.c] Error 1
make[4]: Leaving directory 
'/var/tmp/portage/app-emulation/spice-0.12.6/work/spice-0.12.6/spice-common/common'
Makefile:445: recipe for target 'all-recursive' failed
make[3]: *** [all-recursive] Error 1

 app-emulation/spice/spice-0.12.6.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/app-emulation/spice/spice-0.12.6.ebuild 
b/app-emulation/spice/spice-0.12.6.ebuild
index e108c83..02b6211 100644
--- a/app-emulation/spice/spice-0.12.6.ebuild
+++ b/app-emulation/spice/spice-0.12.6.ebuild
@@ -43,13 +43,16 @@ RDEPEND="
 DEPEND="
>=app-emulation/spice-protocol-0.12.10
virtual/pkgconfig
-   $(python_gen_any_dep \
-   '>=dev-python/pyparsing-1.5.6-r2[${PYTHON_USEDEP}]')
+   $(python_gen_any_dep '
+   >=dev-python/pyparsing-1.5.6-r2[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   ')
smartcard? ( app-emulation/qemu[smartcard] )
${RDEPEND}"
 
 python_check_deps() {
has_version ">=dev-python/pyparsing-1.5.6-r2[${PYTHON_USEDEP}]"
+   has_version "dev-python/six[${PYTHON_USEDEP}]"
 }
 
 pkg_setup() {



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

2015-11-17 Thread Patrice Clement
commit: 51b46cb2eb5e1952b233b015ed45f60775979dfb
Author: Christian Affolter  stepping-stone  ch>
AuthorDate: Tue Nov 17 12:27:56 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 12:27:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b46cb2

app-emulation/spice: Revbump to app-emulation/spice-0.12.6-r1

As requested by @monsieurp

 app-emulation/spice/{spice-0.12.6.ebuild => spice-0.12.6-r1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/app-emulation/spice/spice-0.12.6.ebuild 
b/app-emulation/spice/spice-0.12.6-r1.ebuild
similarity index 100%
rename from app-emulation/spice/spice-0.12.6.ebuild
rename to app-emulation/spice/spice-0.12.6-r1.ebuild



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

2015-11-17 Thread Patrice Clement
commit: 2501cdde12cdb69b422297f5b9216ef0e71d3165
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 17 13:22:36 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 13:22:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2501cdde

Merge remote-tracking branch 'github/pr/369'.

 .../spice/{spice-0.12.6.ebuild => spice-0.12.6-r1.ebuild}  | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)



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

2015-11-17 Thread Patrice Clement
commit: ea3f9c550fc2fd4e12512b5d22d2a3aba25be317
Author: Anthony Ryan  gmail  com>
AuthorDate: Tue Nov 17 01:21:27 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 01:21:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea3f9c55

dev-libs/libindicator: Reference upstream bug report for patch

Patches should reference upstream bug reports so people can quickly
find discussion on a particular issue.

Package-Manager: portage-2.2.24

 dev-libs/libindicator/libindicator-12.10.1-r301.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-libs/libindicator/libindicator-12.10.1-r301.ebuild 
b/dev-libs/libindicator/libindicator-12.10.1-r301.ebuild
index d28de01..2695f87 100644
--- a/dev-libs/libindicator/libindicator-12.10.1-r301.ebuild
+++ b/dev-libs/libindicator/libindicator-12.10.1-r301.ebuild
@@ -21,6 +21,7 @@ DEPEND="${RDEPEND}
test? ( dev-util/dbus-test-runner )"
 
 src_prepare() {
+   # https://bugs.launchpad.net/libindicator/+bug/1502925
epatch "${FILESDIR}"/${PN}-ldflags-spacing.patch
eautoreconf
 }



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

2015-11-17 Thread Patrice Clement
commit: 6ff2180ef0666ca33d0190c00e7368121f7be4b9
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 17 10:36:47 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 10:36:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ff2180e

Merge remote-tracking branch 'github/pr/370'.

 dev-libs/libindicator/libindicator-12.10.1-r301.ebuild | 1 +
 1 file changed, 1 insertion(+)



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

2015-11-17 Thread Sergey Popov
commit: f2608b8e81e1c7d3d1f53cc18263d5415a7f6ed6
Author: Sergey Popov  gentoo  org>
AuthorDate: Tue Nov 17 11:14:31 2015 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Tue Nov 17 11:14:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2608b8e

app-admin/ansible: x86 stable

Gentoo-Bug: 565962

Package-Manager: portage-2.2.23

 app-admin/ansible/ansible-1.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/ansible/ansible-1.9.4.ebuild 
b/app-admin/ansible/ansible-1.9.4.ebuild
index 7c8406c..a08091b 100644
--- a/app-admin/ansible/ansible-1.9.4.ebuild
+++ b/app-admin/ansible/ansible-1.9.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~x64-macos"
+KEYWORDS="amd64 x86 ~x64-macos"
 IUSE="test"
 
 RDEPEND="



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

2015-11-17 Thread Justin Lecher
commit: 85da0e01da3fd569a6b291352297dfa9d018ab70
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 11:03:24 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 11:03:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85da0e01

dev-python/werkzeug: Version Bump

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

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

diff --git a/dev-python/werkzeug/Manifest b/dev-python/werkzeug/Manifest
index 76b6c53..8b07fb9 100644
--- a/dev-python/werkzeug/Manifest
+++ b/dev-python/werkzeug/Manifest
@@ -2,4 +2,5 @@ DIST Werkzeug-0.10.1.tar.gz 1134481 SHA256 
9cf783990b1a99173e707a5768610800aa877
 DIST Werkzeug-0.10.4.tar.gz 1137282 SHA256 
9d2771e4c89be127bc4bac056ab7ceaf0e0064c723d6b6e195739c3af4fd5c1d SHA512 
d1285521f144a569f86e8f4089fe8001f60dd4ffd87856f761338be81bc328adc5eca5bb7cd06b4f9c96e6e46dc1a283198f37a70033ca78183915c3da2c4f47
 WHIRLPOOL 
c3f3a21550e26407db28470cf539c8060c01359724613993b387f0a54435dcefc14cfbf7e4b12839e8f9b3a1421e34183f20d2d1e36a4106544ac76cd2ac22b1
 DIST Werkzeug-0.10.tar.gz 1133931 SHA256 
9a97a6fcf87390172748da9e5250710b352dff18e979db925d276112cdcfa7ac SHA512 
fc9872892ce02b3501a0edc0ea25a1edd793af61e0c268de80e465fb6ecee6f95c323a624fb2f71903c28a4b743012e3a48d23652172e7c4bc7305c797d4fee5
 WHIRLPOOL 
77a6a71a9c8d8ea55970f8a30569bf2964ebdb762c97fd8d92516a08aac1a53efcb115ad0ee10ee952be93b4732067680844a463d33ff69207454f2046594b3f
 DIST Werkzeug-0.11.1.tar.gz 1151713 SHA256 
280b37866a1fa8604549cbc278f06d310143e20f1a6520ae5cf66e0df615e0a7 SHA512 
d6cc65b8c3afe66f45acf3c9897679684c3525fcb27bbad54e7920fef15d88081d264f41f35f7a4d498e7f0664259f664a06ddfe794f8837585642a68d650c45
 WHIRLPOOL 
075923ea3f44356dc72b6272bc94d8a023c372123f19b59c9e3f2bf9852cdcf57d6ab54fc00b4d1eb87700852225e9f24877d550ab4c3813204cd07a9eef4590
+DIST Werkzeug-0.11.2.tar.gz 1152067 SHA256 
eb4f98994b40a8e2edce289e811c9a38880ae53eb9ff6f031d0e243a69b0fcbf SHA512 
aa83da47763a4c5b9b68c10e84ad195d8ae50b419faf25928d135cd0eebf7a57c4a7e178002a2f7a849005e0df8491398e12cd00098ccfb227ae2b75129e4966
 WHIRLPOOL 
612df2c211627712ed1853b89f17e943daf6156658fd7fd224133c8bc3d23808f77497a1bb5b711f9d7d446de8d2f6b8f0be1df0f9eb2e8f777d23a3bbed83dd
 DIST Werkzeug-0.9.6.tar.gz 1128428 SHA256 
7f11e7e2e73eb22677cac1b3eb6106f66cedef13d140e83cf6563c90b79c SHA512 
0b36df25d5f69a0353f7a9321b9197ace2926b6d8e983a91ef372c270ff51462f7d86184447a5f74b4ad05ffdc6411098f77b45a4f1c906dd525d7edf220399c
 WHIRLPOOL 
db153036e9dc36c70239001a6b451adeaafa3819f4903bb8c297bb4313c9a064926a2aad6e4457810b53796b3e492228a9ee1ec165fe5dce0522ab0d2c7407f9

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



[gentoo-commits] data/api:master commit in: files/mirrors/

2015-11-17 Thread Alex Legler
commit: 1de3f38f2a17356122bf35eb030b87bbab475e8f
Author: Alex Legler  a3li  li>
AuthorDate: Tue Nov 17 11:50:58 2015 +
Commit: Alex Legler  gentoo  org>
CommitDate: Tue Nov 17 11:50:58 2015 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=1de3f38f

Update de-mirror.org -> oneandone.net, bug 566034

 files/mirrors/distfiles.xml | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml
index 41a5b17..aefcf77 100644
--- a/files/mirrors/distfiles.xml
+++ b/files/mirrors/distfiles.xml
@@ -202,10 +202,9 @@
   rsync://ftp-stud.hs-esslingen.de/gentoo/
 
 
-  de-mirror.org
-  ftp://de-mirror.org/gentoo/
-  http://de-mirror.org/gentoo/
-  rsync://de-mirror.org/gentoo/
+  11 Internet SE
+  http://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/
+  rsync://mirror.eu.oneandone.net/gentoo/
 
 
   SPLINE, Institut für Informatik, Freie Universität Berlin



[gentoo-commits] proj/gnustep:master commit in: gnustep-apps/sogo/files/, metadata/md5-cache/gnustep-libs/, ...

2015-11-17 Thread Bernard Cafarelli
commit: 14314e3be5c49c38af34202c498a2d6106775539
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov 17 12:44:39 2015 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov 17 12:44:39 2015 +
URL:https://gitweb.gentoo.org/proj/gnustep.git/commit/?id=14314e3b

gnustep-apps/sogo: sope and sogo are now in portage

 gnustep-apps/sogo/ChangeLog| 39 ---
 gnustep-apps/sogo/Manifest |  6 --
 gnustep-apps/sogo/files/sogod.confd|  6 --
 gnustep-apps/sogo/files/sogod.initd| 33 -
 gnustep-apps/sogo/metadata.xml | 10 ---
 gnustep-apps/sogo/sogo-2.2.9a.ebuild   | 80 --
 gnustep-apps/thematic/Manifest |  2 +-
 gnustep-apps/thematic/thematic-.ebuild |  2 +-
 gnustep-libs/sope/ChangeLog| 49 -
 gnustep-libs/sope/Manifest |  4 --
 gnustep-libs/sope/metadata.xml |  6 --
 gnustep-libs/sope/sope-2.2.9a.ebuild   | 33 -
 metadata/md5-cache/gnustep-apps/sogo-2.2.9a| 14 
 metadata/md5-cache/gnustep-apps/thematic-  |  4 +-
 metadata/md5-cache/gnustep-libs/sope-2.2.9a| 13 
 .../md5-cache/x11-themes/gnustep-gtk-theme-|  4 +-
 x11-themes/gnustep-gtk-theme/Manifest  |  2 +-
 .../gnustep-gtk-theme-.ebuild  |  2 +-
 18 files changed, 8 insertions(+), 301 deletions(-)

diff --git a/gnustep-apps/sogo/ChangeLog b/gnustep-apps/sogo/ChangeLog
deleted file mode 100644
index 7961074..000
--- a/gnustep-apps/sogo/ChangeLog
+++ /dev/null
@@ -1,39 +0,0 @@
-# ChangeLog for gnustep-apps/sogo
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  10 Jun 2015; Bernard Cafarelli  sogo-2.2.9a.ebuild:
-  sogo also needs libmemcached, thanks xmw in bug #551390
-
-*sogo-2.1.1b (04 Feb 2014)
-
-  04 Feb 2014; Bernard Cafarelli  -sogo-1.1.0-r1.ebuild,
-  -sogo-1.2.0.ebuild, -sogo-1.2.1.ebuild, +sogo-2.1.1b.ebuild,
-  -sogo-.ebuild, files/sogod.confd, files/sogod.initd,
-  -files/sogod.initd.1, metadata.xml:
-  Major bump with rewritten ebuild
-
-  09 Mar 2010; Bernard Cafarelli  sogo-.ebuild:
-  monotone was moved to dev-vcs
-
-*sogo-1.2.0 (26 Jan 2010)
-
-  26 Jan 2010; Bernard Cafarelli  +sogo-1.2.0.ebuild:
-  Version bump, reported by steve
-
-*sogo- (13 Jan 2010)
-
-  13 Jan 2010; Bernard Cafarelli  sogo-1.1.0-r1.ebuild,
-  +sogo-.ebuild, +files/sogod.confd, +files/sogod.initd.1:
-  Add live ebuild, also by steveb in bug #295636
-
-  12 Jan 2010; Bernard Cafarelli  sogo-1.1.0-r1.ebuild:
-  ldap is mandatory
-
-*sogo-1.1.0-r1 (12 Jan 2010)
-
-  12 Jan 2010; Bernard Cafarelli  -sogo-1.1.0.ebuild,
-  +sogo-1.1.0-r1.ebuild, -files/sogo.initd, +files/sogod.initd,
-  +metadata.xml:
-  Create ChangeLog to keep tracks of things, new ebuild from bug #295636
-

diff --git a/gnustep-apps/sogo/Manifest b/gnustep-apps/sogo/Manifest
deleted file mode 100644
index 1910bba..000
--- a/gnustep-apps/sogo/Manifest
+++ /dev/null
@@ -1,6 +0,0 @@
-AUX sogod.confd 117 SHA256 
a556b2501155ebb9e2bd57fe8b32011ebca67530b4908d1cb0f87473ba80803a SHA512 
d93bde8c500bf8452d5f32efc35ec12f436afc498d7cc6ac1f55769f8696c9b41cc5edec829a19ea01b24c0d3a2c7901fc797cb04ced371bc8e0c3e6e243f15b
 WHIRLPOOL 
189dc32b8fa8f7ef2dbdec29515423ce4771ea18f1b3d539a85bb5e9b7148e26b2d37fd089d4646793eaded6a01d43f2674fc98bd9537bc7b72053ec1355
-AUX sogod.initd 693 SHA256 
8987a106aae104d06b326a0db513a091fe1e2195e74050b70851bf450317254b SHA512 
2ccf28bfa4f591532a289277659b9ee0240bc1dc338ac7e884acc24633cfb8a3a36b873cdce09bfacb5da20973dc45821b700eba60f5d5fe8c2eaddcddb7d8cf
 WHIRLPOOL 
537ebb512940dcae7827a1baae38e67841eb680121eb11ca0538d55e3a8f06250be3d8bd95c5b5887c183799427d21de5eed9a6d95e306aabaf4475beb169f35
-DIST SOGo-2.2.9a.tar.gz 11535574 SHA256 
02ff02ff0b509981049e14f4fc2f2d4d9e5cb62a53e65145fd41ab653d262e46 SHA512 
e618b1b4f0b3f374abd9ec5d18bd3f4252c5642beb8a7c81cc380df5508919dad9a9dbf9de3f55a12ae9d5e603388e9a148e5d01ae41f4599aa8c82ce016d67a
 WHIRLPOOL 
710b8f3ad273aa2f3a8c898edc12cbf9ff8d0ab6c227e793e4842a376358ebd86651625f277d66267de330c9f7f60db7222fd54442692f3d851bd40b4a0ef117
-EBUILD sogo-2.2.9a.ebuild 1685 SHA256 
04087d7f8b9ef19d6e18dba8d7de0e3949b4fef6b7b6a1fb37cb9f2809c9e7a6 SHA512 
fad7539a2cf1402277991c97f2e5723d5b83b512e1575b4314ff1752790549bfe41c4534fc62990401d16e9d0eb04cc31edae67e0480077b31d327721a73af56
 WHIRLPOOL 
8c967a8240f4eb774fe3d14d5cb4e7f93d8ca4673920a68090bc77dae7b1f969c87367001b82417fd6e9a5f88afeaec97767c04759e56c922e0d293f767531cf
-MISC ChangeLog 1371 SHA256 
f03dcb18d22115f1a8af19c1c2b539f74f392dd4d8b9e70f985e41c77e01204d SHA512 

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

2015-11-17 Thread Justin Lecher
commit: f1e2563ea4a72f78edc31ee7a3264945fa667596
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 15:53:34 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 15:53:34 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1e2563e

dev-python/line_profiler: Imported from science overlay

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/line_profiler/Manifest  |  1 +
 dev-python/line_profiler/line_profiler-1.0.ebuild  | 28 ++
 dev-python/line_profiler/line_profiler-.ebuild | 28 ++
 dev-python/line_profiler/metadata.xml  | 19 +++
 4 files changed, 76 insertions(+)

diff --git a/dev-python/line_profiler/Manifest 
b/dev-python/line_profiler/Manifest
new file mode 100644
index 000..abe5549
--- /dev/null
+++ b/dev-python/line_profiler/Manifest
@@ -0,0 +1 @@
+DIST line_profiler-1.0.tar.gz 65862 SHA256 
a9e0c9ffa814f1215107c86c890afa8e63bec5a37d951f6f9d3668c1df2b1900 SHA512 
15dd7ee10951287a5030eaff28e729e82094ec41d8e8dec803d5e44c6b9036ecbf1198365ef43c1fdd28451dec260c6491d118f1762d99fe037bb85eb7908dda
 WHIRLPOOL 
1fd56ea4777a3c569807a124c708018fc77e68521d1f1ecdb13c343ddad3fcd881353cd71a0af36d06a12f1dd17be0f2731040fca5e827a4936298057dabf917

diff --git a/dev-python/line_profiler/line_profiler-1.0.ebuild 
b/dev-python/line_profiler/line_profiler-1.0.ebuild
new file mode 100644
index 000..a2df317
--- /dev/null
+++ b/dev-python/line_profiler/line_profiler-1.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Line-by-line profiler"
+HOMEPAGE="https://github.com/rkern/line_profiler;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+   "
+
+python_test() {
+   "${PYTHON}" -m unittest discover -v "${S}"/tests/ \
+   || die "Tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/line_profiler/line_profiler-.ebuild 
b/dev-python/line_profiler/line_profiler-.ebuild
new file mode 100644
index 000..2b7914d
--- /dev/null
+++ b/dev-python/line_profiler/line_profiler-.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1 git-r3
+
+DESCRIPTION="Line-by-line profiler"
+HOMEPAGE="https://github.com/rkern/line_profiler;
+EGIT_REPO_URI="https://github.com/rkern/${PN}.git;
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS=""
+IUSE="test"
+
+DEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+   "
+
+python_test() {
+   "${PYTHON}" -m unittest discover -v "${S}"/tests/ \
+   || die "Tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/line_profiler/metadata.xml 
b/dev-python/line_profiler/metadata.xml
new file mode 100644
index 000..270efb2
--- /dev/null
+++ b/dev-python/line_profiler/metadata.xml
@@ -0,0 +1,19 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  sci
+  
+mar...@linux.sungazer.de
+Marius Brehler
+  
+  
+line_profiler is a module for doing line-by-line profiling of
+functions. kernprof is a convenient script for running either
+line_profiler or the Python standard library's cProfile or profile
+modules, depending on what is available.
+  
+  
+line_profiler
+rkern/line_profiler
+  
+



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

2015-11-17 Thread Justin Lecher
commit: 073db85d7b59189c6bcb82f3c1ff3d8401226f82
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 15:55:15 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 15:55:15 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=073db85d

dev-python/ipython: Add {line,memory}_profiler to optfeature

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/ipython/ipython-4.0.0-r2.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/ipython/ipython-4.0.0-r2.ebuild 
b/dev-python/ipython/ipython-4.0.0-r2.ebuild
index 6fa409b..076965c 100644
--- a/dev-python/ipython/ipython-4.0.0-r2.ebuild
+++ b/dev-python/ipython/ipython-4.0.0-r2.ebuild
@@ -124,6 +124,8 @@ python_install_all() {
 pkg_postinst() {
optfeature "sympyprinting" dev-python/sympy
optfeature "cythonmagic" dev-python/cython
+   optfeature "%lprun magic command" dev-python/line_profiler
+   optfeature "%mprun magic command" dev-python/memory_profiler
if use nbconvert; then
if ! has_version app-text/pandoc ; then
einfo "Node.js will be used to convert notebooks to 
other formats"



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

2015-11-17 Thread Justin Lecher
commit: e54fd7ae45ac1a649bbb1876ed92f156a6f08c0c
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 15:56:53 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 15:56:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e54fd7ae

dev-python/ipython: Add {line,memory}_profiler to optfeature

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/ipython/ipython-3.2.1-r1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/ipython/ipython-3.2.1-r1.ebuild 
b/dev-python/ipython/ipython-3.2.1-r1.ebuild
index a4db074..f482b55 100644
--- a/dev-python/ipython/ipython-3.2.1-r1.ebuild
+++ b/dev-python/ipython/ipython-3.2.1-r1.ebuild
@@ -145,6 +145,8 @@ python_install_all() {
 pkg_postinst() {
optfeature "sympyprinting" dev-python/sympy
optfeature "cythonmagic" dev-python/cython
+   optfeature "%lprun magic command" dev-python/line_profiler
+   optfeature "%mprun magic command" dev-python/memory_profiler
if use nbconvert; then
if ! has_version app-text/pandoc ; then
einfo "Node.js will be used to convert notebooks to 
other formats"



[gentoo-commits] repo/gentoo:master commit in: games-strategy/ufo-ai/

2015-11-17 Thread Michael Sterrett
commit: c9827c2e7e0c31802888b7b792dc3d25393e8979
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Nov 17 16:11:55 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Tue Nov 17 16:11:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9827c2e

remove incomplete non-maintainer commit

Package-Manager: portage-2.2.20.1

 games-strategy/ufo-ai/Manifest  |   2 -
 games-strategy/ufo-ai/ufo-ai-2.5.ebuild | 144 
 2 files changed, 146 deletions(-)

diff --git a/games-strategy/ufo-ai/Manifest b/games-strategy/ufo-ai/Manifest
index a99613d..6f19f0d 100644
--- a/games-strategy/ufo-ai/Manifest
+++ b/games-strategy/ufo-ai/Manifest
@@ -1,5 +1,3 @@
 DIST 1maps.pk3 242016 SHA256 
8cdb8c231c0ba98900d97012b62c5cef72ab5710fe3f087e534496a66f7b0e4e SHA512 
9615b365e590dceb82362e7cd683980e15401a3b5a2b359a33c7ed2a4c51e5328efb352618cc48f46971a2ced1717276b5270ca6bf6d2bc7fc2b2238030eb3ae
 WHIRLPOOL 
8e798ffeaa83609114fd239ea8f379ee54fa6038735a09bd3abe3076073e92b44e7fa867c893d597577da462b4e583fb0a2bba7cd2014a9f4b4bb8ef04b377e6
 DIST ufoai-2.4-data.tar 937062400 SHA256 
6bb322fc0362781d07439799de32c677884cef7c96fcf17dd87c62cc108030b7 SHA512 
471eab2f62cad144fe9966317d48c408fba19de0c33cf7414918b502c723b722af38a025f808848698d9a06ffc10fb0faac145dd01dcd3d321547c87da1c6246
 WHIRLPOOL 
139251bdbd76f86cb38175eb9c14149ea0cab6bbcb04e2dba7351cdb5b0e21bdfd231e350c0af4f52379d0c5bee91f0512422a7eb9f6339eb6a07170d64fec0c
 DIST ufoai-2.4-source.tar.bz2 16875353 SHA256 
254a61b770f141374d57e5c2589048be9298d0a920e914c6e72c2b98255bb94f SHA512 
3f9d0df7392f50c201464c81e42435f860df97d5d7a2ef53bb9a05d2b2fc645a1130baaf16fc34818b88bb07b8cf83283f7479d685cbd3caf80ea7522e13c56f
 WHIRLPOOL 
0e68149ab2b3eeffb7134e65cc29de9cecf60dc89c965958a0d669c2d22462d05b89b0a81a3225ebbd7e47015fc63697cbad365136706f4853f9c1e690b0667d
-DIST ufoai-2.5-data.tar 1269913600 SHA256 
0d12041cba3aaaba1ce114650c36586d286dcce51c721844c06fdace06e307b8 SHA512 
429ddc33391aa33ca5ff1788a01114a5c8eb0bb6d66a5bedb1c88c3a46810813cade2ecd69b4ef4f18e9dd6b41485c1bf9f9b0f13fc9255cbf1f9484186f883b
 WHIRLPOOL 
d10e517ebd158a65e427f3d105df89d0ee5eb2900b99142d0e5b044c3bdd9f5063c6774c4570f93da87f408b0099a364e48ad7cec1638b4e6c6282c495557f8e
-DIST ufoai-2.5-source.tar.bz2 24239539 SHA256 
0c7cc3bc9efeb276f71cbe6ee8ff7c76f98d183de79f1a069fa63059cf182a8f SHA512 
072fe8820b1b242bb13f0820459fc27092b8597573231c8921c711859df39c8e28d9854e8a0300ebabb38cdeb99db16bed388a1391ba9f54100268b831db056f
 WHIRLPOOL 
23cf4c88e88a85f5e6857e8c91e55e19bfce3c59d49168d16deca58a4ce9de25f942f86d7219c6d07f4b8dab2649068462616b38191ceb3b03973fed165bf058

diff --git a/games-strategy/ufo-ai/ufo-ai-2.5.ebuild 
b/games-strategy/ufo-ai/ufo-ai-2.5.ebuild
deleted file mode 100644
index baf3a40..000
--- a/games-strategy/ufo-ai/ufo-ai-2.5.ebuild
+++ /dev/null
@@ -1,144 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils flag-o-matic gnome2-utils
-
-MY_P=${P/ufo-ai/ufoai}
-
-# better than the default "/usr/games/ufo/"
-MY_DATADIR="${EPREFIX}/usr/share/games/${PN/-}"
-
-DESCRIPTION="UFO: Alien Invasion - X-COM inspired strategy game"
-HOMEPAGE="http://ufoai.sourceforge.net/;
-SRC_URI="mirror://sourceforge/ufoai/${MY_P}-source.tar.bz2
-   mirror://sourceforge/ufoai/${MY_P}-data.tar
-"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# "editor" USE flag disabled until someone gets it to work
-# See http://ufoai.org/forum/index.php?topic=8978
-IUSE="debug dedicated profile"
-
-# Dependencies and more instructions can be found here:
-# http://ufoai.ninex.info/wiki/index.php/Compile_for_Linux
-DEPEND="!dedicated? (
-   virtual/opengl
-   virtual/glu
-   media-libs/libsdl2[joystick,opengl,sound,threads,video]
-   media-libs/sdl2-image[jpeg,png]
-   media-libs/sdl2-ttf
-   media-libs/sdl2-mixer
-   virtual/jpeg:62
-   media-libs/libpng:0
-   media-libs/libogg
-   media-libs/libvorbis
-   media-libs/libtheora
-   x11-proto/xf86vidmodeproto
-   )
-   net-misc/curl
-   sys-devel/gettext
-   sys-libs/zlib
-"
-   # editor? (
-   #   dev-libs/libxml2
-   #   virtual/jpeg:62
-   #   media-libs/openal
-   #   x11-libs/gtkglext
-   #   x11-libs/gtksourceview:2.0
-   # )
-   # "
-
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}-source
-
-pkg_setup() {
-   if use profile; then
-   ewarn "USE=\"profile\" is incompatible with the hardened 
profile's -pie flag."
-   fi
-
-   einfo "
-   Note that the dedicated server (ufoded) is currently missing some
-   map files and therefore might not start:
-   http://ufoai.org/bugs/ufoalieninvasion/issues/5383
-
-   Help to fix this is welcome!
-"
-   if use dedicated ; 

[gentoo-commits] repo/gentoo: Branch deleted: bug561696

2015-11-17 Thread Michał Górny
commit: 
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 15:58:10 2015 +

Branch deleted: bug561696




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

2015-11-17 Thread Lars Wendler
commit: 9e83f8fedfac9e3a97d0c8419925127bd098879c
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Nov 17 11:10:22 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Nov 17 11:10:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e83f8fe

sys-fs/xfsdump: Removed old.

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

 sys-fs/xfsdump/Manifest |  1 -
 sys-fs/xfsdump/xfsdump-3.1.4.ebuild | 44 -
 2 files changed, 45 deletions(-)

diff --git a/sys-fs/xfsdump/Manifest b/sys-fs/xfsdump/Manifest
index 009cf1a..a65ac80 100644
--- a/sys-fs/xfsdump/Manifest
+++ b/sys-fs/xfsdump/Manifest
@@ -1,4 +1,3 @@
 DIST xfsdump-3.1.3.tar.gz 826922 SHA256 
f02138a5d96e06c506ac8cb6e4fedeb0bf7d7cf8b9747f262d0735b885dbf8fa SHA512 
18f5ce7e249b317247012246fd7c5980f62cc46a5718adc80a3137be4f2d7c47edd7d1286e31fbae9c0629a49fc13482308e37950c5122165929088e467865b9
 WHIRLPOOL 
cb80202e16c14ac279ffc698acf1ad3b1fe7365a451d05bba5ec5410b6cdcaf06f7f1986f374130cc40d0a43ccb0eedb2ed433a3e41c6701e9c94c247d821207
-DIST xfsdump-3.1.4.tar.gz 848188 SHA256 
570eafd0721515bdd79cb0e295b701d49cdf81e71a0a0ff0df6d4c5cc1960943 SHA512 
e82885ad6b3f1d81c1cdeff56714b73651e1c74eb4ce71574875ec0bb69b3fe707b40f85f0766b21ba589d13364ecfc0bad657a9b15c428cf821f926c3d66b25
 WHIRLPOOL 
5677000929f260b391743207a865c7529b788db46806a62c62bb6917025194913609cc804ead23314988f44853abc57f3c86ee22d2bde365697a35b0a7e3b607
 DIST xfsdump-3.1.5.tar.gz 848863 SHA256 
2f1fad1754c94163a2401e69fa09ef06f587f780239a131e7ec0a14a3a3959e3 SHA512 
107d23e3d1a84aaef0ef4c0f541f37a860ccbef996e0886a6f56f01c7998451210b127289c21ec71e9ef5db7d124d479b41017e9e3d5c2d9c68b2dbbfd316620
 WHIRLPOOL 
ed7d6c11c4354540d8accb8c0d4955fc039bdead3c2f854e609756d14a856b862884adc1dba059ed28fa57ece76c8be3f073b8058c59dbac807a7af9fbbf482d
 DIST xfsdump-3.1.6.tar.gz 848698 SHA256 
7f78c11ca527477d90e5e62b0778f3ad96f2b71c19173044e9aca9515fff42d0 SHA512 
6d8eff10c65e0a0893525590953ccb7ec0095ba528725ffe3f18260e6cb8f66dd3945c60477500e84421a9ed57fae9e8f0f25c3c0900be3671f30ca6951ed5e7
 WHIRLPOOL 
87182e97a5676be6ad36cf74e37d9ca312d742d20eb5396917a156842fe62a23c582e16862fb384fe7706097d9f0c7a6a8faced06fec0a999ac06ceb426eb7e3

diff --git a/sys-fs/xfsdump/xfsdump-3.1.4.ebuild 
b/sys-fs/xfsdump/xfsdump-3.1.4.ebuild
deleted file mode 100644
index ffb1a54..000
--- a/sys-fs/xfsdump/xfsdump-3.1.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit multilib eutils
-
-DESCRIPTION="xfs dump/restore utilities"
-HOMEPAGE="http://oss.sgi.com/projects/xfs;
-SRC_URI="ftp://oss.sgi.com/projects/xfs/cmd_tars/${P}.tar.gz
-   ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86"
-IUSE=""
-
-RDEPEND="sys-fs/e2fsprogs
-   >=sys-fs/xfsprogs-3.2.0
-   sys-apps/dmapi
-   >=sys-apps/attr-2.4.19"
-DEPEND="${RDEPEND}
-   sys-devel/gettext"
-
-src_prepare() {
-   sed -i \
-   -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
-   include/builddefs.in \
-   || die
-   epatch "${FILESDIR}"/${PN}-3.0.5-prompt-overflow.patch #335115
-   epatch "${FILESDIR}"/${PN}-3.0.4-no-symlink.patch #311881
-}
-
-src_configure() {
-   unset PLATFORM #184564
-   export OPTIMIZER=${CFLAGS}
-   export DEBUG=-DNDEBUG
-
-   econf \
-   --libdir=/$(get_libdir) \
-   --libexecdir=/usr/$(get_libdir) \
-   --sbindir=/sbin
-}



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

2015-11-17 Thread Lars Wendler
commit: e2de10880a06035742b7e32d68b6932b027e59aa
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Nov 17 11:09:20 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Nov 17 11:10:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2de1088

sys-fs/xfsdump: Bump to version 3.1.6

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

 sys-fs/xfsdump/Manifest |  1 +
 sys-fs/xfsdump/xfsdump-3.1.6.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/sys-fs/xfsdump/Manifest b/sys-fs/xfsdump/Manifest
index 6702691..009cf1a 100644
--- a/sys-fs/xfsdump/Manifest
+++ b/sys-fs/xfsdump/Manifest
@@ -1,3 +1,4 @@
 DIST xfsdump-3.1.3.tar.gz 826922 SHA256 
f02138a5d96e06c506ac8cb6e4fedeb0bf7d7cf8b9747f262d0735b885dbf8fa SHA512 
18f5ce7e249b317247012246fd7c5980f62cc46a5718adc80a3137be4f2d7c47edd7d1286e31fbae9c0629a49fc13482308e37950c5122165929088e467865b9
 WHIRLPOOL 
cb80202e16c14ac279ffc698acf1ad3b1fe7365a451d05bba5ec5410b6cdcaf06f7f1986f374130cc40d0a43ccb0eedb2ed433a3e41c6701e9c94c247d821207
 DIST xfsdump-3.1.4.tar.gz 848188 SHA256 
570eafd0721515bdd79cb0e295b701d49cdf81e71a0a0ff0df6d4c5cc1960943 SHA512 
e82885ad6b3f1d81c1cdeff56714b73651e1c74eb4ce71574875ec0bb69b3fe707b40f85f0766b21ba589d13364ecfc0bad657a9b15c428cf821f926c3d66b25
 WHIRLPOOL 
5677000929f260b391743207a865c7529b788db46806a62c62bb6917025194913609cc804ead23314988f44853abc57f3c86ee22d2bde365697a35b0a7e3b607
 DIST xfsdump-3.1.5.tar.gz 848863 SHA256 
2f1fad1754c94163a2401e69fa09ef06f587f780239a131e7ec0a14a3a3959e3 SHA512 
107d23e3d1a84aaef0ef4c0f541f37a860ccbef996e0886a6f56f01c7998451210b127289c21ec71e9ef5db7d124d479b41017e9e3d5c2d9c68b2dbbfd316620
 WHIRLPOOL 
ed7d6c11c4354540d8accb8c0d4955fc039bdead3c2f854e609756d14a856b862884adc1dba059ed28fa57ece76c8be3f073b8058c59dbac807a7af9fbbf482d
+DIST xfsdump-3.1.6.tar.gz 848698 SHA256 
7f78c11ca527477d90e5e62b0778f3ad96f2b71c19173044e9aca9515fff42d0 SHA512 
6d8eff10c65e0a0893525590953ccb7ec0095ba528725ffe3f18260e6cb8f66dd3945c60477500e84421a9ed57fae9e8f0f25c3c0900be3671f30ca6951ed5e7
 WHIRLPOOL 
87182e97a5676be6ad36cf74e37d9ca312d742d20eb5396917a156842fe62a23c582e16862fb384fe7706097d9f0c7a6a8faced06fec0a999ac06ceb426eb7e3

diff --git a/sys-fs/xfsdump/xfsdump-3.1.6.ebuild 
b/sys-fs/xfsdump/xfsdump-3.1.6.ebuild
new file mode 100644
index 000..935ff64
--- /dev/null
+++ b/sys-fs/xfsdump/xfsdump-3.1.6.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit multilib eutils
+
+DESCRIPTION="xfs dump/restore utilities"
+HOMEPAGE="http://oss.sgi.com/projects/xfs;
+SRC_URI="ftp://oss.sgi.com/projects/xfs/cmd_tars/${P}.tar.gz
+   ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/${P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86"
+IUSE=""
+
+RDEPEND="sys-fs/e2fsprogs
+   >=sys-fs/xfsprogs-3.2.0
+   sys-apps/dmapi
+   >=sys-apps/attr-2.4.19"
+DEPEND="${RDEPEND}
+   sys-devel/gettext"
+
+src_prepare() {
+   sed -i \
+   -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
+   include/builddefs.in \
+   || die
+   epatch "${FILESDIR}"/${PN}-3.0.5-prompt-overflow.patch #335115
+   epatch "${FILESDIR}"/${PN}-3.0.4-no-symlink.patch #311881
+}
+
+src_configure() {
+   unset PLATFORM #184564
+   export OPTIMIZER=${CFLAGS}
+   export DEBUG=-DNDEBUG
+
+   econf \
+   --libdir="${EPREFIX}/$(get_libdir)" \
+   --libexecdir="${EPREFIX}/usr/$(get_libdir)" \
+   --sbindir="${EPREFIX}/sbin"
+}



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

2015-11-17 Thread Justin Lecher
commit: c0a778d3c272d681a807971875c2a9a48f3dbeaa
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 11:23:29 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 11:23:34 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a778d3

app-admin/ansible: Drop old

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 app-admin/ansible/Manifest |  1 -
 app-admin/ansible/ansible-1.9.3.ebuild | 63 --
 2 files changed, 64 deletions(-)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index ff33842..bd11ba0 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,2 +1 @@
-DIST ansible-1.9.3.tar.gz 936633 SHA256 
2594f642fd800056a427c1026410dc6ed8dfa7c0033f5c3d187abdb2b0d4eeed SHA512 
280d7506417affc11fe8c8715f82ffb011991e48e96db73aca915e1393d51073564c78a98b018c380b7fb8e697ce0fac6208822da44f2bac545f142707325d43
 WHIRLPOOL 
5738bcd263ca32279bbca30e3f1b5c53e5bd72a18025fdb82393a8d85e5a826b3be4ce78cbbc648133768d212fa49d1c3320af4b34f948c1b1cee40d73147f8a
 DIST ansible-1.9.4.tar.gz 937120 SHA256 
972c2face49f1577bd0ff7989440bfe2820e66fb10d7579915cc536bccfa6fe3 SHA512 
53ef5b3390be620cedc92687c7c9853c42f38547494f9b77056d5ea48ccd8f43d193648a7f4569fcba5afad343a9202b123296ab47c8cd02eecfe455d83b9586
 WHIRLPOOL 
0b88a27f690ff940eae1969ff163d8f8c26df038d2e9aa76694bdba1448ac9cbe8123795d0787e528c6d22cf66cc01d6b89add8e3e97bbb107a3f1a96860fd8e

diff --git a/app-admin/ansible/ansible-1.9.3.ebuild 
b/app-admin/ansible/ansible-1.9.3.ebuild
deleted file mode 100644
index a08091b..000
--- a/app-admin/ansible/ansible-1.9.3.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 eutils readme.gentoo
-
-DESCRIPTION="Radically simple deployment, model-driven configuration 
management, and command execution framework"
-HOMEPAGE="http://ansible.com/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x64-macos"
-IUSE="test"
-
-RDEPEND="
-   dev-python/httplib2[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/keyczar[${PYTHON_USEDEP}]
-   >=dev-python/pycrypto-2.6[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   net-misc/sshpass
-   virtual/ssh
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${RDEPEND}
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/passlib[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )"
-
-# not included in release tarball
-RESTRICT="test"
-
-python_test() {
-   nosetests -d -w test/units -v --with-coverage --cover-package=ansible 
--cover-branches || die
-}
-
-python_install_all() {
-   EXAMPLES=( examples )
-   distutils-r1_python_install_all
-
-   doman docs/man/man1/*.1
-
-   newenvd "${FILESDIR}"/${PN}.env 95ansible
-}
-
-src_install() {
-   distutils-r1_src_install
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   optfeature "Alternative ssh transport" dev-python/paramiko
-}



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: app-eselect/eselect-python/

2015-11-17 Thread Michał Górny
commit: 373c1e2f2d3db06ed042de935cb3dca9abf2a227
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 17 13:01:05 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 13:01:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=373c1e2f

Update the eselect-python bump for EXEEXT fix

 app-eselect/eselect-python/Manifest | 2 +-
 .../{eselect-python-20151115.ebuild => eselect-python-20151117.ebuild}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-eselect/eselect-python/Manifest 
b/app-eselect/eselect-python/Manifest
index 9ac29ae..c07c04d 100644
--- a/app-eselect/eselect-python/Manifest
+++ b/app-eselect/eselect-python/Manifest
@@ -2,4 +2,4 @@ DIST eselect-python-2008.tar.bz2 64959 SHA256 
34d7618808a3c1d22e6763bc6c67d5
 DIST eselect-python-20131210.tar.bz2 71802 SHA256 
61ff5a5a3ae7982c6ffd503886cbcd35142df05f07008722b90ab5036e4bf8f2 SHA512 
8c523019e2a8fe7f1679b96a3da22326dbe65888739bb8cce3c4e2aa7c2c08cada01196a65c8fe35e08b3b7682a3f695e453e9ef1fb53f6b8886c51c09107d60
 WHIRLPOOL 
e8c75eb1ad6fcaaba50cae9d10d2414b29b3cfc8d06c79257948b0d0b4e7c2156d1672be4f5edd28055b5ae3f6aa54b1b8ef6eaaae9dfa1ce9b7b0b68dbc712a
 DIST eselect-python-20140115.tar.bz2 71910 SHA256 
5898ee19015ae905168e8b7aa76552b96f691285ab77c426b6a9238ecf742e45 SHA512 
65d6a6b9dfa0a0f4bea5352f965bed8942a16382135edea093342fa79a824d114b900cbcf607490f260b4ce4e5a2eb57872169e5494f8e6e65f41dd63cd5d335
 WHIRLPOOL 
633bca3e8a87e04c54a3790bb207da92d41af604cce7f8600c5317f6a759c55efbd3e5ba658e893d2d079248d2dadb1a0bb60248960e3d20cd766768a228d8c5
 DIST eselect-python-20140125.tar.bz2 72102 SHA256 
ee7b470f7facc42285bab7f4b947280741515a85c9067339511c219248f8fdfb SHA512 
94d4eb5a1af365c6f56a6fc2b75298018267cd4f6004f30b2e4d0c4744d3e82b33f6c82e6f0ea0f15132d5157c3ace99fa167bbf3ebada46edd2e005ca96eb51
 WHIRLPOOL 
70d5f9af2929507d26e56080ce934066d2de5f16030dfd63b016215465ad5fc89eb952d64cc545c7058d146108e26925741d2c8fbaba08abba1a5cae7b0c23b6
-DIST eselect-python-20151115.tar.bz2 3256 SHA256 
e5a5a97f80ff9613db1af35c5a265baa9157eb38e2513391fe59d4b794a71e57 SHA512 
525f1552c5dd27cb0a81c9d9ff965dc63c538e2880de1dd873a6059bd387b9935bc6c4b43b7d9b409a827751ba1f25925862f65264b03a80df893bf2405f7d61
 WHIRLPOOL 
dc9d847d6ac55d4b8a6c86029689e244697faa68e02025545ffc57574ea389a938a8886c1a0ebb4a25993204020468d06cac2abaa6a77fc8926ebdd1e8e50b25
+DIST eselect-python-20151117.tar.bz2 3283 SHA256 
ad41e2ea2fef39c8dc2c5fb5f4a4cde73da127ac771edd2ace5cc1f03b65a844 SHA512 
aabf14cbe8a70a80d861c2550a0320e16c0deddf44e4fb8ccf45b66289161a2196340667b66f857a662ed04414f4a933f0ef7a67947101a2bb73075d104c5ec2
 WHIRLPOOL 
4aec8226b9a4207ef4eb6f7c19ff61b436f2cd354c26e3551bcaa0d6ea37134da0c15e3d753792b4e70df746246711afb755ed03b3f6ef4f5694721e02fbe917

diff --git a/app-eselect/eselect-python/eselect-python-20151115.ebuild 
b/app-eselect/eselect-python/eselect-python-20151117.ebuild
similarity index 96%
rename from app-eselect/eselect-python/eselect-python-20151115.ebuild
rename to app-eselect/eselect-python/eselect-python-20151117.ebuild
index fc7b0f6..cbd72ae 100644
--- a/app-eselect/eselect-python/eselect-python-20151115.ebuild
+++ b/app-eselect/eselect-python/eselect-python-20151117.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
EGIT_BRANCH="mgornys-hackery"
 else
inherit autotools vcs-snapshot
-   
SRC_URI="https://gitweb.gentoo.org/proj/eselect-python.git/snapshot/2e082de29ee3707d11d1097132aaeeae16d0ea83.tar.bz2
 -> ${P}.tar.bz2"
+   
SRC_URI="https://gitweb.gentoo.org/proj/eselect-python.git/snapshot/6824d7d6841536d153cb56a350c6f89708725777.tar.bz2
 -> ${P}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-aix ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 



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

2015-11-17 Thread Justin Lecher
commit: 839c070eb0dfb5206b8f37dd87165fcecafa0eb5
Author: Horea Christian  mail  ru>
AuthorDate: Thu Nov 12 14:15:22 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 14:15:22 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=839c070e

sci-libs/nipy: removed leading spaces

Package-Manager: portage-2.2.23

 sci-libs/nipy/ChangeLog |  4 
 sci-libs/nipy/nipy-0.3.0.ebuild | 10 +-
 sci-libs/nipy/nipy-0.4.0.ebuild | 10 +-
 3 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/sci-libs/nipy/ChangeLog b/sci-libs/nipy/ChangeLog
index f63ab67..9061577 100644
--- a/sci-libs/nipy/ChangeLog
+++ b/sci-libs/nipy/ChangeLog
@@ -4,6 +4,10 @@
 
   12 Nov 2015; Horea Christian  nipy-0.3.0.ebuild,
   nipy-0.4.0.ebuild:
+  sci-libs/nipy: removed leading spaces
+
+  12 Nov 2015; Horea Christian  nipy-0.3.0.ebuild,
+  nipy-0.4.0.ebuild:
   sci-libs/nipy: updated dependency list
 
 *nipy-0.4.0 (11 Nov 2015)

diff --git a/sci-libs/nipy/nipy-0.3.0.ebuild b/sci-libs/nipy/nipy-0.3.0.ebuild
index 50878d9..ae7d99c 100644
--- a/sci-libs/nipy/nipy-0.3.0.ebuild
+++ b/sci-libs/nipy/nipy-0.3.0.ebuild
@@ -18,12 +18,12 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="
-sci-libs/scipy[${PYTHON_USEDEP}]
-dev-python/sympy[${PYTHON_USEDEP}]
->=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]
-dev-python/numpy[${PYTHON_USEDEP}]"
+   sci-libs/scipy[${PYTHON_USEDEP}]
+   dev-python/sympy[${PYTHON_USEDEP}]
+   >=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
-dev-python/setuptools[${PYTHON_USEDEP}]"
+   dev-python/setuptools[${PYTHON_USEDEP}]"
 
 python_prepare_all() {
distutils-r1_python_prepare_all

diff --git a/sci-libs/nipy/nipy-0.4.0.ebuild b/sci-libs/nipy/nipy-0.4.0.ebuild
index 50878d9..ae7d99c 100644
--- a/sci-libs/nipy/nipy-0.4.0.ebuild
+++ b/sci-libs/nipy/nipy-0.4.0.ebuild
@@ -18,12 +18,12 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="
-sci-libs/scipy[${PYTHON_USEDEP}]
-dev-python/sympy[${PYTHON_USEDEP}]
->=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]
-dev-python/numpy[${PYTHON_USEDEP}]"
+   sci-libs/scipy[${PYTHON_USEDEP}]
+   dev-python/sympy[${PYTHON_USEDEP}]
+   >=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
-dev-python/setuptools[${PYTHON_USEDEP}]"
+   dev-python/setuptools[${PYTHON_USEDEP}]"
 
 python_prepare_all() {
distutils-r1_python_prepare_all



[gentoo-commits] proj/sci:master commit in: sci-physics/root/, sci-physics/root/files/

2015-11-17 Thread Justin Lecher
commit: 7bb9ac34e68c7add57a2a5f9772b5a0897a1085b
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Sun Nov 15 19:03:49 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Nov 15 19:03:49 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=7bb9ac34

sci-physics/root: Update to upstream changes.
New nobyte-compile patch, paths for gl2ps changed,
DOCS files changed.

Package-Manager: portage-2.2.24

 sci-physics/root/ChangeLog |  6 +
 ...ile.patch => root-6.06.00-nobyte-compile.patch} | 28 +-
 sci-physics/root/root-.ebuild  |  5 ++--
 3 files changed, 26 insertions(+), 13 deletions(-)

diff --git a/sci-physics/root/ChangeLog b/sci-physics/root/ChangeLog
index accb1de..b816975 100644
--- a/sci-physics/root/ChangeLog
+++ b/sci-physics/root/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  15 Nov 2015; Oliver Freyermuth 
+  +files/root-6.06.00-nobyte-compile.patch,
+  -files/root-6.00.01-nobyte-compile.patch, root-.ebuild:
+  sci-physics/root: Update to upstream changes. New nobyte-compile patch, paths
+  for gl2ps changed,  DOCS files changed.
+
   27 Sep 2015; Oliver Freyermuth 
   -files/root-6.00.01-geocad.patch, root-.ebuild:
   sci-physics/root:  Remove geocad-patch, is now upstream.

diff --git a/sci-physics/root/files/root-6.00.01-nobyte-compile.patch 
b/sci-physics/root/files/root-6.06.00-nobyte-compile.patch
similarity index 57%
rename from sci-physics/root/files/root-6.00.01-nobyte-compile.patch
rename to sci-physics/root/files/root-6.06.00-nobyte-compile.patch
index aa58f20..61ffef7 100644
--- a/sci-physics/root/files/root-6.00.01-nobyte-compile.patch
+++ b/sci-physics/root/files/root-6.06.00-nobyte-compile.patch
@@ -1,33 +1,39 @@
-diff -Naur root.as-needed/bindings/pyroot/Module.mk 
root/bindings/pyroot/Module.mk
 root.as-needed/bindings/pyroot/Module.mk   2011-07-10 10:42:48.991561304 
+0400
-+++ root/bindings/pyroot/Module.mk 2011-07-10 10:43:21.493339703 +0400
-@@ -48,8 +48,6 @@
- ROOTPY   := $(subst $(MODDIR),$(LPATH),$(ROOTPYS))
- $(LPATH)/%.py: $(MODDIR)/%.py; cp $< $@
+diff --git a/bindings/pyroot/Module.mk b/bindings/pyroot/Module.mk
+index 8c2782d..f41e0aa 100644
+--- a/bindings/pyroot/Module.mk
 b/bindings/pyroot/Module.mk
+@@ -65,10 +65,6 @@ $(LPATH)/ROOTaaS/%: $(MODDIR)/ROOTaaS/%
+   @[ -d $(dir $@) ] || mkdir -p $(dir $@)
+   cp -R $< $@
  endif
 -ROOTPYC  := $(ROOTPY:.py=.pyc)
 -ROOTPYO  := $(ROOTPY:.py=.pyo)
+-ROOTAASC := $(ROOTAAS:.py=.pyc)
+-ROOTAASO := $(ROOTAAS:.py=.pyo)
  
  # used in the main Makefile
  ALLHDRS  += $(patsubst $(MODDIRI)/%.h,include/%.h,$(PYROOTH))
-@@ -68,10 +66,8 @@
+@@ -87,12 +83,9 @@ INCLUDEFILES += $(PYROOTDEP)
  include/%.h:$(PYROOTDIRI)/%.h
cp $< $@
  
 -%.pyc: %.py;python -c 'import py_compile; py_compile.compile( "$<" )'
 -%.pyo: %.py;python -O -c 'import py_compile; py_compile.compile( "$<" )'
- 
+-
 -$(PYROOTLIB):   $(PYROOTO) $(PYROOTDO) $(ROOTPY) $(ROOTPYC) $(ROOTPYO) \
 +$(PYROOTLIB):   $(PYROOTO) $(PYROOTDO) $(ROOTPY) \
- $(ROOTLIBSDEP) $(PYTHONLIBDEP)
+ $(ROOTLIBSDEP) $(PYTHONLIBDEP) \
+-$(ROOTAAS) $(ROOTAASC) $(ROOTAASO)
++$(ROOTAAS)
+ 
@$(MAKELIB) $(PLATFORM) $(LD) "$(LDFLAGS)" \
  "$(SOFLAGS)" libPyROOT.$(SOEXT) $@ \
-@@ -113,7 +109,7 @@
+@@ -138,7 +131,7 @@ clean:: clean-$(MODNAME)
  
  distclean-$(MODNAME): clean-$(MODNAME)
@rm -f $(PYROOTDEP) $(PYROOTDS) $(PYROOTDH) $(PYROOTLIB) \
 - $(ROOTPY) $(ROOTPYC) $(ROOTPYO) $(PYROOTMAP) \
 + $(ROOTPY) $(PYROOTMAP) \
   $(PYROOTPYD) $(PYTHON64DEP) $(PYTHON64)
+   @rm -rf $(LPATH)/ROOTaaS bin/ROOTaaS
  
- distclean:: distclean-$(MODNAME)

diff --git a/sci-physics/root/root-.ebuild 
b/sci-physics/root/root-.ebuild
index 1b3ed72..8bf3758 100644
--- a/sci-physics/root/root-.ebuild
+++ b/sci-physics/root/root-.ebuild
@@ -196,7 +196,7 @@ src_prepare() {
"${FILESDIR}"/${PN}-5.32.00-chklib64.patch \
"${FILESDIR}"/${PN}-5.34.13-unuran.patch \
"${FILESDIR}"/${PN}-6.00.01-dotfont.patch \
-   "${FILESDIR}"/${PN}-6.00.01-nobyte-compile.patch \
+   "${FILESDIR}"/${PN}-6.06.00-nobyte-compile.patch \
"${FILESDIR}"/${PN}-6.00.01-llvm.patch
 
# make sure we use system libs and headers
@@ -210,7 +210,7 @@ src_prepare() {
LANG=C LC_ALL=C find core/zip -type f -name "[a-z]*" -print0 | \
xargs -0 rm || die
rm -r core/lzma/src/*.tar.gz || die
-   rm graf3d/gl/{inc,src}/gl2ps.* || die
+   rm graf3d/gl/src/gl2ps.* || die
sed -i -e 's/^GLLIBS *:= .* $(OPENGLLIB)/& -lgl2ps/' \
  

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

2015-11-17 Thread Justin Lecher
commit: 7166ba7cbafc5bb11fbe19a522abd710cedb4323
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 15:46:33 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 15:46:33 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=7166ba7c

Moved to tree

Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/line_profiler/ChangeLog | 10 
 dev-python/line_profiler/line_profiler-1.0.ebuild  | 29 --
 dev-python/line_profiler/line_profiler-.ebuild | 28 -
 dev-python/line_profiler/metadata.xml  | 19 --
 4 files changed, 86 deletions(-)

diff --git a/dev-python/line_profiler/ChangeLog 
b/dev-python/line_profiler/ChangeLog
deleted file mode 100644
index 61d0896..000
--- a/dev-python/line_profiler/ChangeLog
+++ /dev/null
@@ -1,10 +0,0 @@
-# ChangeLog for dev-python/line_profiler
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Id$
-
-*line_profiler-1.0 (26 Aug 2015)
-*line_profiler- (26 Aug 2015)
-
-  26 Aug 2015; Marius Brehler 
-  +line_profiler-1.0.ebuild, +line_profiler-.ebuild, +metadata.xml:
-  dev-python/line_profiler: New ebuild wirtten by me

diff --git a/dev-python/line_profiler/line_profiler-1.0.ebuild 
b/dev-python/line_profiler/line_profiler-1.0.ebuild
deleted file mode 100644
index bec34f5..000
--- a/dev-python/line_profiler/line_profiler-1.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Line-by-line profiling for Python"
-HOMEPAGE="https://github.com/rkern/line_profiler;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-DEPEND="
-   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
-   "
-
-python_test() {
-   distutils_install_for_testing
-   cd "${TEST_DIR}"/lib || die
-   cp "${S}"/setup.py "${TEST_DIR}"/lib/ || die
-   cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
-   py.test || die
-}

diff --git a/dev-python/line_profiler/line_profiler-.ebuild 
b/dev-python/line_profiler/line_profiler-.ebuild
deleted file mode 100644
index 52f8cef..000
--- a/dev-python/line_profiler/line_profiler-.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Line-by-line profiling for Python"
-HOMEPAGE="https://github.com/rkern/line_profiler;
-EGIT_REPO_URI="https://github.com/rkern/${PN}.git 
git://github.com/rkern/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-DEPEND="
-   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
-   "
-
-python_test() {
-   distutils_install_for_testing
-   cd "${TEST_DIR}"/lib || die
-   cp "${S}"/setup.py "${TEST_DIR}"/lib/ || die
-   cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
-   py.test || die
-}

diff --git a/dev-python/line_profiler/metadata.xml 
b/dev-python/line_profiler/metadata.xml
deleted file mode 100644
index 270efb2..000
--- a/dev-python/line_profiler/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  sci
-  
-mar...@linux.sungazer.de
-Marius Brehler
-  
-  
-line_profiler is a module for doing line-by-line profiling of
-functions. kernprof is a convenient script for running either
-line_profiler or the Python standard library's cProfile or profile
-modules, depending on what is available.
-  
-  
-line_profiler
-rkern/line_profiler
-  
-



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

2015-11-17 Thread Justin Lecher
commit: eb87fb0e0176a4960b0b138ab47bb334583391d9
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Nov 16 08:09:02 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Nov 16 08:09:02 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=eb87fb0e

Merge pull request #536 from olifre/root6

sci-physics/root: Update to upstream changes.

 sci-physics/root/ChangeLog |  6 +
 ...ile.patch => root-6.06.00-nobyte-compile.patch} | 28 +-
 sci-physics/root/root-.ebuild  |  5 ++--
 3 files changed, 26 insertions(+), 13 deletions(-)



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

2015-11-17 Thread Justin Lecher
commit: 062ff55d99a5f7c8e232aa453b49984917998ecc
Author: Horea Christian  mail  ru>
AuthorDate: Sat Nov 14 03:13:00 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat Nov 14 03:13:00 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=062ff55d

sci-biology/fsl: added info about updating environment

Package-Manager: portage-2.2.23

 sci-biology/fsl/ChangeLog| 3 +++
 sci-biology/fsl/fsl-5.0.8.ebuild | 8 
 2 files changed, 11 insertions(+)

diff --git a/sci-biology/fsl/ChangeLog b/sci-biology/fsl/ChangeLog
index ff2e8c5..f802c57 100644
--- a/sci-biology/fsl/ChangeLog
+++ b/sci-biology/fsl/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  14 Nov 2015;   fsl-5.0.8.ebuild:
+  sci-biology/fsl: added info about updating environment
+
   04 Nov 2015; Horea Christian  fsl-5.0.8.ebuild:
   sci-biology/fsl: new sources location (upstream removes old sources)
 

diff --git a/sci-biology/fsl/fsl-5.0.8.ebuild b/sci-biology/fsl/fsl-5.0.8.ebuild
index 6762267..406e35c 100644
--- a/sci-biology/fsl/fsl-5.0.8.ebuild
+++ b/sci-biology/fsl/fsl-5.0.8.ebuild
@@ -130,3 +130,11 @@ src_install() {
doenvd "${FILESDIR}"/99fsl
rm "${ED}"/usr/bin/cluster || die
 }
+
+pkg_postinst() {
+   echo
+   einfo "Please run the following commands if you"
+   einfo "intend to use fsl from an existing shell:"
+   einfo "env-update && source /etc/porfile"
+   echo
+}



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

2015-11-17 Thread Justin Lecher
commit: 79a93152bae71ad355dd2787c75f0fa7d64fccd6
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Nov 16 07:58:37 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Nov 16 07:58:37 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=79a93152

Merge pull request #533 from TheChymera/bump

sci-libs/nipy: version bump

 sci-libs/nipy/ChangeLog| 16 ++--
 sci-libs/nipy/Manifest |  1 +
 sci-libs/nipy/nipy-0.3.0.ebuild| 12 ++--
 sci-libs/nipy/{nipy-0.3.0.ebuild => nipy-0.4.0.ebuild} | 12 ++--
 4 files changed, 27 insertions(+), 14 deletions(-)



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

2015-11-17 Thread Justin Lecher
commit: 425559a02e6d6efc06f3fdc5be33ede0b8259e95
Author: Horea Christian  mail  ru>
AuthorDate: Thu Nov 12 14:14:03 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 14:14:03 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=425559a0

sci-libs/nipy: updated dependency list

Package-Manager: portage-2.2.23

 sci-libs/nipy/ChangeLog |  4 
 sci-libs/nipy/nipy-0.3.0.ebuild | 16 
 sci-libs/nipy/nipy-0.4.0.ebuild | 14 +++---
 3 files changed, 19 insertions(+), 15 deletions(-)

diff --git a/sci-libs/nipy/ChangeLog b/sci-libs/nipy/ChangeLog
index 29eb490..f63ab67 100644
--- a/sci-libs/nipy/ChangeLog
+++ b/sci-libs/nipy/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  12 Nov 2015; Horea Christian  nipy-0.3.0.ebuild,
+  nipy-0.4.0.ebuild:
+  sci-libs/nipy: updated dependency list
+
 *nipy-0.4.0 (11 Nov 2015)
 
   11 Nov 2015; Horea Christian  +nipy-0.4.0.ebuild:

diff --git a/sci-libs/nipy/nipy-0.3.0.ebuild b/sci-libs/nipy/nipy-0.3.0.ebuild
index d748c21..50878d9 100644
--- a/sci-libs/nipy/nipy-0.3.0.ebuild
+++ b/sci-libs/nipy/nipy-0.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,13 +17,13 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
-   sci-libs/scipy[${PYTHON_USEDEP}]
-   dev-python/sympy[${PYTHON_USEDEP}]
-   >=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]"
+RDEPEND="
+sci-libs/scipy[${PYTHON_USEDEP}]
+dev-python/sympy[${PYTHON_USEDEP}]
+>=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]
+dev-python/numpy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+dev-python/setuptools[${PYTHON_USEDEP}]"
 
 python_prepare_all() {
distutils-r1_python_prepare_all

diff --git a/sci-libs/nipy/nipy-0.4.0.ebuild b/sci-libs/nipy/nipy-0.4.0.ebuild
index e9d3f13..50878d9 100644
--- a/sci-libs/nipy/nipy-0.4.0.ebuild
+++ b/sci-libs/nipy/nipy-0.4.0.ebuild
@@ -17,13 +17,13 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
-   sci-libs/scipy[${PYTHON_USEDEP}]
-   dev-python/sympy[${PYTHON_USEDEP}]
-   >=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]"
+RDEPEND="
+sci-libs/scipy[${PYTHON_USEDEP}]
+dev-python/sympy[${PYTHON_USEDEP}]
+>=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]
+dev-python/numpy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+dev-python/setuptools[${PYTHON_USEDEP}]"
 
 python_prepare_all() {
distutils-r1_python_prepare_all



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

2015-11-17 Thread Justin Lecher
commit: 3c3e5c7534faf016b59ac0f6f58c730539ec7902
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Nov 16 08:08:18 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Nov 16 08:08:18 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=3c3e5c75

Merge pull request #535 from TheChymera/fsl

sci-biology/fsl: added info about updating environment

 sci-biology/fsl/ChangeLog| 3 +++
 sci-biology/fsl/fsl-5.0.8.ebuild | 8 
 2 files changed, 11 insertions(+)



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

2015-11-17 Thread Justin Lecher
commit: 6f7fcecd1802c4508f236fd595786f6f5c2b3a27
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 15:46:37 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 15:46:37 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6f7fcecd

Merge remote-tracking branch 'github/master'

* github/master:
  sci-physics/root: Update to upstream changes. New nobyte-compile patch, paths 
for gl2ps changed, DOCS files changed.
  sci-biology/fsl: added info about updating environment
  sci-libs/nipy: removed leading spaces
  sci-libs/nipy: updated dependency list
  sci-libs/nipy: version bump

 sci-biology/fsl/ChangeLog  |  3 +++
 sci-biology/fsl/fsl-5.0.8.ebuild   |  8 +++
 sci-libs/nipy/ChangeLog| 16 +++--
 sci-libs/nipy/Manifest |  1 +
 sci-libs/nipy/nipy-0.3.0.ebuild| 12 +-
 .../nipy/{nipy-0.3.0.ebuild => nipy-0.4.0.ebuild}  | 12 +-
 sci-physics/root/ChangeLog |  6 +
 ...ile.patch => root-6.06.00-nobyte-compile.patch} | 28 +-
 sci-physics/root/root-.ebuild  |  5 ++--
 9 files changed, 64 insertions(+), 27 deletions(-)



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

2015-11-17 Thread Justin Lecher
commit: 11abed023da7f2d1fb261332dacf829a4c1a666b
Author: Horea Christian  mail  ru>
AuthorDate: Wed Nov 11 22:38:40 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Nov 11 22:38:40 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=11abed02

sci-libs/nipy: version bump

Package-Manager: portage-2.2.23

 sci-libs/nipy/ChangeLog |  8 ++--
 sci-libs/nipy/nipy-0.4.0.ebuild | 36 
 2 files changed, 42 insertions(+), 2 deletions(-)

diff --git a/sci-libs/nipy/ChangeLog b/sci-libs/nipy/ChangeLog
index cac9346..29eb490 100644
--- a/sci-libs/nipy/ChangeLog
+++ b/sci-libs/nipy/ChangeLog
@@ -1,8 +1,12 @@
 # ChangeLog for sci-libs/nipy
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*nipy-0.4.0 (11 Nov 2015)
+
+  11 Nov 2015; Horea Christian  +nipy-0.4.0.ebuild:
+  sci-libs/nipy: version bump
+
   06 Jan 2014; Justin Lecher  nipy-0.3.0.ebuild,
   nipy-.ebuild, metadata.xml:
   Switch from git-2 to git-r3
-

diff --git a/sci-libs/nipy/nipy-0.4.0.ebuild b/sci-libs/nipy/nipy-0.4.0.ebuild
new file mode 100644
index 000..e9d3f13
--- /dev/null
+++ b/sci-libs/nipy/nipy-0.4.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 eutils multilib flag-o-matic
+
+DESCRIPTION="Neuroimaging tools for Python"
+HOMEPAGE="http://nipy.org/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}
+   sci-libs/scipy[${PYTHON_USEDEP}]
+   dev-python/sympy[${PYTHON_USEDEP}]
+   >=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]"
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+   # bug #397605
+   [[ ${CHOST} == *-darwin* ]] \
+   && append-ldflags -bundle "-undefined dynamic_lookup" \
+   || append-ldflags -shared
+
+   # nipy uses the horrible numpy.distutils automagic
+}



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

2015-11-17 Thread Bernard Cafarelli
commit: 54bb8824e6151caa4a81bf30bfafc66f4f3c28d8
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov 17 15:07:58 2015 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov 17 15:07:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54bb8824

media-gfx/argyllcms: clean some versions

Package-Manager: portage-2.2.24

 media-gfx/argyllcms/Manifest   |  2 -
 media-gfx/argyllcms/argyllcms-1.6.3.ebuild | 91 -
 media-gfx/argyllcms/argyllcms-1.8.0.ebuild | 92 --
 3 files changed, 185 deletions(-)

diff --git a/media-gfx/argyllcms/Manifest b/media-gfx/argyllcms/Manifest
index 1e1a721..763758e 100644
--- a/media-gfx/argyllcms/Manifest
+++ b/media-gfx/argyllcms/Manifest
@@ -1,5 +1,3 @@
-DIST Argyll_V1.6.3_src.zip 10338488 SHA256 
188beaa03dd2459403415023f8f8f9aab362bf3062a9822b3622dde6902e4b84 SHA512 
7c350c73492d7e2e27354814cfcb172bf1e4bb6ee8f3f71f2003a7d44ed4be9890a6c80d6a69228495645be11a327c0f7c2ab68d6f6621dd938744a1cd7ebe95
 WHIRLPOOL 
a854ebcca1950f3e654ae85fff3189bae17c511c26e2f3dd8104d9b55ddb83022659276fae201899f51a2a27b00c1cf98f157261e50d0fd48f1a8044923e11c6
 DIST Argyll_V1.7.0_src.zip 13935712 SHA256 
dac51cf5d8f6d04bb02f2f5b119fa0e8b773a010e6377116768b082ef018f663 SHA512 
644683c8a73d36583d607b5d51c543dca8f1e3fb3db8138a164f9ed7f994df7739ee7d810b7136a7cf0eba7b54fe53b35ffbdd4e6915ec20b271325119ce369c
 WHIRLPOOL 
e08c6e311856716ee6b49e37c583d8d4275629fb746f018e0d7c768d4c907644dc60545ff2c709217988c668b198dfc95396af3fdf0ccd40d320514854b1c087
-DIST Argyll_V1.8.0_src.zip 13931190 SHA256 
02440060b224bf8e42bd7eabe0c857e1311546839391d94bb250dda60e4db13b SHA512 
959a581aaf3514a130cae3aa133c385591b53d11e5ee6bb11349ee8614f392baa5f5799ede4d10dda8a3c182fc69a186a5a1738070649acdfb9987aa52f83976
 WHIRLPOOL 
6b43e3ecff4cde12fa1d6fe51f0a9612019ac1f452eed66e32ce8a834f127ee84119fdbb436cf1266e4e586f534acbf74df1102215d311d69a7f4f723d77a286
 DIST Argyll_V1.8.2_src.zip 13946428 SHA256 
59bdfaeace35d2007c90fc53234ba33bf8a64cffc08f7b27a297fc5f85455377 SHA512 
fb5a9fcfe558ce0593cc63d43751693dcaca8ed9dc202372bea5d8d54e19c004de0cb80382ffd2b570d9eeeb58584c7466b725d35377c72cbbde414625613d9c
 WHIRLPOOL 
1a7f32f5ac203ae69773c8f40540aed4c2d36b1878ac7e7cc703df8809faa6ca086a249c1f20f5c2b8bb3db652add330b8a555dd34570c79b1da74cd5bb372ed
 DIST Argyll_V1.8.3_src.zip 13933565 SHA256 
60494176785f6c2e4e4daefb9452d83859880449040b2a843ed81de3bd0c558e SHA512 
19bdba20313ec62b5b3c461d29a4f1eefbeb799ded06a1e0b568013b606547bf97b23c1b69f27d415e0052a7a2b747273131624e725ee21781b261568822b3a7
 WHIRLPOOL 
d0f65bfdee48dcb29c887f371fe787aebac8c9577a1db0f386bb4a17e379ab99d2c0f94bc7474e753b3fd49548028928aeb48d9c0021b8ee5a76ab55575d5ce8

diff --git a/media-gfx/argyllcms/argyllcms-1.6.3.ebuild 
b/media-gfx/argyllcms/argyllcms-1.6.3.ebuild
deleted file mode 100644
index 0ea5ca7..000
--- a/media-gfx/argyllcms/argyllcms-1.6.3.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit base flag-o-matic multiprocessing toolchain-funcs udev
-
-MY_P="Argyll_V${PV}"
-
-DESCRIPTION="Open source, ICC compatible color management system"
-HOMEPAGE="http://www.argyllcms.com/;
-SRC_URI="http://www.argyllcms.com/${MY_P}_src.zip;
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 hppa ~x86"
-IUSE="doc"
-
-RDEPEND="
-   media-libs/tiff
-   sys-libs/zlib
-   virtual/jpeg
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libXdmcp
-   x11-libs/libXext
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXxf86vm
-   x11-libs/libXScrnSaver"
-DEPEND="${RDEPEND}
-   app-arch/unzip
-   dev-util/ftjam"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
-   )
-
-src_compile() {
-   # Make it respect LDFLAGS
-   echo "LINKFLAGS += ${LDFLAGS} ;" >> Jamtop
-
-   # Evil hack to get --as-needed working. The build system unfortunately 
lists all
-   # the shared libraries by default on the command line _before_ the 
object to be built...
-   echo "STDLIBS += -ldl -lrt -lX11 -lXext -lXxf86vm -lXinerama -lXrandr 
-lXau -lXdmcp -lXss -ltiff -ljpeg ;" >> Jamtop
-
-   append-cflags -DUNIX -D_THREAD_SAFE
-
-   sed \
-   -e 's:CCFLAGS:CFLAGS:g' \
-   -e "s:ar rusc:$(tc-getAR) rusc:g" \
-   -i Jambase || die
-
-   tc-export CC RANLIB
-
-   jam -dx -fJambase "-j$(makeopts_jobs)" || die
-}
-
-src_install() {
-   jam -dx -fJambase install || die
-
-   rm bin/License.txt || die
-
-   pushd bin > /dev/null
-   local binname
-   for binname in * ; do
-   newbin ${binname} argyll-${binname}
-   done
-   popd > /dev/null
-
-   use doc && dohtml doc/*
-
-   dodoc log.txt Readme.txt ttbd.txt notes.txt
-
-   insinto /usr/share/${PN}
-   doins -r ref
-
-   udev_dorules usb/55-Argyll.rules

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

2015-11-17 Thread Bernard Cafarelli
commit: ea31448c25e479eb26f28fc839c48bb965d04fee
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov 17 15:05:18 2015 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov 17 15:05:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea31448c

media-gfx/argyllcms: version bump, bug #565780

Thanks Alexander Bezrukov  mail.ru> for the bug report
Also dropped base eclass inherit in latest ebuild

Package-Manager: portage-2.2.24

 media-gfx/argyllcms/Manifest   |  1 +
 media-gfx/argyllcms/argyllcms-1.8.3.ebuild | 92 ++
 2 files changed, 93 insertions(+)

diff --git a/media-gfx/argyllcms/Manifest b/media-gfx/argyllcms/Manifest
index cb4e264..1e1a721 100644
--- a/media-gfx/argyllcms/Manifest
+++ b/media-gfx/argyllcms/Manifest
@@ -2,3 +2,4 @@ DIST Argyll_V1.6.3_src.zip 10338488 SHA256 
188beaa03dd2459403415023f8f8f9aab362b
 DIST Argyll_V1.7.0_src.zip 13935712 SHA256 
dac51cf5d8f6d04bb02f2f5b119fa0e8b773a010e6377116768b082ef018f663 SHA512 
644683c8a73d36583d607b5d51c543dca8f1e3fb3db8138a164f9ed7f994df7739ee7d810b7136a7cf0eba7b54fe53b35ffbdd4e6915ec20b271325119ce369c
 WHIRLPOOL 
e08c6e311856716ee6b49e37c583d8d4275629fb746f018e0d7c768d4c907644dc60545ff2c709217988c668b198dfc95396af3fdf0ccd40d320514854b1c087
 DIST Argyll_V1.8.0_src.zip 13931190 SHA256 
02440060b224bf8e42bd7eabe0c857e1311546839391d94bb250dda60e4db13b SHA512 
959a581aaf3514a130cae3aa133c385591b53d11e5ee6bb11349ee8614f392baa5f5799ede4d10dda8a3c182fc69a186a5a1738070649acdfb9987aa52f83976
 WHIRLPOOL 
6b43e3ecff4cde12fa1d6fe51f0a9612019ac1f452eed66e32ce8a834f127ee84119fdbb436cf1266e4e586f534acbf74df1102215d311d69a7f4f723d77a286
 DIST Argyll_V1.8.2_src.zip 13946428 SHA256 
59bdfaeace35d2007c90fc53234ba33bf8a64cffc08f7b27a297fc5f85455377 SHA512 
fb5a9fcfe558ce0593cc63d43751693dcaca8ed9dc202372bea5d8d54e19c004de0cb80382ffd2b570d9eeeb58584c7466b725d35377c72cbbde414625613d9c
 WHIRLPOOL 
1a7f32f5ac203ae69773c8f40540aed4c2d36b1878ac7e7cc703df8809faa6ca086a249c1f20f5c2b8bb3db652add330b8a555dd34570c79b1da74cd5bb372ed
+DIST Argyll_V1.8.3_src.zip 13933565 SHA256 
60494176785f6c2e4e4daefb9452d83859880449040b2a843ed81de3bd0c558e SHA512 
19bdba20313ec62b5b3c461d29a4f1eefbeb799ded06a1e0b568013b606547bf97b23c1b69f27d415e0052a7a2b747273131624e725ee21781b261568822b3a7
 WHIRLPOOL 
d0f65bfdee48dcb29c887f371fe787aebac8c9577a1db0f386bb4a17e379ab99d2c0f94bc7474e753b3fd49548028928aeb48d9c0021b8ee5a76ab55575d5ce8

diff --git a/media-gfx/argyllcms/argyllcms-1.8.3.ebuild 
b/media-gfx/argyllcms/argyllcms-1.8.3.ebuild
new file mode 100644
index 000..13b3448
--- /dev/null
+++ b/media-gfx/argyllcms/argyllcms-1.8.3.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic multiprocessing toolchain-funcs udev
+
+MY_P="Argyll_V${PV}"
+
+DESCRIPTION="Open source, ICC compatible color management system"
+HOMEPAGE="http://www.argyllcms.com/;
+SRC_URI="http://www.argyllcms.com/${MY_P}_src.zip;
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE="doc"
+
+RDEPEND="
+   media-libs/tiff:0
+   sys-libs/zlib
+   virtual/jpeg:0
+   x11-libs/libX11
+   x11-libs/libXau
+   x11-libs/libXdmcp
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXxf86vm
+   x11-libs/libXScrnSaver"
+DEPEND="${RDEPEND}
+   app-arch/unzip
+   dev-util/ftjam"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.8.0-gcc5.patch
+   )
+
+src_compile() {
+   # Make it respect LDFLAGS
+   echo "LINKFLAGS += ${LDFLAGS} ;" >> Jamtop
+
+   # Evil hack to get --as-needed working. The build system unfortunately 
lists all
+   # the shared libraries by default on the command line _before_ the 
object to be built...
+   echo "STDLIBS += -ldl -lrt -lX11 -lXext -lXxf86vm -lXinerama -lXrandr 
-lXau -lXdmcp -lXss -ltiff -ljpeg ;" >> Jamtop
+
+   append-cflags -DUNIX -D_THREAD_SAFE
+
+   sed \
+   -e 's:CCFLAGS:CFLAGS:g' \
+   -e "s:ar rusc:$(tc-getAR) rusc:g" \
+   -i Jambase || die
+
+   tc-export CC RANLIB
+
+   jam -dx -fJambase "-j$(makeopts_jobs)" || die
+}
+
+src_install() {
+   jam -dx -fJambase install || die
+
+   rm bin/License.txt || die
+
+   pushd bin > /dev/null
+   local binname
+   for binname in * ; do
+   newbin ${binname} argyll-${binname}
+   done
+   popd > /dev/null
+
+   use doc && dohtml doc/*
+
+   dodoc log.txt Readme.txt ttbd.txt notes.txt
+
+   insinto /usr/share/${PN}
+   doins -r ref
+
+   udev_dorules usb/55-Argyll.rules
+}
+
+pkg_postinst() {
+   elog "If you have a Spyder2 you need to extract the firmware"
+   elog "from the CVSpyder.dll of the windows driver package"
+   elog "and store it as /usr/share/color/spyd2PLD.bin"
+   echo

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

2015-11-17 Thread Justin Lecher
commit: aaceb013922ce621d6be13bcf706c2863d7716f6
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 13:56:22 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 13:57:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaceb013

dev-python/psutil: Add pypy3 support

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

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

diff --git a/dev-python/psutil/psutil-3.2.2.ebuild 
b/dev-python/psutil/psutil-3.2.2.ebuild
index 43be6f7..ee1d235 100644
--- a/dev-python/psutil/psutil-3.2.2.ebuild
+++ b/dev-python/psutil/psutil-3.2.2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
 
 inherit distutils-r1
 



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

2015-11-17 Thread Justin Lecher
commit: 22fbd97e0d4dfe7e21fa9972f4f4f53ea8d8db93
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 13:57:07 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 13:57:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22fbd97e

dev-python/memory_profiler: New package, ebuild written by me

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/memory_profiler/Manifest|  1 +
 .../memory_profiler/memory_profiler-0.39.ebuild| 35 ++
 dev-python/memory_profiler/metadata.xml| 12 
 3 files changed, 48 insertions(+)

diff --git a/dev-python/memory_profiler/Manifest 
b/dev-python/memory_profiler/Manifest
new file mode 100644
index 000..51010f0
--- /dev/null
+++ b/dev-python/memory_profiler/Manifest
@@ -0,0 +1 @@
+DIST memory_profiler-0.39.tar.gz 27859 SHA256 
61021f2dade7edd6cc09d7924bfdccc453bd1949608412a3e021d44a410d3a23 SHA512 
aaf8bcb105bf7301af16a9f090b62177e608d93f1ec5ca51ca78005515943f216657dd316fcd60a56784dc65c879a605f9712723a810400ecc5685e01b3dcf72
 WHIRLPOOL 
a329950674ff9f34a8152be257e282821c9282fb16b6df9484307717ac104dbbb107381bd0ccef53a35ab1391f2dbde04fb0de13c20e66c726cc7006dcc834e3

diff --git a/dev-python/memory_profiler/memory_profiler-0.39.ebuild 
b/dev-python/memory_profiler/memory_profiler-0.39.ebuild
new file mode 100644
index 000..9595e03
--- /dev/null
+++ b/dev-python/memory_profiler/memory_profiler-0.39.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A module for monitoring memory usage of a python program"
+HOMEPAGE="http://pypi.python.org/pypi/memory_profiler 
https://github.com/fabianp/memory_profiler;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   dev-python/psutil[${PYTHON_USEDEP}]
+"
+DEPEND="${REDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+   ${EPYTHON} -m memory_profiler test/test_func.py || die
+   ${EPYTHON} -m memory_profiler test/test_loop.py || die
+   ${EPYTHON} -m memory_profiler test/test_as.py || die
+   ${EPYTHON} -m memory_profiler test/test_global.py || die
+   ${EPYTHON} -m memory_profiler test/test_precision_command_line.py || die
+   ${EPYTHON} test/test_import.py || die
+   ${EPYTHON} test/test_memory_usage.py || die
+   ${EPYTHON} test/test_precision_import.py || die
+}

diff --git a/dev-python/memory_profiler/metadata.xml 
b/dev-python/memory_profiler/metadata.xml
new file mode 100644
index 000..86ec95c
--- /dev/null
+++ b/dev-python/memory_profiler/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  python
+  
+memory_profiler
+
+  f...@bianp.net
+  Fabian Pedregosa
+
+  
+



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

2015-11-17 Thread Patrice Clement
commit: 1a5e7b8fb58f1f4e3bdfc5351c28985407100590
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 17 14:04:03 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 14:05:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a5e7b8f

sys-apps/shadow: Gather patches in PATCHES array.

Package-Manager: portage-2.2.20.1
Signed-off-by: Patrice Clement  gentoo.org>

 sys-apps/shadow/shadow-4.2.1-r2.ebuild | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/sys-apps/shadow/shadow-4.2.1-r2.ebuild 
b/sys-apps/shadow/shadow-4.2.1-r2.ebuild
index 32acfbc..c376f1e 100644
--- a/sys-apps/shadow/shadow-4.2.1-r2.ebuild
+++ b/sys-apps/shadow/shadow-4.2.1-r2.ebuild
@@ -35,10 +35,14 @@ DEPEND="${RDEPEND}
 RDEPEND="${RDEPEND}
pam? ( >=sys-auth/pambase-20150213 )"
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.1.3-dots-in-usernames.patch 
+   "${FILESDIR}"/${P}-cross-size-checks.patch
+   "${FILESDIR}"/${P}-verbose-error-when-uid-doesnt-match.patch
+)
+
 src_prepare() {
-   epatch "${FILESDIR}"/${PN}-4.1.3-dots-in-usernames.patch #22920
-   epatch "${FILESDIR}"/${P}-cross-size-checks.patch
-   epatch "${FILESDIR}"/${P}-verbose-error-when-uid-doesnt-match.patch
+   epatch "${PATCHES[@]}"
epatch_user
# https://github.com/shadow-maint/shadow/pull/5
mv configure.{in,ac} || die



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/ndoutils/

2015-11-17 Thread Patrice Clement
commit: ff72e2662b249f0ad3c6600a2db4e3ce334f8eb4
Author: Bertrand Jacquin  jacquin  bzh>
AuthorDate: Mon Oct 26 17:03:27 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 31 12:05:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff72e266

net-analyzer/ndoutils: Notice the user correct location for broker_module

Package-Manager: portage-2.2.20.1

 net-analyzer/ndoutils/ndoutils-2.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/ndoutils/ndoutils-2.0.0.ebuild 
b/net-analyzer/ndoutils/ndoutils-2.0.0.ebuild
index 460c9b7..703f3e9 100644
--- a/net-analyzer/ndoutils/ndoutils-2.0.0.ebuild
+++ b/net-analyzer/ndoutils/ndoutils-2.0.0.ebuild
@@ -73,5 +73,5 @@ src_install() {
 pkg_postinst() {
elog "To include NDO in your Nagios setup you'll need to activate the 
NDO broker module"
elog "in /etc/nagios/nagios.cfg:"
-   elog "\tbroker_module=/usr/bin/ndomod-3x.o 
config_file=/etc/nagios/ndomod.cfg"
+   elog "\tbroker_module=/usr/bin/ndomod.o 
config_file=/etc/nagios/ndomod.cfg"
 }



[gentoo-commits] repo/gentoo:master commit in: sys-apps/shadow/, sys-apps/shadow/files/

2015-11-17 Thread Patrice Clement
commit: 06aea5788b901abfbc2f329a686f2960bff7d2cc
Author: Jakub Jirutka  jirutka  cz>
AuthorDate: Thu Oct 15 13:17:40 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Oct 15 13:24:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06aea578

sys-apps/shadow: Patch new[ug]idmap to print verbose err on ownership mismatch

Everything is explained in the patch file.

 ...4.2.1-verbose-error-when-uid-doesnt-match.patch |  76 
 sys-apps/shadow/shadow-4.2.1-r2.ebuild | 212 +
 2 files changed, 288 insertions(+)

diff --git 
a/sys-apps/shadow/files/shadow-4.2.1-verbose-error-when-uid-doesnt-match.patch 
b/sys-apps/shadow/files/shadow-4.2.1-verbose-error-when-uid-doesnt-match.patch
new file mode 100644
index 000..340424e
--- /dev/null
+++ 
b/sys-apps/shadow/files/shadow-4.2.1-verbose-error-when-uid-doesnt-match.patch
@@ -0,0 +1,76 @@
+From: Hank Leininger 
+Date: Mon, 6 Apr 2015 08:22:48 -0500
+Subject: [PATCH] Expand the error message when newuidmap / newgidmap do not
+ like the user/group ownership of their target process.
+
+Currently the error is just:
+
+newuidmap: Target [pid] is owned by a different user
+
+With this patch it will be like:
+
+newuidmap: Target [pid] is owned by a different user: uid:0 pw_uid:0 st_uid:0, 
gid:0 pw_gid:0 st_gid:99
+
+Why is this useful?  Well, in my case...
+
+The grsecurity kernel-hardening patch includes an option to make parts
+of /proc unreadable, such as /proc/pid/ dirs for processes not owned by
+the current uid.  This comes with an option to make /proc/pid/
+directories readable by a specific gid; sysadmins and the like are then
+put into that group so they can see a full 'ps'.
+
+This means that the check in new[ug]idmap fails, as in the above quoted
+error - /proc/[targetpid] is owned by root, but the group is 99 so that
+users in group 99 can see the process.
+
+Some Googling finds dozens of people hitting this problem, but not
+*knowing* that they have hit this problem, because the errors and
+circumstances are non-obvious.
+
+Some graceful way of handling this and not failing, will be next ;)  But
+in the meantime it'd be nice to have new[ug]idmap emit a more useful
+error, so that it's easier to troubleshoot.
+
+Thanks!
+
+Signed-off-by: Hank Leininger 
+Signed-off-by: Serge Hallyn 
+---
+ src/newgidmap.c | 6 --
+ src/newuidmap.c | 6 --
+ 2 files changed, 8 insertions(+), 4 deletions(-)
+
+diff --git a/src/newgidmap.c b/src/newgidmap.c
+index a532b45..451c6a6 100644
+--- a/src/newgidmap.c
 b/src/newgidmap.c
+@@ -161,8 +161,10 @@ int main(int argc, char **argv)
+   (getgid() != pw->pw_gid) ||
+   (pw->pw_uid != st.st_uid) ||
+   (pw->pw_gid != st.st_gid)) {
+-  fprintf(stderr, _( "%s: Target %u is owned by a different 
user\n" ),
+-  Prog, target);
++  fprintf(stderr, _( "%s: Target %u is owned by a different user: 
uid:%lu pw_uid:%lu st_uid:%lu, gid:%lu pw_gid:%lu st_gid:%lu\n" ),
++  Prog, target,
++  (unsigned long int)getuid(), (unsigned long 
int)pw->pw_uid, (unsigned long int)st.st_uid,
++  (unsigned long int)getgid(), (unsigned long 
int)pw->pw_gid, (unsigned long int)st.st_gid);
+   return EXIT_FAILURE;
+   }
+ 
+diff --git a/src/newuidmap.c b/src/newuidmap.c
+index 5150078..9c8bc1b 100644
+--- a/src/newuidmap.c
 b/src/newuidmap.c
+@@ -161,8 +161,10 @@ int main(int argc, char **argv)
+   (getgid() != pw->pw_gid) ||
+   (pw->pw_uid != st.st_uid) ||
+   (pw->pw_gid != st.st_gid)) {
+-  fprintf(stderr, _( "%s: Target %u is owned by a different 
user\n" ),
+-  Prog, target);
++  fprintf(stderr, _( "%s: Target process %u is owned by a 
different user: uid:%lu pw_uid:%lu st_uid:%lu, gid:%lu pw_gid:%lu st_gid:%lu\n" 
),
++  Prog, target,
++  (unsigned long int)getuid(), (unsigned long 
int)pw->pw_uid, (unsigned long int)st.st_uid,
++  (unsigned long int)getgid(), (unsigned long 
int)pw->pw_gid, (unsigned long int)st.st_gid);
+   return EXIT_FAILURE;
+   }
+ 

diff --git a/sys-apps/shadow/shadow-4.2.1-r2.ebuild 
b/sys-apps/shadow/shadow-4.2.1-r2.ebuild
new file mode 100644
index 000..32acfbc
--- /dev/null
+++ b/sys-apps/shadow/shadow-4.2.1-r2.ebuild
@@ -0,0 +1,212 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+
+inherit eutils libtool toolchain-funcs pam multilib autotools
+
+DESCRIPTION="Utilities to deal with user accounts"
+HOMEPAGE="http://shadow.pld.org.pl/ http://pkg-shadow.alioth.debian.org/;
+SRC_URI="http://pkg-shadow.alioth.debian.org/releases/${P}.tar.xz;
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~alpha 

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

2015-11-17 Thread Patrice Clement
commit: f9a33faea877329a7da72ac5179fd587d79dbd57
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 17 14:01:33 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 14:05:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9a33fae

Merge remote-tracking branch 'github/pr/218'.

 ...4.2.1-verbose-error-when-uid-doesnt-match.patch |  76 
 sys-apps/shadow/shadow-4.2.1-r2.ebuild | 212 +
 2 files changed, 288 insertions(+)



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

2015-11-17 Thread Patrice Clement
commit: f6d2c237ad69d0327328b7775d84a780b4f96027
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 17 13:49:42 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 17 13:51:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6d2c237

Merge remote-tracking branch 'github/pr/294'. Fixes bug 564194.

 net-analyzer/ndoutils/ndoutils-2.0.0.ebuild | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/ndoutils/

2015-11-17 Thread Patrice Clement
commit: 0336cb25f04561af9be77f97aa1beaceb7347f6a
Author: Bertrand Jacquin  jacquin  bzh>
AuthorDate: Mon Oct 26 17:01:37 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 31 12:05:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0336cb25

net-analyzer/ndoutils: Install binaries appropriate to nagios version

By default, only Nagios v4.x ndo2db and ndomod.o are install which
break using it on Nagios v3.x

Gentoo Bug #564194

Package-Manager: portage-2.2.20.1

 net-analyzer/ndoutils/ndoutils-2.0.0.ebuild | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/net-analyzer/ndoutils/ndoutils-2.0.0.ebuild 
b/net-analyzer/ndoutils/ndoutils-2.0.0.ebuild
index a7285fe..460c9b7 100644
--- a/net-analyzer/ndoutils/ndoutils-2.0.0.ebuild
+++ b/net-analyzer/ndoutils/ndoutils-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -56,6 +56,15 @@ DOCS=(
 
 src_install() {
default
+
+   local itarget
+   if has_version ">=net-analyzer/nagios-core-4.0" ; then
+   itarget="install-4x"
+   else
+   itarget="install-3x"
+   fi
+
+   emake -C src DESTDIR="${D}" "${itarget}"
emake DESTDIR="${D}" install-config
 
newinitd "${FILESDIR}"/ndo2db.init-nagios3 ndo2db



[gentoo-commits] repo/gentoo:master commit in: dev-python/coloredlogs/files/, dev-python/coloredlogs/

2015-11-17 Thread Justin Lecher
commit: 44bec720e5ac6a4afb1fbe4564469746abaa1697
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 17:06:06 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 17:06:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44bec720

dev-python/coloredlogs: Drop old

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/coloredlogs/Manifest|  5 
 dev-python/coloredlogs/coloredlogs-1.0.1-r1.ebuild | 31 
 dev-python/coloredlogs/coloredlogs-2.0.ebuild  | 34 --
 dev-python/coloredlogs/coloredlogs-3.1.2.ebuild| 34 --
 dev-python/coloredlogs/coloredlogs-3.1.3.ebuild| 34 --
 dev-python/coloredlogs/coloredlogs-3.1.ebuild  | 34 --
 .../files/coloredlogs-1.0.1-ansi2html.patch| 17 ---
 7 files changed, 189 deletions(-)

diff --git a/dev-python/coloredlogs/Manifest b/dev-python/coloredlogs/Manifest
index fba6d80..3ffdace 100644
--- a/dev-python/coloredlogs/Manifest
+++ b/dev-python/coloredlogs/Manifest
@@ -1,6 +1 @@
-DIST coloredlogs-1.0.1.tar.gz 13926 SHA256 
11067ca91532ba4a316fa53b005152a08b3e015dcb1234d393cfc25af88ebc3e SHA512 
098aa22b371ffdb6400fac7d2f000aa73f8956eae71f48ceed2110eb35a4b4d11f814f8cacca643c4deccd82da058a750c700264e7c71c2351514a6f887101a5
 WHIRLPOOL 
71b447498d5e91a0cda131046f7545230bc0c13aa814f0d79cfbd60934dee7c5cc54a729dd36b0a937451f80302384fb0733fd94e43e09c2ce9258c950fd
-DIST coloredlogs-2.0.tar.gz 15486 SHA256 
532198042eac7560f5292961bfb6f844343132fda805575684f67deeb780b2c2 SHA512 
b42e18b563caef4506377fba754e976fed31b7402d418ca79d1875504986572b36fe90b602afcb952dc8b06b9f7bc7ed6861abc2239ae5b5340e006377f9a14d
 WHIRLPOOL 
6cbec16a204f91a218428c8056e2c39d94aeaedbf3356b2548fa288a386b8583bf639a40f0c40dc596096bf44ccb28acb7c2d66403d19cf72143599ba88a82b5
-DIST coloredlogs-3.1.2.tar.gz 22914 SHA256 
ad559e2f2e08eadfb63a210344acf0d00855ba0896fc5662e8d57e1a488e3209 SHA512 
872d041f732bb30a0cc3decd5dc677cf58aad300d6cd37fc0a38dcdb24bad2e6640f332ab58e469b07e2a37d6b7fdbfdf6e804431df175c48add00d86a3b5624
 WHIRLPOOL 
6d9593d8db8eac3ec558581a0772e7264e74e3c4e084c76af58402b2627b3b97689f947ee6eb871bd1fc65c3a2855d66f9f64434b8f612d55b7cefbf3670edf2
-DIST coloredlogs-3.1.3.tar.gz 22911 SHA256 
d2195daa0e310bfaaf3dae47e22feaa3ee3631885e2ffc19aa765ad02196bf03 SHA512 
81ff3476ee44dae3b08b1849189cfd03f7eb0e3c97414b463aeba1f7c6b3a3539f234dd058a0b05a503c5e5f4490236e8145fcb8bc019abb1888d8f10f542ca9
 WHIRLPOOL 
78f668fbac2ac9c61aa82a831c1ca2fd36bbb52557677f565b495dc9ce3206f048fd6e3d6493166559f9a7111f97f9466782d7a643675cea9615303d6a9dbc53
 DIST coloredlogs-3.1.4.tar.gz 23038 SHA256 
c906ef520d55b94ace4f0aad8625a89fc1d324f24ed2892cc1ac5d479183a14c SHA512 
0ee97d0b0e12351c006686418b09a951c3f4c04b6533437e41ffd54f9c427c2b9e5a35c486a37c54565d7cb0c4150b1656a87fed5a86f3ed08b3cd2595d59bd5
 WHIRLPOOL 
caeb81a34e2c832a0d75e8123bb0d9d7e9071269b44e103031ab31657225f43a578f4eb10c6f5aaccce24feba08460fceb8bce9e0bba8eb873df2daa65338fa0
-DIST coloredlogs-3.1.tar.gz 22876 SHA256 
d3ef1ae85c3a1af335f116f634832691873dd87e5872b94bee1dd0a1e43a SHA512 
01ed7841a79278b21fc0588b527803f8092b371c866785949d57f8c04649457fbe34c98ec77d3921f05f224b6d21e1a8fc8f835e4ea542886b948124d9d02bb1
 WHIRLPOOL 
c59cbbd0e773763dcc95c45986385ca518ed9f0c59030d2421af0a4f62c9e3a08586f894e591058dc5e3cfb3a2c39c7886ec0673d59c40d1d811755bd109

diff --git a/dev-python/coloredlogs/coloredlogs-1.0.1-r1.ebuild 
b/dev-python/coloredlogs/coloredlogs-1.0.1-r1.ebuild
deleted file mode 100644
index 6d2702e..000
--- a/dev-python/coloredlogs/coloredlogs-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Colored stream handler for the logging module"
-HOMEPAGE="https://pypi.python.org/pypi/coloredlogs 
https://github.com/xolox/python-coloredlogs http://coloredlogs.readthedocs.org;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND=">=dev-python/humanfriendly-1.25.1[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/verboselogs[${PYTHON_USEDEP}] )"
-
-DOCS=( README.rst )
-
-PATCHES=( "${FILESDIR}"/${P}-ansi2html.patch )
-
-python_test() {
-   esetup.py test
-}

diff --git a/dev-python/coloredlogs/coloredlogs-2.0.ebuild 
b/dev-python/coloredlogs/coloredlogs-2.0.ebuild
deleted file mode 100644
index 74cc495..000
--- a/dev-python/coloredlogs/coloredlogs-2.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4} )
-
-inherit 

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

2015-11-17 Thread Justin Lecher
commit: 8e6f391d59f59212c60bd407018daf7baea14370
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 17 17:11:08 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 17 17:11:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e6f391d

dev-python/coloredlogs: Version Bump

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

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

diff --git a/dev-python/coloredlogs/Manifest b/dev-python/coloredlogs/Manifest
index 3ffdace..78b4c40 100644
--- a/dev-python/coloredlogs/Manifest
+++ b/dev-python/coloredlogs/Manifest
@@ -1 +1,2 @@
 DIST coloredlogs-3.1.4.tar.gz 23038 SHA256 
c906ef520d55b94ace4f0aad8625a89fc1d324f24ed2892cc1ac5d479183a14c SHA512 
0ee97d0b0e12351c006686418b09a951c3f4c04b6533437e41ffd54f9c427c2b9e5a35c486a37c54565d7cb0c4150b1656a87fed5a86f3ed08b3cd2595d59bd5
 WHIRLPOOL 
caeb81a34e2c832a0d75e8123bb0d9d7e9071269b44e103031ab31657225f43a578f4eb10c6f5aaccce24feba08460fceb8bce9e0bba8eb873df2daa65338fa0
+DIST coloredlogs-5.0.tar.gz 24933 SHA256 
612354a11acd2e1d603c24fe7be21d736c53a23ad27f244cd9e3fdb4a99661d4 SHA512 
f20a18779964b0bd4d48b51b6df81a57e3918f0097108510c50d27d88386ae89bc4e6abcb6263e757148c5094aa02edb6fe8829caecae13ed4fe7596db488763
 WHIRLPOOL 
e23012b14689125ac09d3c16dfe32823e7f792030e3be77899f6aa8bbc1c757c23f9fd739907e67ae3a24304bda036e7e690f95ccf6e7793ca75379bff11f726

diff --git a/dev-python/coloredlogs/coloredlogs-5.0.ebuild 
b/dev-python/coloredlogs/coloredlogs-5.0.ebuild
new file mode 100644
index 000..ec7bcb0
--- /dev/null
+++ b/dev-python/coloredlogs/coloredlogs-5.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Colored stream handler for the logging module"
+HOMEPAGE="https://pypi.python.org/pypi/coloredlogs 
https://github.com/xolox/python-coloredlogs http://coloredlogs.readthedocs.org;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/humanfriendly-1.42[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/capturer[${PYTHON_USEDEP}]
+   dev-python/verboselogs[${PYTHON_USEDEP}]
+   )"
+
+DOCS=( README.rst )
+
+PATCHES=( "${FILESDIR}"/${PN}-2.0-skip-cli-test.patch )
+
+python_test() {
+   # Sandbox violations
+   sed \
+   -e 's:test_system_logging:_&:g' \
+   -i ${PN}/tests.py || die
+   esetup.py test
+}



[gentoo-commits] data/api:master commit in: files/overlays/

2015-11-17 Thread Michał Górny
commit: f225a6afc4fb0012e5c9a0ddf9ae7d0f11eaa336
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 17 17:33:11 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 17:33:11 2015 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f225a6af

repositories: Move eigenlay to github, bug #556858

 files/overlays/repositories.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index e6a157f..924221f 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -1138,12 +1138,12 @@ FIN
   
 eigenlay
 Eigenlab Gentoo overlay
-https://gitorious.org/eigennet/eigenlay
+https://gitlab.com/eigennet/eigenlay
 
   g...@eigenlab.org
   Gioacchino Mazzurco
 
-https://git.gitorious.org/eigennet/eigenlay.git
+https://gitlab.com/eigennet/eigenlay.git
   
   
 elementary



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

2015-11-17 Thread NP Hardass
commit: a3757eaa7fe63b8f799758f2f8a83d01c36e07d5
Author: NP-Hardass  gentoo  org>
AuthorDate: Tue Nov 17 17:55:53 2015 +
Commit: NP Hardass  gentoo  org>
CommitDate: Tue Nov 17 17:56:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3757eaa

app-emulation/wine: Resolve bug #566036

Package-Manager: portage-2.2.23

 app-emulation/wine/wine-1.7.55.ebuild | 2 +-
 app-emulation/wine/wine-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine/wine-1.7.55.ebuild 
b/app-emulation/wine/wine-1.7.55.ebuild
index e6a53ea..74bf02a 100644
--- a/app-emulation/wine/wine-1.7.55.ebuild
+++ b/app-emulation/wine/wine-1.7.55.ebuild
@@ -210,7 +210,7 @@ src_unpack() {
fi
else
unpack ${P}.tar.bz2
-   use staging || use pulseaudio && unpack "${STAGING_P}.tar.gz"
+   use staging && unpack "${STAGING_P}.tar.gz"
fi
 
unpack "${WINE_GENTOO}.tar.bz2"

diff --git a/app-emulation/wine/wine-.ebuild 
b/app-emulation/wine/wine-.ebuild
index e6a53ea..74bf02a 100644
--- a/app-emulation/wine/wine-.ebuild
+++ b/app-emulation/wine/wine-.ebuild
@@ -210,7 +210,7 @@ src_unpack() {
fi
else
unpack ${P}.tar.bz2
-   use staging || use pulseaudio && unpack "${STAGING_P}.tar.gz"
+   use staging && unpack "${STAGING_P}.tar.gz"
fi
 
unpack "${WINE_GENTOO}.tar.bz2"



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

2015-11-17 Thread Amy Winston
commit: 294ebb1f6ae70e2db2d3bf624191abf4f7b67caf
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Nov 17 17:58:11 2015 +
Commit: Amy Winston  gentoo  org>
CommitDate: Tue Nov 17 17:59:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=294ebb1f

media-gfx/meshlab: patches for plugins added bug #558758. By Dominik Joe 
Pantucek.

Package-Manager: portage-2.2.20.1

 media-gfx/meshlab/files/1.3.3/meshrender.patch| 15 +++
 media-gfx/meshlab/files/1.3.3/pluginmanager.patch | 14 ++
 media-gfx/meshlab/files/1.3.3/rfx.patch   | 14 ++
 media-gfx/meshlab/files/1.3.3/rmmeshrender.patch  | 15 +++
 media-gfx/meshlab/meshlab-1.3.3.ebuild|  6 +-
 5 files changed, 63 insertions(+), 1 deletion(-)

diff --git a/media-gfx/meshlab/files/1.3.3/meshrender.patch 
b/media-gfx/meshlab/files/1.3.3/meshrender.patch
new file mode 100644
index 000..382e21c
--- /dev/null
+++ b/media-gfx/meshlab/files/1.3.3/meshrender.patch
@@ -0,0 +1,15 @@
+--- meshlab/src/meshlabplugins/render_gdp/meshrender.cpp   2014-02-07 
10:38:28.0 +0100
 meshlab/src/meshlabplugins/render_gdb/meshrender.cpp   2015-11-15 
22:17:39.848179962 +0100
+@@ -36,8 +36,11 @@
+   /*QAction * qaNone = new QAction("None", this); 
+   qaNone->setCheckable(false);
+   actionList << qaNone;*/
+-
++#if defined(Q_OS_LINUX)
++  QDir shadersDir = QDir("/usr/share/meshlab");
++#else
+   QDir shadersDir = QDir(qApp->applicationDirPath());
++#endif
+ #if defined(Q_OS_WIN)
+   if (shadersDir.dirName() == "debug" || shadersDir.dirName() == 
"release" || shadersDir.dirName() == "plugins"  )
+   shadersDir.cdUp();

diff --git a/media-gfx/meshlab/files/1.3.3/pluginmanager.patch 
b/media-gfx/meshlab/files/1.3.3/pluginmanager.patch
new file mode 100644
index 000..00f3ba8
--- /dev/null
+++ b/media-gfx/meshlab/files/1.3.3/pluginmanager.patch
@@ -0,0 +1,14 @@
+--- meshlab/src/common/pluginmanager.cpp~  2014-04-01 17:07:40.0 
+0200
 meshlab/src/common/pluginmanager.cpp   2015-11-15 20:58:53.708227793 
+0100
+@@ -178,7 +178,11 @@
+ 
+ QString PluginManager::getBaseDirPath()
+ {
++#if defined(Q_OS_LINUX)
++  QDir baseDir("/usr/lib/meshlab");
++#else
+   QDir baseDir(qApp->applicationDirPath());
++#endif
+ 
+ #if defined(Q_OS_WIN)
+   // Windows:

diff --git a/media-gfx/meshlab/files/1.3.3/rfx.patch 
b/media-gfx/meshlab/files/1.3.3/rfx.patch
new file mode 100644
index 000..9cac559
--- /dev/null
+++ b/media-gfx/meshlab/files/1.3.3/rfx.patch
@@ -0,0 +1,14 @@
+--- meshlab/src/meshlabplugins/render_rfx/render_rfx.cpp~  2014-02-07 
10:38:29.0 +0100
 meshlab/src/meshlabplugins/render_rfx/render_rfx.cpp   2015-11-16 
00:07:34.868113218 +0100
+@@ -55,7 +55,11 @@
+ 
+ void RenderRFX::initActionList()
+ {
++#if defined(Q_OS_LINUX)
++  QDir shadersDir("/usr/share/meshlab");
++#else
+   QDir shadersDir = PluginManager::getBaseDirPath();
++#endif
+ 
+ #if defined(Q_OS_WIN)
+   if (shadersDir.dirName() == "debug"   ||

diff --git a/media-gfx/meshlab/files/1.3.3/rmmeshrender.patch 
b/media-gfx/meshlab/files/1.3.3/rmmeshrender.patch
new file mode 100644
index 000..59f
--- /dev/null
+++ b/media-gfx/meshlab/files/1.3.3/rmmeshrender.patch
@@ -0,0 +1,15 @@
+--- meshlab/src/plugins_unsupported/render_rm/rmmeshrender.cpp~
2013-05-22 17:08:53.0 +0200
 meshlab/src/plugins_unsupported/render_rm/rmmeshrender.cpp 2015-11-15 
23:18:04.678143277 +0100
+@@ -63,7 +63,12 @@
+ 
+ void RmMeshShaderRenderPlugin::initActionList() {
+ 
++#if defined(Q_OS_LINUX)
++  QDir shadersDir = QDir("/usr/share/meshlab/shaders");
++#else
+   QDir shadersDir = QDir(qApp->applicationDirPath());
++#endif
++
+ #if defined(Q_OS_WIN)
+   if (shadersDir.dirName() == "debug" ||
+   shadersDir.dirName() == "release" ||

diff --git a/media-gfx/meshlab/meshlab-1.3.3.ebuild 
b/media-gfx/meshlab/meshlab-1.3.3.ebuild
index 10241aa..e8d6cb2 100644
--- a/media-gfx/meshlab/meshlab-1.3.3.ebuild
+++ b/media-gfx/meshlab/meshlab-1.3.3.ebuild
@@ -36,7 +36,11 @@ src_prepare() {
"${FILESDIR}/${PV}"/lapack.patch \
"${FILESDIR}/${PV}"/mpir.patch \
"${FILESDIR}/${PV}"/qt-4.8.patch \
-   "${FILESDIR}/${PV}"/rpath.patch
+   "${FILESDIR}/${PV}"/rpath.patch \
+   "${FILESDIR}/${PV}"/pluginmanager.patch \
+   "${FILESDIR}/${PV}"/meshrender.patch \
+   "${FILESDIR}/${PV}"/rmmeshrender.patch \
+   "${FILESDIR}/${PV}"/rfx.patch
 }
 
 src_configure() {



[gentoo-commits] proj/eselect-python:master commit in: /

2015-11-17 Thread Michał Górny
commit: 9b97b9aec5f673398b225e7bad1a16f420b00366
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 17 18:38:19 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 18:38:19 2015 +
URL:
https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=9b97b9ae

Bump version

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index d9a6461..eda7882 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([eselect-python], [20140125])
+AC_INIT([eselect-python], [20151117])
 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-bzip2])
 
 # note: we need AC_PROG_CC to determine EXEEXT (AC_EXEEXT does not work)



[gentoo-commits] proj/eselect-python: New tag: eselect-python-20151117

2015-11-17 Thread Michał Górny
commit: 
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 18:45:09 2015 +

New tag: eselect-python-20151117




[gentoo-commits] proj/eselect-python: Branch deleted: mgornys-hackery

2015-11-17 Thread Michał Górny
commit: 
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 18:48:18 2015 +

Branch deleted: mgornys-hackery




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

2015-11-17 Thread Mike Gilbert
commit: c6569d984545f09ce106979a3f5e0ce6bdea45e9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Nov 17 22:56:30 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Nov 17 22:56:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6569d98

dev-lang/python: Revbump 2.7.10

This ensures nobody gets bitten by f1d0291c.

Package-Manager: portage-2.2.24_p19

 dev-lang/python/{python-2.7.10.ebuild => python-2.7.10-r1.ebuild}| 0
 dev-lang/python/{python-2.7.10-r2.ebuild => python-2.7.10-r3.ebuild} | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-lang/python/python-2.7.10.ebuild 
b/dev-lang/python/python-2.7.10-r1.ebuild
similarity index 100%
rename from dev-lang/python/python-2.7.10.ebuild
rename to dev-lang/python/python-2.7.10-r1.ebuild

diff --git a/dev-lang/python/python-2.7.10-r2.ebuild 
b/dev-lang/python/python-2.7.10-r3.ebuild
similarity index 100%
rename from dev-lang/python/python-2.7.10-r2.ebuild
rename to dev-lang/python/python-2.7.10-r3.ebuild



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

2015-11-17 Thread Mike Gilbert
commit: ae25a0dbb85375d2776dc0d82bf50762901e25a5
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Nov 17 23:46:00 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Nov 17 23:46:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae25a0db

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

Package-Manager: portage-2.2.25

 www-client/google-chrome-unstable/Manifest| 4 ++--
 2560.0_p1.ebuild => google-chrome-unstable-48.0.2564.8_p1.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index 00fc25a..f804112 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1,2 +1,2 @@
-DIST google-chrome-unstable_48.0.2560.0-1_amd64.deb 47781590 SHA256 
abaf774b86ed8f2386967ae4515ad7aa99e30dbb1deb23b692a38510b2b5bae2 SHA512 
c0a0397e5ac2907eb6feba3ef20d530d34e94a2bd6ed41993bd2c8a9a9ec6e42f15c6694a79ca402a262ed9a9edc1da0c87bae3847814e21a0865a5a112a89af
 WHIRLPOOL 
03b0e86cc62ade80913e9a1298748c8a0507a90638be5fc4d3f2014af7fd8fbaf0a30cd6ac44a1c463c447de8670a6e2a04b747451f120335b94a616e72f7592
-DIST google-chrome-unstable_48.0.2560.0-1_i386.deb 47293262 SHA256 
85099932fbc035b41b4b4d47188d305c0455c5fa83b3bc9e6136f403e96e27d7 SHA512 
ee466fd9ad8fa15254785b1c5fb05f7e49584afb01ee8887e3c2980375334cd9d72fe72fc94885b1849db3ba5b2853210d252692ddc6b6dd1cae6b099979bd2c
 WHIRLPOOL 
23d0f85d3a555b288c86d6b1d3bc77d9087c73e39f42fba6599c3754bc360ec1f7e987d8e7485c544246505719b53d28b6de7ec8c102086695ab619c06131c46
+DIST google-chrome-unstable_48.0.2564.8-1_amd64.deb 47870498 SHA256 
1998d1667650b3864f154ec43ad55197b8743b56fcffbdad4a5442692e3d7101 SHA512 
0e35be65548c961d1e9c9df7c9dff43f8791b477e821c79bd1aa7df04cd4c6d421b04e4498e872f2c85959391d5bf9974a95ba1590dc9981a1f90448fd424216
 WHIRLPOOL 
7053207b56910c120c5c2dcc8956327875bf1087b3970617c926fd71c1e76505bf60e480c0084fd25b0a443306f2b32284482bfc28cd11cf99cbbea032e554e1
+DIST google-chrome-unstable_48.0.2564.8-1_i386.deb 47645970 SHA256 
4c6bfb140c627f05076f4cb297a21808b61d13c5c264ad1fc66d7dac3b47e2bc SHA512 
a410d7cae3deef2a570cd7b14b63db9637cf0296e81fdd871c9f10bc6c3644bdbae80532af0ff1630daf68230bba9e5cef09e297a0d2df9a39ab42ea64ba582e
 WHIRLPOOL 
4f997426fea60bbed8898b825303e131e188c18ae4c66ddc0c5ed5351627eebb637bb7d8b2340d939571656f2fb7bc50b721f8c025d5f9bbebdb579b43cf1dfd

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



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

2015-11-17 Thread Mike Gilbert
commit: aedaba59b2f2e92db4979445be347a266456523b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Nov 17 23:46:10 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Nov 17 23:46:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aedaba59

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

Package-Manager: portage-2.2.25

 www-plugins/chrome-binary-plugins/Manifest| 4 ++--
 ..._alpha1.ebuild => chrome-binary-plugins-48.0.2564.8_alpha1.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 633a053..a9d1061 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -2,5 +2,5 @@ DIST google-chrome-beta_47.0.2526.58-1_amd64.deb 47469772 
SHA256 7cc64b7f209135e
 DIST google-chrome-beta_47.0.2526.58-1_i386.deb 47137450 SHA256 
9bd238abadc0c390bb393518aec8359f61439b4a531df18ce4e2644bfecdbbea SHA512 
9ad5b2ed3cecab383c4bb0f9185eaf161512fff5e4cb588e407650bceaa91ed7ac0116682f79260e7ee039a726feee8f2e2a6b2aaa1b91cbdea277125ea64464
 WHIRLPOOL 
13295cc8e745a7d89196ff20561523151a868a6d889822305c2ea8668cb4b465cd63959dd207cbdb4632ce866eb1bf0d483268b37684f45d65dd2b866fc0aa3f
 DIST google-chrome-stable_46.0.2490.86-1_amd64.deb 47301590 SHA256 
29c434fe640825a88ca5871ce31b8cba9994776dc5c3c99e579998f14e3455ac SHA512 
5fd15fa740843d4003c7fe64b7c0c45a07f26b9087a6dfb7f58d3c758f2e6045b20b4e8395c4bb790bf15d74fe56346fe2dc55c2cfbe517e8f793e1defd64013
 WHIRLPOOL 
ceb26bfde2c58e86fd387ecc5c774a84d3cc8c69ec9ca1eb8e91e135f2bcc715c1105ba8e44e27f8c562a8747e33a0dd40f55b68194cb804069d94f4dccf
 DIST google-chrome-stable_46.0.2490.86-1_i386.deb 47021428 SHA256 
c8e8d548af976508d235f36fd73fd91515842dab4371b8cd6732e2c8b283016d SHA512 
bee7901cd1e18981460f2d8158a7568fb0efc5030c28e017b73d5abe7ecdd8344965e50bb34a911f91fd8cf93b0978e7c91f2dffde55f8209fb39674ea6dfca5
 WHIRLPOOL 
b551f698ab5fb1e04940826d85729e04bcab6e67f2240b48aef00284704d85a6018abcde4370b4436f7d8fb22f159ea489bfc6c1b73ffd25c8ee5059239198a2
-DIST google-chrome-unstable_48.0.2560.0-1_amd64.deb 47781590 SHA256 
abaf774b86ed8f2386967ae4515ad7aa99e30dbb1deb23b692a38510b2b5bae2 SHA512 
c0a0397e5ac2907eb6feba3ef20d530d34e94a2bd6ed41993bd2c8a9a9ec6e42f15c6694a79ca402a262ed9a9edc1da0c87bae3847814e21a0865a5a112a89af
 WHIRLPOOL 
03b0e86cc62ade80913e9a1298748c8a0507a90638be5fc4d3f2014af7fd8fbaf0a30cd6ac44a1c463c447de8670a6e2a04b747451f120335b94a616e72f7592
-DIST google-chrome-unstable_48.0.2560.0-1_i386.deb 47293262 SHA256 
85099932fbc035b41b4b4d47188d305c0455c5fa83b3bc9e6136f403e96e27d7 SHA512 
ee466fd9ad8fa15254785b1c5fb05f7e49584afb01ee8887e3c2980375334cd9d72fe72fc94885b1849db3ba5b2853210d252692ddc6b6dd1cae6b099979bd2c
 WHIRLPOOL 
23d0f85d3a555b288c86d6b1d3bc77d9087c73e39f42fba6599c3754bc360ec1f7e987d8e7485c544246505719b53d28b6de7ec8c102086695ab619c06131c46
+DIST google-chrome-unstable_48.0.2564.8-1_amd64.deb 47870498 SHA256 
1998d1667650b3864f154ec43ad55197b8743b56fcffbdad4a5442692e3d7101 SHA512 
0e35be65548c961d1e9c9df7c9dff43f8791b477e821c79bd1aa7df04cd4c6d421b04e4498e872f2c85959391d5bf9974a95ba1590dc9981a1f90448fd424216
 WHIRLPOOL 
7053207b56910c120c5c2dcc8956327875bf1087b3970617c926fd71c1e76505bf60e480c0084fd25b0a443306f2b32284482bfc28cd11cf99cbbea032e554e1
+DIST google-chrome-unstable_48.0.2564.8-1_i386.deb 47645970 SHA256 
4c6bfb140c627f05076f4cb297a21808b61d13c5c264ad1fc66d7dac3b47e2bc SHA512 
a410d7cae3deef2a570cd7b14b63db9637cf0296e81fdd871c9f10bc6c3644bdbae80532af0ff1630daf68230bba9e5cef09e297a0d2df9a39ab42ea64ba582e
 WHIRLPOOL 
4f997426fea60bbed8898b825303e131e188c18ae4c66ddc0c5ed5351627eebb637bb7d8b2340d939571656f2fb7bc50b721f8c025d5f9bbebdb579b43cf1dfd

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-48.0.2560.0_alpha1.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-48.0.2564.8_alpha1.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-48.0.2560.0_alpha1.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-48.0.2564.8_alpha1.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-python/

2015-11-17 Thread Michał Górny
commit: 1a8e3d65b92c172b9ff43789e5acdeb954b3be55
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 17 22:42:06 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 22:44:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a8e3d65

app-eselect/eselect-python: Update blockers to match revbumped pythons

 app-eselect/eselect-python/eselect-python-20151117.ebuild | 8 
 app-eselect/eselect-python/eselect-python-.ebuild | 8 
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/app-eselect/eselect-python/eselect-python-20151117.ebuild 
b/app-eselect/eselect-python/eselect-python-20151117.ebuild
index 86e9a3c..f78b25f 100644
--- a/app-eselect/eselect-python/eselect-python-20151117.ebuild
+++ b/app-eselect/eselect-python/eselect-python-20151117.ebuild
@@ -21,10 +21,10 @@ IUSE=""
 
 RDEPEND=">=app-admin/eselect-1.2.3
>=dev-lang/python-exec-2.1:2
-   !

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

2015-11-17 Thread Mike Gilbert
commit: 37336fd73acdd692894c1178561020cf2759ff77
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Nov 17 23:44:58 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Nov 17 23:44:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37336fd7

dev-python/python-debian: Add python3.5

Package-Manager: portage-2.2.25

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

diff --git a/dev-python/python-debian/python-debian-0.1.27.ebuild 
b/dev-python/python-debian/python-debian-0.1.27.ebuild
index b841b0a..7bf9ecc 100644
--- a/dev-python/python-debian/python-debian-0.1.27.ebuild
+++ b/dev-python/python-debian/python-debian-0.1.27.ebuild
@@ -4,7 +4,7 @@
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
 
 inherit distutils-r1
 
@@ -26,7 +26,7 @@ DEPEND="${RDEPEND}
 
 PATCHES=(
"${FILESDIR}"/${PN}-0.1.26-fix-tests.patch
-   )
+)
 
 python_compile_all() {
"${PYTHON}" lib/debian/doc-debtags > README.debtags || die



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: /

2015-11-17 Thread Michał Górny
commit: 92ece2968e225eb32fe4c0859e65ce19605a1035
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 17 10:45:39 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 10:45:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92ece296

Merge remote-tracking branch 'github/pr/359'.

 .../files/gupnp-ui-0.1.1-underlinking.patch| 25 ++
 net-libs/gupnp-ui/gupnp-ui-0.1.1.ebuild| 11 +-
 2 files changed, 35 insertions(+), 1 deletion(-)



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: /

2015-11-17 Thread Michał Górny
commit: f9a33faea877329a7da72ac5179fd587d79dbd57
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 17 14:01:33 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 14:05:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9a33fae

Merge remote-tracking branch 'github/pr/218'.

 ...4.2.1-verbose-error-when-uid-doesnt-match.patch |  76 
 sys-apps/shadow/shadow-4.2.1-r2.ebuild | 212 +
 2 files changed, 288 insertions(+)



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: dev-lang/python-exec/

2015-11-17 Thread Michał Górny
commit: ed432c6b157833561a40620ee36a5ad094778085
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 17 19:01:16 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 19:01:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed432c6b

dev-lang/python-exec: Drop autotools-utils, clean up

 dev-lang/python-exec/python-exec-2..ebuild | 21 +
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/dev-lang/python-exec/python-exec-2..ebuild 
b/dev-lang/python-exec/python-exec-2..ebuild
index a462899..d6ec26f 100644
--- a/dev-lang/python-exec/python-exec-2..ebuild
+++ b/dev-lang/python-exec/python-exec-2..ebuild
@@ -5,18 +5,19 @@
 EAPI=5
 
 #if LIVE
-AUTOTOOLS_AUTORECONF=yes
 EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
 EGIT_BRANCH="python-exec2"
 
-inherit git-r3
+inherit autotools git-r3
 #endif
 
 # Kids, don't do this at home!
 inherit python-utils-r1
 PYTHON_COMPAT=( "${_PYTHON_ALL_IMPLS[@]}" )
 
-inherit autotools-utils python-r1
+# Inherited purely to have PYTHON_TARGET flags which will satisfy USE
+# dependencies and trigger necessary rebuilds.
+inherit python-r1
 
 DESCRIPTION="Python script wrapper"
 HOMEPAGE="https://bitbucket.org/mgorny/python-exec/;
@@ -32,19 +33,23 @@ RDEPEND="!

[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: /

2015-11-17 Thread Michał Górny
commit: f6d2c237ad69d0327328b7775d84a780b4f96027
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 17 13:49:42 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 13:51:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6d2c237

Merge remote-tracking branch 'github/pr/294'. Fixes bug 564194.

 net-analyzer/ndoutils/ndoutils-2.0.0.ebuild | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: profiles/, dev-lang/python-exec/

2015-11-17 Thread Michał Górny
commit: b47a8348266272a9047dd70b8d7c476a3dd39358
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 15 11:38:42 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 19:08:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b47a8348

dev-lang/python-exec: Bump to 2.1

The new version follows app-admin/eselect-python-20151117 change of
storing split python[23] interpreter choice in config files.

 dev-lang/python-exec/Manifest   |  1 +
 ...on-exec-2..ebuild => python-exec-2.1.ebuild} | 21 +++--
 dev-lang/python-exec/python-exec-2..ebuild  |  6 +++---
 profiles/package.mask   |  2 ++
 4 files changed, 9 insertions(+), 21 deletions(-)

diff --git a/dev-lang/python-exec/Manifest b/dev-lang/python-exec/Manifest
index e9da272..5dab9ba 100644
--- a/dev-lang/python-exec/Manifest
+++ b/dev-lang/python-exec/Manifest
@@ -1,2 +1,3 @@
 DIST python-exec-2.0.1.tar.bz2 80965 SHA256 
3eddcb0d6c682a5c182c62578bb8d6ce1140a009873747e9ba1bf9de72ed7efd SHA512 
0396e2617c759a66b16e57b0ca60b57e03f3c8096ae4a7f2e402eafcbee4ffd839bf0c6e4d259c6ba90940f9ba7e3f191125e395080cce3ef82e5f52053d0462
 WHIRLPOOL 
50c0cac1c7e2b5d2a21125647874c83caeabee293b87ef01926474d492b79b7837754c2d26173282977e9d00024559bb070f8d76bb5227df1776e937cd280c32
 DIST python-exec-2.0.2.tar.bz2 82217 SHA256 
c411638fe94953c1e8ff57e7b66f601a817633fbc9cb7d410982778042051bb0 SHA512 
96198dda88a73b902d617a32f10ddf2ac981b1871fb5eaf5003d77453df8a0aacf299c39c6e49ebaa620994a30e57ee7a1128fb4ba41aa4f503031fa2addef7f
 WHIRLPOOL 
603b494c7b87f0f3f0cfba35378e1a2e231879a01b730657e09ecf798957fa4dfd54a6d852074c2aa9ae3c15e5d1d3203584b8a120e5dd0dee2117319706a5ce
+DIST python-exec-2.1.tar.bz2 82167 SHA256 
adac4e9ae677ca0fbb9efc55573ecbb0e8361ed7a60a5241e7abc1056fba06ad SHA512 
cadfb7723aa412caec4a449909769b14a800c19650c64768b0ffb30b2c0645e70c9a039f960f3263c6c18490bb73c0129b83a72c7407f558bcaf3652cc4c8bcf
 WHIRLPOOL 
72b73b216faf7caa8afbc3ce316771bd832e468cf84835267dc3833d5c52fce24578e09f2d3aa8a322f324426eda5e53bd9611711ea976679574b2be764c2525

diff --git a/dev-lang/python-exec/python-exec-2..ebuild 
b/dev-lang/python-exec/python-exec-2.1.ebuild
similarity index 79%
copy from dev-lang/python-exec/python-exec-2..ebuild
copy to dev-lang/python-exec/python-exec-2.1.ebuild
index d6ec26f..dbcb2ed 100644
--- a/dev-lang/python-exec/python-exec-2..ebuild
+++ b/dev-lang/python-exec/python-exec-2.1.ebuild
@@ -1,16 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-#if LIVE
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
-EGIT_BRANCH="python-exec2"
-
-inherit autotools git-r3
-#endif
-
 # Kids, don't do this at home!
 inherit python-utils-r1
 PYTHON_COMPAT=( "${_PYTHON_ALL_IMPLS[@]}" )
@@ -28,16 +21,8 @@ SLOT="2"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
-RDEPEND="!https://bitbucket.org/mgorny/${PN}.git;
-EGIT_BRANCH="python-exec2"
 
 inherit autotools git-r3
 #endif
@@ -28,7 +27,8 @@ SLOT="2"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
-RDEPEND="! (11 Nov 2015)
 # Cleaned up Python versions masked for testing:
 # - python-config-X.Y compatibility removed,
+# - python[23] choice is now stored in config file rather than symlink,
 # - python-exec symlinks added (to replace eselect-python's wrapper),
 # - ABIFLAGS reintroduced for 3.3+.
 # Resulting API/ABI change can break reverse dependencies, especially
@@ -76,6 +77,7 @@ sci-chemistry/pymol-apbs-plugin
 =dev-lang/python-3.3.5-r4
 =dev-lang/python-3.4.3-r4
 =dev-lang/python-3.5.0-r3
+=dev-lang/python-exec-2.1
 
 # Justin Lecher <j...@gentoo.org> (10 Nov 2015)
 # Vulnerable package CVE-2014-{1932,1933}



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: /

2015-11-17 Thread Michał Górny
commit: d8d19872964d9584500b52f213e18230c56cd84a
Author: Ian Delaney  gentoo  org>
AuthorDate: Sat Nov 14 15:34:26 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 14 15:35:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8d19872

Merge remote-tracking branch 'remotes/marcecj/fix_asciidoc_deps'

Pull request: https://github.com/gentoo/gentoo/pull/344

 app-text/asciidoc/asciidoc-8.6.9-r1.ebuild|  2 +-
 .../{asciidoc-8.6.9-r1.ebuild => asciidoc-8.6.9-r2.ebuild}| 11 ---
 app-text/asciidoc/asciidoc-.ebuild| 11 ---
 app-text/asciidoc/metadata.xml|  6 --
 4 files changed, 21 insertions(+), 9 deletions(-)



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: /

2015-11-17 Thread Michał Górny
commit: eccf9ddb646fcdb6d9fc27aca7afa341fcb0d823
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Nov 14 16:08:00 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 14 16:08:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eccf9ddb

Merge remote-tracking branch 'github/pr/328'.

 app-admin/lastpass-cli/Manifest|  3 +-
 app-admin/lastpass-cli/lastpass-cli-0.3.0.ebuild   | 37 --
 ...-cli-0.5.0.ebuild => lastpass-cli-0.6.0.ebuild} |  0
 3 files changed, 1 insertion(+), 39 deletions(-)



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: /

2015-11-17 Thread Michał Górny
commit: 8127dfca758f20a51a4906e1967ff50369a1017b
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Nov 14 23:43:53 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 14 23:44:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8127dfca

Merge remote-tracking branch 'github/pr/349'.

 .../lha-114i-fix-getopt_long-declaration.patch | 11 +
 app-arch/lha/lha-114i-r8.ebuild| 53 ++
 2 files changed, 64 insertions(+)



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: /

2015-11-17 Thread Michał Górny
commit: f97b24a9b3179756372db59ae29dfe8596f56c47
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Nov 17 05:59:24 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 06:00:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f97b24a9

Merge remote-tracking branch 'remotes/marcecj/app-text_asciidoc_rm_old'

Pull request: https://github.com/gentoo/gentoo/pull/366

 app-text/asciidoc/Manifest |   2 -
 app-text/asciidoc/asciidoc-8.6.5.ebuild| 106 
 app-text/asciidoc/asciidoc-8.6.8-r1.ebuild | 107 -
 app-text/asciidoc/asciidoc-8.6.9.ebuild| 107 -
 4 files changed, 322 deletions(-)



[gentoo-commits] repo/gentoo:master commit in: profiles/, dev-lang/python-exec/

2015-11-17 Thread Michał Górny
commit: 1e29e4516c768b4993fe10ca66446934095d08d1
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 15 11:38:42 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 20:39:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e29e451

dev-lang/python-exec: Bump to 2.1

The new version follows app-admin/eselect-python-20151117 change of
storing split python[23] interpreter choice in config files.

 dev-lang/python-exec/Manifest   |  1 +
 ...on-exec-2..ebuild => python-exec-2.1.ebuild} | 21 +++--
 dev-lang/python-exec/python-exec-2..ebuild  |  6 +++---
 profiles/package.mask   |  2 ++
 4 files changed, 9 insertions(+), 21 deletions(-)

diff --git a/dev-lang/python-exec/Manifest b/dev-lang/python-exec/Manifest
index e9da272..5dab9ba 100644
--- a/dev-lang/python-exec/Manifest
+++ b/dev-lang/python-exec/Manifest
@@ -1,2 +1,3 @@
 DIST python-exec-2.0.1.tar.bz2 80965 SHA256 
3eddcb0d6c682a5c182c62578bb8d6ce1140a009873747e9ba1bf9de72ed7efd SHA512 
0396e2617c759a66b16e57b0ca60b57e03f3c8096ae4a7f2e402eafcbee4ffd839bf0c6e4d259c6ba90940f9ba7e3f191125e395080cce3ef82e5f52053d0462
 WHIRLPOOL 
50c0cac1c7e2b5d2a21125647874c83caeabee293b87ef01926474d492b79b7837754c2d26173282977e9d00024559bb070f8d76bb5227df1776e937cd280c32
 DIST python-exec-2.0.2.tar.bz2 82217 SHA256 
c411638fe94953c1e8ff57e7b66f601a817633fbc9cb7d410982778042051bb0 SHA512 
96198dda88a73b902d617a32f10ddf2ac981b1871fb5eaf5003d77453df8a0aacf299c39c6e49ebaa620994a30e57ee7a1128fb4ba41aa4f503031fa2addef7f
 WHIRLPOOL 
603b494c7b87f0f3f0cfba35378e1a2e231879a01b730657e09ecf798957fa4dfd54a6d852074c2aa9ae3c15e5d1d3203584b8a120e5dd0dee2117319706a5ce
+DIST python-exec-2.1.tar.bz2 82167 SHA256 
adac4e9ae677ca0fbb9efc55573ecbb0e8361ed7a60a5241e7abc1056fba06ad SHA512 
cadfb7723aa412caec4a449909769b14a800c19650c64768b0ffb30b2c0645e70c9a039f960f3263c6c18490bb73c0129b83a72c7407f558bcaf3652cc4c8bcf
 WHIRLPOOL 
72b73b216faf7caa8afbc3ce316771bd832e468cf84835267dc3833d5c52fce24578e09f2d3aa8a322f324426eda5e53bd9611711ea976679574b2be764c2525

diff --git a/dev-lang/python-exec/python-exec-2..ebuild 
b/dev-lang/python-exec/python-exec-2.1.ebuild
similarity index 79%
copy from dev-lang/python-exec/python-exec-2..ebuild
copy to dev-lang/python-exec/python-exec-2.1.ebuild
index d6ec26f..dbcb2ed 100644
--- a/dev-lang/python-exec/python-exec-2..ebuild
+++ b/dev-lang/python-exec/python-exec-2.1.ebuild
@@ -1,16 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-#if LIVE
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
-EGIT_BRANCH="python-exec2"
-
-inherit autotools git-r3
-#endif
-
 # Kids, don't do this at home!
 inherit python-utils-r1
 PYTHON_COMPAT=( "${_PYTHON_ALL_IMPLS[@]}" )
@@ -28,16 +21,8 @@ SLOT="2"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
-RDEPEND="!https://bitbucket.org/mgorny/${PN}.git;
-EGIT_BRANCH="python-exec2"
 
 inherit autotools git-r3
 #endif
@@ -28,7 +27,8 @@ SLOT="2"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
-RDEPEND="! (11 Nov 2015)
 # Cleaned up Python versions masked for testing:
 # - python-config-X.Y compatibility removed,
+# - python[23] choice is now stored in config file rather than symlink,
 # - python-exec symlinks added (to replace eselect-python's wrapper),
 # - ABIFLAGS reintroduced for 3.3+.
 # Resulting API/ABI change can break reverse dependencies, especially
@@ -76,6 +77,7 @@ sci-chemistry/pymol-apbs-plugin
 =dev-lang/python-3.3.5-r4
 =dev-lang/python-3.4.3-r4
 =dev-lang/python-3.5.0-r3
+=dev-lang/python-exec-2.1
 
 # Justin Lecher <j...@gentoo.org> (10 Nov 2015)
 # Vulnerable package CVE-2014-{1932,1933}



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-python/

2015-11-17 Thread Michał Górny
commit: aae084d8e670a9f001cbcf486c34097ebedbb2b1
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 17 20:32:36 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 20:39:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae084d8

app-eselect/eselect-python: Preserve previous python[23] selection

 .../eselect-python/eselect-python-20151117.ebuild  | 37 ++
 .../eselect-python/eselect-python-.ebuild  | 37 ++
 2 files changed, 62 insertions(+), 12 deletions(-)

diff --git a/app-eselect/eselect-python/eselect-python-20151117.ebuild 
b/app-eselect/eselect-python/eselect-python-20151117.ebuild
index 9968e7f..86e9a3c 100644
--- a/app-eselect/eselect-python/eselect-python-20151117.ebuild
+++ b/app-eselect/eselect-python/eselect-python-20151117.ebuild
@@ -40,14 +40,39 @@ src_install() {
done
 }
 
+pkg_preinst() {
+   local py
+
+   # Copy python[23] selection from the old format (symlink)
+   for py in 2 3; do
+   # default to none
+   declare -g "PREV_PYTHON${py}"=
+
+   if [[ -L ${EROOT}/usr/bin/python${py} ]]; then
+   local target=$(readlink "${EROOT}/usr/bin/python${py}")
+
+   # check if it's actually old eselect symlink
+   if [[ ${target} == python?.? ]]; then
+   declare -g "PREV_PYTHON${py}=${target}"
+   fi
+   fi
+   done
+}
+
 pkg_postinst() {
+   local py
+
if has_version 'dev-lang/python'; then
eselect python update --if-unset
fi
-   if has_version '=dev-lang/python-2*'; then
-   eselect python update --python2 --if-unset
-   fi
-   if has_version '=dev-lang/python-3*'; then
-   eselect python update --python3 --if-unset
-   fi
+
+   for py in 2 3; do
+   local pyvar=PREV_PYTHON${py}
+   if [[ -n ${!pyvar} ]]; then
+   einfo "Setting Python${py} to ${!pyvar}"
+   eselect python set "--python${py}" "${!pyvar}"
+   elif has_version "=dev-lang/python-${py}*"; then
+   eselect python update "--python${py}" --if-unset
+   fi
+   done
 }

diff --git a/app-eselect/eselect-python/eselect-python-.ebuild 
b/app-eselect/eselect-python/eselect-python-.ebuild
index 9968e7f..86e9a3c 100644
--- a/app-eselect/eselect-python/eselect-python-.ebuild
+++ b/app-eselect/eselect-python/eselect-python-.ebuild
@@ -40,14 +40,39 @@ src_install() {
done
 }
 
+pkg_preinst() {
+   local py
+
+   # Copy python[23] selection from the old format (symlink)
+   for py in 2 3; do
+   # default to none
+   declare -g "PREV_PYTHON${py}"=
+
+   if [[ -L ${EROOT}/usr/bin/python${py} ]]; then
+   local target=$(readlink "${EROOT}/usr/bin/python${py}")
+
+   # check if it's actually old eselect symlink
+   if [[ ${target} == python?.? ]]; then
+   declare -g "PREV_PYTHON${py}=${target}"
+   fi
+   fi
+   done
+}
+
 pkg_postinst() {
+   local py
+
if has_version 'dev-lang/python'; then
eselect python update --if-unset
fi
-   if has_version '=dev-lang/python-2*'; then
-   eselect python update --python2 --if-unset
-   fi
-   if has_version '=dev-lang/python-3*'; then
-   eselect python update --python3 --if-unset
-   fi
+
+   for py in 2 3; do
+   local pyvar=PREV_PYTHON${py}
+   if [[ -n ${!pyvar} ]]; then
+   einfo "Setting Python${py} to ${!pyvar}"
+   eselect python set "--python${py}" "${!pyvar}"
+   elif has_version "=dev-lang/python-${py}*"; then
+   eselect python update "--python${py}" --if-unset
+   fi
+   done
 }



[gentoo-commits] proj/portage: New tag: v2.2.25

2015-11-17 Thread Brian Dolbec
commit: 
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Nov 17 21:01:30 2015 +

New tag: v2.2.25




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

2015-11-17 Thread Brian Dolbec
commit: 432805b79431a32dfb8b63c3e66960bfb58cb09b
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Nov 17 20:34:57 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Nov 17 20:34:57 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=432805b7

Updates for a release

 NEWS  |  5 +
 RELEASE-NOTES | 13 +
 setup.py  |  2 +-
 3 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/NEWS b/NEWS
index 1d1136f..dd04a44 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,10 @@
 News (mainly features/major bug fixes)
 
+portage-2.2.25
+--
+* EAPI 6 final fully implemented.
+
+
 portage-2.2.22
 -
 * Stage 1 of the repoman re-write code merged in to master branch

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index fe89e85..69d96e8 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,19 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.2.25
+==
+* Bug Fixes:
+- Bug 564988 Rsync and Git Sync: skip metadata-transfer when appropriate
+- Bug 565172 repos.conf: support sync-hooks-only-on-change attribute
+- Bug 565540 egencache: parallelize --update-changelogs
+- Bug 565626 egencache: Delay updating Manifests until all other
+ tasks complete
+* EAPI 6 final updates and changes.
+* locale: Warn when locale does not conform to ASCII rules for case 
conversions.
+  Force sane LC_COLLATE & LC_CTYPE as required in EAPI 6.
+
+
 portage-2.2.24
 ==
 * Bug Fixes:

diff --git a/setup.py b/setup.py
index a754c89..0f08f54 100755
--- a/setup.py
+++ b/setup.py
@@ -615,7 +615,7 @@ def get_manpages():
 
 setup(
name = 'portage',
-   version = '2.2.24',
+   version = '2.2.25',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-control-center/

2015-11-17 Thread Pacho Ramos
commit: b9d644bc036a8df6fb6942870251ac271f288378
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:07:02 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:07:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9d644bc

gnome-extra/cinnamon-control-center: Drop old

Package-Manager: portage-2.2.24

 gnome-extra/cinnamon-control-center/Manifest   |   1 -
 .../cinnamon-control-center-2.8.0.ebuild   | 102 -
 2 files changed, 103 deletions(-)

diff --git a/gnome-extra/cinnamon-control-center/Manifest 
b/gnome-extra/cinnamon-control-center/Manifest
index 7ca5122..a298eb0 100644
--- a/gnome-extra/cinnamon-control-center/Manifest
+++ b/gnome-extra/cinnamon-control-center/Manifest
@@ -1,4 +1,3 @@
 DIST cinnamon-control-center-2.6.0-pyongyang.tar.xz 32912 SHA256 
d26e31c1377abc1c3e47e1c8e78572e0169d21bdfddb920ab839bec4e1bbe8a7 SHA512 
3c6d6a970382a8e0429cc78873e4d230d5848f2a6ae4feee4d28db28cb21124f59cd7b4632f3a427f91dd7e497ee32dd3f7ba5139a3c1566264904939007d28e
 WHIRLPOOL 
a1a4102ddb13e00414b58352c3eabbd02dc425f2b3a59027a579d9ac78bdd0fd7dcacc8c204ceaeb858944202af72bbfcecabb48aa1e7ddf4ff6ec4e682fb97d
 DIST cinnamon-control-center-2.6.0.tar.gz 4169903 SHA256 
bbc39ac8ddcbc06b6aada1ef271f95f5f0d0fe439bec38b9cd847af420305c49 SHA512 
ed383484b751a9d98de7f136c21c5eb6ce7cfe1418945bd0725aa9e9f08397eb78854b38db258434ed8895dbadd2ce29b5a423a9025dea17fb4876f8847ff125
 WHIRLPOOL 
7e6d3373e97116d5b531f4fcff85984050fd5d7ad343137b76e30089b3c6f4ff5409f68867289f3967a257a67cd04059f2aa02c48a4e0e4c29b43755d6f4cd84
-DIST cinnamon-control-center-2.8.0.tar.gz 4090227 SHA256 
ce4bca5044a65605c24d77118036394728c9bf4cfc424a4acf0e1f0c190f55bb SHA512 
c3e5789dea3527310508bc51d2a7c4f9df8bb295419a6576075cc41471a53f7ca349de4946dc6df198706be1528caff7ad81b5c02619da98cdb7e383398905b1
 WHIRLPOOL 
32f1f52534e0697605f8dbce528558661e5ef6c8b517d371eceaa1c032a36b5c4232340fc8d66d85044adff09da52cdbd9e950ddcb42829de9012470bb32778b
 DIST cinnamon-control-center-2.8.1.tar.gz 4090162 SHA256 
595076ef89949c31357cd45f41818df1f6b7350a2b810f107e0b88cd9870e273 SHA512 
e0f21bc29128b56d2024ea5bd9dff70a917259437804f4aad0942ee1313090b70e6811d1b54513b4639c0bff0230efcb2847a42fcf9ad183b24a3cbfeda976de
 WHIRLPOOL 
47d3255eeddd782fb5c87ff82ed5d8ab8588b8066b9da9344abcfa259d0b481e06f676cefa43563f28ddc75d2c8112b30712b4ae52f750e03f779b1a73108c7b

diff --git 
a/gnome-extra/cinnamon-control-center/cinnamon-control-center-2.8.0.ebuild 
b/gnome-extra/cinnamon-control-center/cinnamon-control-center-2.8.0.ebuild
deleted file mode 100644
index e8fdca9..000
--- a/gnome-extra/cinnamon-control-center/cinnamon-control-center-2.8.0.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes" # gmodule is used, which uses dlopen
-
-inherit autotools eutils gnome2
-
-DESCRIPTION="Cinnamons's main interface to configure various aspects of the 
desktop"
-HOMEPAGE="http://cinnamon.linuxmint.com/;
-SRC_URI="https://github.com/linuxmint/cinnamon-control-center/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="+colord +cups input_devices_wacom"
-KEYWORDS="~amd64 ~x86"
-
-# False positives caused by nested configure scripts
-QA_CONFIGURE_OPTIONS=".*"
-
-# FIXME: modemmanager is not optional
-#networkmanager is not optional
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.31:2
-   dev-libs/libxml2:2
-   >=gnome-base/libgnomekbd-2.91.91:0=
-   >=gnome-extra/cinnamon-desktop-1.0:0=
-   >=gnome-extra/cinnamon-menus-1.0:0=
-   >=gnome-extra/cinnamon-settings-daemon-1.0:0=
-   >=gnome-extra/nm-applet-0.9.8
-   media-libs/fontconfig
-   >=media-libs/libcanberra-0.13[gtk3]
-   >=media-sound/pulseaudio-1.1[glib]
-   >=net-misc/modemmanager-0.7
-   >=net-misc/networkmanager-0.9.8[modemmanager]
-   >=sys-auth/polkit-0.103
-   >=x11-libs/gdk-pixbuf-2.23.0:2
-   >=x11-libs/gtk+-3.4.1:3
-   >=x11-libs/libnotify-0.7.3:0=
-   x11-libs/libX11
-   x11-libs/libxklavier
-   colord? ( >=x11-misc/colord-0.1.14:0= )
-   cups? ( >=net-print/cups-1.4[dbus] )
-   input_devices_wacom? (
-   >=dev-libs/libwacom-0.7
-   >=x11-libs/gtk+-3.8:3
-   >=x11-libs/libXi-1.2 )
-"
-# 

[gentoo-commits] repo/gentoo:master commit in: media-gfx/simple-scan/, profiles/

2015-11-17 Thread Pacho Ramos
commit: caaec004d31dee515d64cd310f1e38fd55bab43f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 20:21:41 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 20:21:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caaec004

Update gnome 3.18 mask

 media-gfx/simple-scan/Manifest  |  1 +
 media-gfx/simple-scan/simple-scan-3.18.1.ebuild | 45 +
 profiles/package.mask   |  5 +++
 3 files changed, 51 insertions(+)

diff --git a/media-gfx/simple-scan/Manifest b/media-gfx/simple-scan/Manifest
index b3b9bae..cfab9d9 100644
--- a/media-gfx/simple-scan/Manifest
+++ b/media-gfx/simple-scan/Manifest
@@ -1,3 +1,4 @@
 DIST simple-scan-3.14.3.tar.xz 483900 SHA256 
bb26128b6cce329932209fceed1bf8c21f0847f543aa417946682d413640c01b SHA512 
0985c759daef2f08df280b89faf7c3a1b304a4e5b380c68fda2dd36ab480406ecc4e5a9d68e09042f78450ca614726e1b6068ed45342edfe59636d378ccf6e37
 WHIRLPOOL 
0f4a023effcc0151cf5c2c43efca92b3d517ef6a44fb001f2a214eb66da2694443b0d8e7e8c403b15fc6257190a3d6f2bbd73e3cfc101816452b583005eec17e
 DIST simple-scan-3.16.1.tar.xz 487764 SHA256 
f0fdb236336ddaa82390bc4647aa8df0037e8efe87a45ae37e9cb9144c82ee9d SHA512 
15be4a3263cc28e027bc1f868f7894a39faf8f622d2f98a24d84704fae34be8526754a9776a8ab87f63ce34ba53871d76bbb452ee4ac16db9cb9a9b9d8d011d5
 WHIRLPOOL 
f61ee901c77f9f0a380dfa4264c53072cb750fdf3e558e12024bb9872001884cdcc319f5f64ae711e62827d8e34e2a9a38adbe08891dfd9b197df1f49def5367
 DIST simple-scan-3.16.2.tar.xz 487808 SHA256 
1c6727591813e7fd44da932adbae226001ce3a7b8f1a162c9b19d1dc630d7402 SHA512 
5f665698f7c7bad57a41bfbb388c6861839cc56d6d25dbd74ea563d64fab63b6fd798f2b957b46ae69177b7e15963ef8f17d26f2a071bf89b6f1e2b6e7f1a835
 WHIRLPOOL 
098d8f3b16d3bac85e12d3034902df84fa1e3b76a346277114d3f19b5f8fd5a80b84fc1e88b595035cdfa483bdac952128ab20fd16f0f68040455f8afffa74db
+DIST simple-scan-3.18.1.tar.xz 510260 SHA256 
9c0925f702ca1609d61b9a8a508ab4e277349cd1716df69d4730d835cd9067c4 SHA512 
5efb2f8016e66e1d7aebe4bba1d995569b41ee0d35e0de2481366a60215c2306301742f8478c3a9f69bf22eada08441eeaa5d309ba95a13c61285883d6b6
 WHIRLPOOL 
18d9b567a15697263088a492d54ad743d3b983bb14a01fcbb31c5936c01003c385101d71f45028fe23c6024e9a273a369379a11a47ac350b43a0b4c2e1fb6cbe

diff --git a/media-gfx/simple-scan/simple-scan-3.18.1.ebuild 
b/media-gfx/simple-scan/simple-scan-3.18.1.ebuild
new file mode 100644
index 000..84e88de
--- /dev/null
+++ b/media-gfx/simple-scan/simple-scan-3.18.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+
+inherit gnome2 versionator
+
+DESCRIPTION="Simple document scanning utility"
+HOMEPAGE="https://launchpad.net/simple-scan;
+
+MY_PV=$(get_version_component_range 1-2)
+SRC_URI="https://launchpad.net/${PN}/${MY_PV}/${PV}/+download/${P}.tar.xz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+COMMON_DEPEND="
+   dev-libs/libgusb
+   >=dev-libs/glib-2.32:2
+   >=media-gfx/sane-backends-1.0.20:=
+   >=sys-libs/zlib-1.2.3.1:=
+   virtual/jpeg:0=
+   x11-libs/cairo:=
+   >=x11-libs/gtk+-3:3
+   >=x11-misc/colord-0.1.24:=[udev]
+"
+RDEPEND="${COMMON_DEPEND}
+   x11-misc/xdg-utils
+   x11-themes/adwaita-icon-theme
+"
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   >=dev-util/intltool-0.35.0
+   virtual/pkgconfig
+"
+
+src_configure() {
+   DOCS="NEWS README.md"
+   gnome2_src_configure \
+   VALAC=$(type -P true)
+}

diff --git a/profiles/package.mask b/profiles/package.mask
index d088c27..21421f8 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -240,6 +240,11 @@ virtual/python-imaging
 >=dev-cpp/pangomm-2.38.1
 >=dev-cpp/gtkmm-3.18.0
 >=dev-cpp/gtksourceviewmm-3.18.0
+>=app-office/pinpoint-0.1.8
+>=dev-vcs/gitg-3.18.0
+>=gnome-extra/nemo-2.8.4
+>=media-video/cheese-3.18.1
+>=net-libs/libsoup-gnome-2.52.2
 
 # Pacho Ramos  (09 Nov 2015)
 # Not properly installed, dead for ages, upstream



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

2015-11-17 Thread Pacho Ramos
commit: 7cc00ed38e59e6f00f4f122d1ec8e69a72945587
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:45:42 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:45:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc00ed3

media-video/cheese: Version bump

Package-Manager: portage-2.2.24

 media-video/cheese/Manifest |  1 +
 media-video/cheese/cheese-3.18.1.ebuild | 86 +
 2 files changed, 87 insertions(+)

diff --git a/media-video/cheese/Manifest b/media-video/cheese/Manifest
index dee6b3f..d9fc402 100644
--- a/media-video/cheese/Manifest
+++ b/media-video/cheese/Manifest
@@ -1,3 +1,4 @@
 DIST cheese-3.12.2.tar.xz 1777924 SHA256 
a7b45369e75e222e3bd5e9a4408a0e6c230be0c49d359a387d36a42e17e3bc64 SHA512 
4548ac903cc435f8ab5e55fbf684239d9a8da2413448506a1bfd6a387348e9b8b08dc3f292e8eff5bab3491ff079cadcb901f82fd42dadd75b801e154a15cdf3
 WHIRLPOOL 
a8312e428771059cbdc982e458bb119af507e2a667f2af9743cdfe2ed6a25829432e7ea7a5dca27932999b7f3ab1cf16f99a0b31cec8f9094fd9941b85b57dfb
 DIST cheese-3.14.2.tar.xz 1804900 SHA256 
3074a567e0080d7b8fc0512bf3b08c3397e38083cce1767104624288f033a517 SHA512 
cf89baab6858bd2fa100e4dec24067d0bcc49f27632331b99a4f442f235ffca14630af2bf11317cbdc3850202c71bab1920101b9190091c2f0ff9bd4274c0753
 WHIRLPOOL 
7c909d3d991d97b674a0edd48e639e11d1c81eb9b938861c6ff722785f1f9c5b6a74ca79820d6c7bb24ba159154fc402a19248dcadcc1e3aea444b11bc4e
 DIST cheese-3.16.1.tar.xz 1823864 SHA256 
44622f6ad6d8703b22c6d40219ae317959495ccc9994b563b324592933ff90a0 SHA512 
c5af1fb76b53e8f1331f5e30052c05feb6baf1c6e0a3b63c962e99507c83240175b5e1d84817425a34f0f1ebd3c51ea126799873390685f61ae4a7add043
 WHIRLPOOL 
901cd41f7923d456f7f7f78ac248014e9223eba41e3560e3198c160250b9c148bb1c35dd2c22df6560b97c30a2ba278c54dbc626b752100de473561bd1e77785
+DIST cheese-3.18.1.tar.xz 1829408 SHA256 
fc9d8798b1f0c6b35731f063869a32c6910bab6d0386b9ea36386ebda0d57177 SHA512 
37e48f393521b242750d0cbda31537564cd63d2ceb4b3ea6a066c758c8bc9ac632dcbe4ee0ec0b36405c54058ea98ff5744ed087bf928445ffa58fdd2b04d2f7
 WHIRLPOOL 
b996dcfb5f4d3ab72811d7f072dc16d7c0c17109664ce84581659d70786585738b169949f4c9fe2f72df8b48401a30fde96c2557f2a1d888d7bafd38f5de2fef

diff --git a/media-video/cheese/cheese-3.18.1.ebuild 
b/media-video/cheese/cheese-3.18.1.ebuild
new file mode 100644
index 000..e6882c6
--- /dev/null
+++ b/media-video/cheese/cheese-3.18.1.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+VALA_MIN_API_VERSION="0.26"
+
+inherit gnome2 vala virtualx
+
+DESCRIPTION="A cheesy program to take pictures and videos from your webcam"
+HOMEPAGE="https://wiki.gnome.org/Apps/Cheese;
+
+LICENSE="GPL-2+"
+SLOT="0/7" # subslot = libcheese soname version
+IUSE="+introspection test"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
+
+# using clutter-gst-2.0.0 results in GLSL errors; bug #478702
+COMMON_DEPEND="
+   >=dev-libs/glib-2.39.90:2
+   >=x11-libs/gtk+-3.13.4:3[introspection?]
+   >=gnome-base/gnome-desktop-2.91.6:3=
+   >=media-libs/libcanberra-0.26[gtk3]
+   >=media-libs/clutter-1.13.2:1.0[introspection?]
+   >=media-libs/clutter-gtk-0.91.8:1.0
+   media-libs/clutter-gst:3.0
+   media-libs/cogl:1.0=[introspection?]
+
+   media-video/gnome-video-effects
+   x11-libs/gdk-pixbuf:2[jpeg,introspection?]
+   x11-libs/libX11
+   x11-libs/libXtst
+
+   media-libs/gstreamer:1.0[introspection?]
+   
media-libs/gst-plugins-base:1.0[introspection?,ogg,pango,theora,vorbis,X]
+
+   virtual/libgudev:=
+   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   >=media-libs/gst-plugins-bad-1.4:1.0
+   media-libs/gst-plugins-good:1.0
+
+   media-plugins/gst-plugins-jpeg:1.0
+   media-plugins/gst-plugins-v4l2:1.0
+   media-plugins/gst-plugins-vpx:1.0
+"
+DEPEND="${COMMON_DEPEND}
+   $(vala_depend)
+   app-text/docbook-xml-dtd:4.3
+   app-text/yelp-tools
+   dev-libs/appstream-glib
+   dev-libs/libxml2:2
+   dev-util/gdbus-codegen
+   >=dev-util/gtk-doc-am-1.14
+   >=dev-util/intltool-0.50
+   dev-util/itstool
+   virtual/pkgconfig
+   x11-proto/xf86vidmodeproto
+   test? ( dev-libs/glib:2[utils] )
+"
+
+src_prepare() {
+   vala_src_prepare
+   gnome2_src_prepare
+}
+
+src_configure() {
+   gnome2_src_configure \
+   GST_INSPECT=$(type -P true) \
+   $(use_enable introspection) \
+   --disable-lcov \
+   --disable-static
+}
+
+src_compile() {
+   # Clutter-related sandbox violations when USE="doc introspection" and
+   # FEATURES="-userpriv" (see bug #385917).
+   unset DISPLAY
+   gnome2_src_compile
+}
+
+src_test() {
+   Xemake check
+}



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

2015-11-17 Thread Pacho Ramos
commit: 30044abe7da60730f00e41ba0ba38c2a5e82da0d
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:40:56 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:40:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30044abe

media-sound/sound-juicer: Version bump

Package-Manager: portage-2.2.24

 media-sound/sound-juicer/Manifest  |  1 +
 .../sound-juicer/sound-juicer-3.18.1.ebuild| 59 ++
 2 files changed, 60 insertions(+)

diff --git a/media-sound/sound-juicer/Manifest 
b/media-sound/sound-juicer/Manifest
index d349256..e53a78c 100644
--- a/media-sound/sound-juicer/Manifest
+++ b/media-sound/sound-juicer/Manifest
@@ -1,2 +1,3 @@
 DIST sound-juicer-3.16.1.tar.xz 811148 SHA256 
dfb744504a60f8069257584b74d90cba1ce99c744a7106b68627ad1d40b2a657 SHA512 
9d9065942f0bdb2609f03cc561186cfdf67042e986a0f4a0e23835e56c210335f87c351a4d7e44a7dbb3960af19a3e6ba2dc3d1d6c6a5ce62bb27cfc2ea52352
 WHIRLPOOL 
86859d332610f8228660be213495212e89eb09a743214e10229e144858c147c64638c94ff89fef4dffb97477ba8d196e0385e64e3a942fea2e959d14f74c6678
 DIST sound-juicer-3.18.0.tar.xz 817904 SHA256 
0525cfcdf76379d7aa5255fae2cde9e44ad0a24b12ac953d4fbc3dc55dfab048 SHA512 
3a450cf2fd4de7386b9883947085711e7537f50dc493c386257d471fde27beaaabcd4d3756ccc7fdd74a0924c4c4f2c21845a571e15c056256c92ab398bd454d
 WHIRLPOOL 
dd91ac8f5496a3ba7360d10efc2b44b9128b5f4862559de54943a6359d783c3e89035708a41b7f6667e153e60b41572963efe33ace2f7470547f181882ad261e
+DIST sound-juicer-3.18.1.tar.xz 819428 SHA256 
526d5a84d9b6b8f002f82f9d5678e3850c48e3b5692a499451fc5f36eef0de76 SHA512 
00091ab962409c97afee7dec0c8a4135c33203a439584c33f958e883338df9d4bbc8022e9541fcf061ab09bb14844f3d2480deb703709a4d077f0f07788462f2
 WHIRLPOOL 
74cd69c719da6cfec62b04c80e4919d4366c324a518fddcdad45ea2d7bd82c6470c80cbba76b4f79069c9433f97271e9c9ce945c878cfb92556a22ea529228cd

diff --git a/media-sound/sound-juicer/sound-juicer-3.18.1.ebuild 
b/media-sound/sound-juicer/sound-juicer-3.18.1.ebuild
new file mode 100644
index 000..4ef2e3b
--- /dev/null
+++ b/media-sound/sound-juicer/sound-juicer-3.18.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="yes"
+
+inherit gnome2
+
+DESCRIPTION="CD ripper for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/SoundJuicer;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="flac test vorbis"
+
+COMMON_DEPEND="
+   app-text/iso-codes
+   >=dev-libs/glib-2.38:2[dbus]
+   >=x11-libs/gtk+-3.4:3
+   media-libs/libcanberra[gtk3]
+   >=app-cdr/brasero-2.90
+   sys-apps/dbus
+   gnome-base/gsettings-desktop-schemas
+
+   media-libs/libdiscid
+   >=media-libs/musicbrainz-5.0.1:5
+
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0[vorbis?]
+   flac? ( media-plugins/gst-plugins-flac:1.0 )
+"
+RDEPEND="${COMMON_DEPEND}
+   gnome-base/gvfs[cdda,udev]
+   || (
+   media-plugins/gst-plugins-cdparanoia:1.0
+   media-plugins/gst-plugins-cdio:1.0 )
+   media-plugins/gst-plugins-meta:1.0
+"
+DEPEND="${COMMON_DEPEND}
+   dev-libs/appstream-glib
+   >=dev-util/intltool-0.50
+   dev-util/itstool
+   virtual/pkgconfig
+   test? ( ~app-text/docbook-xml-dtd-4.3 )
+"
+# eautoreconf needs gnome-common
+
+src_prepare() {
+   gnome2_src_prepare
+
+   # FIXME: gst macros does not take GST_INSPECT override anymore but we 
need a
+   # way to disable inspection due to gst-clutter always creating a GL 
context
+   # which is forbidden in sandbox since it needs write access to
+   # /dev/card*/dri
+   sed -e "s|\(gstinspect=\).*|\1$(type -P true)|" \
+   -i configure || die
+}



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

2015-11-17 Thread Pacho Ramos
commit: 90bf9f35d203cf6f15271538d600db77bca3ede7
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:38:19 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:38:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90bf9f35

media-sound/gnome-music: Version bump

Package-Manager: portage-2.2.24

 media-sound/gnome-music/Manifest  |  1 +
 media-sound/gnome-music/gnome-music-3.18.2.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/media-sound/gnome-music/Manifest b/media-sound/gnome-music/Manifest
index 872f59d..bb08c8e 100644
--- a/media-sound/gnome-music/Manifest
+++ b/media-sound/gnome-music/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-music-3.16.2.tar.xz 1479984 SHA256 
362cf90f6cd41c38845b7afa01ce2f5fbb70ce7694139a69f5dac16620723588 SHA512 
c634a72f5c539e7e0792f780dcced1b48c56a0467182ab60506d3d22d1b7b7ff030b79f440ea874b8fca5b084bc121668cd5f03f2eb3ffbd82b7fa810a2885d2
 WHIRLPOOL 
e576f033d1194ea7b9232d420a3e5e4a895ce6836f0e4d592579ea0baeab2b3113f9cf3eafa2f17922ad14c2f45e9b79f07291664ab7404000d74d421bf0c9b4
 DIST gnome-music-3.18.0.tar.xz 1534760 SHA256 
e2e4b99a57c7b5c83ce3deccd38880cbafb875b423ab276204af523bc648d69c SHA512 
4a87cce71b7ca3dc0aa7e4e64a7d427297fbb08d300e18444bc4acbf637c4c23e34f130c5d72c80e8b052d452b3b962066ee7d3df6f20686f3202a025a5173da
 WHIRLPOOL 
379f6402752f1e73b4ed30db6c854dfd657b63b29b0f02dacf776a058428a9a5e2a0ad454d86abc644f2bcac1e0164d84a6cf3b2bc7e2d7df2e6a966e1a950b3
+DIST gnome-music-3.18.2.tar.xz 14110 SHA256 
5e91d2a8f5935ec87192878dae0ab46886dc010e9a368e3d420e8c6961e1625e SHA512 
74e50aef97ba18494322273aea9253cbcbee8a77dfc804cb1e58be78ece0f6d655609a9b02f5a1d1322deadea4fa4fb259801d76dbbe17815c8fbbfb41fa700a
 WHIRLPOOL 
6b5c9f32d0fdc104e3f966d43485b9d939baca3fc9a9a1167ffb98791cbb0e29d50e231ca4fc4e90f6c9728f7cf6f73bcbd2a3eae036755a000e9a8215bcc105

diff --git a/media-sound/gnome-music/gnome-music-3.18.2.ebuild 
b/media-sound/gnome-music/gnome-music-3.18.2.ebuild
new file mode 100644
index 000..601462f
--- /dev/null
+++ b/media-sound/gnome-music/gnome-music-3.18.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+PYTHON_COMPAT=( python{3_3,3_4,3_5} )
+
+inherit gnome2 python-r1
+
+DESCRIPTION="Music management for Gnome"
+HOMEPAGE="https://wiki.gnome.org/Apps/Music;
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+KEYWORDS="~amd64 ~x86"
+
+COMMON_DEPEND="
+   ${PYTHON_DEPS}
+   >=dev-libs/glib-2.28:2
+   >=dev-libs/gobject-introspection-1.35.9:=
+   >=media-libs/grilo-0.2.6:0.2[introspection]
+   media-libs/libmediaart:2.0
+   >=x11-libs/gtk+-3.13.2:3[introspection]
+"
+# xdg-user-dirs-update needs to be there to create needed dirs
+# https://bugzilla.gnome.org/show_bug.cgi?id=731613
+RDEPEND="${COMMON_DEPEND}
+   app-misc/tracker[introspection(+)]
+   || (
+   app-misc/tracker[gstreamer]
+   app-misc/tracker[ffmpeg]
+   )
+   dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   media-libs/gstreamer:1.0[introspection]
+   media-libs/gst-plugins-base:1.0[introspection]
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/grilo-plugins:0.2[tracker]
+   x11-misc/xdg-user-dirs
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-util/intltool-0.26
+   dev-util/itstool
+   virtual/pkgconfig
+"
+
+pkg_setup() {
+   python_setup
+}



[gentoo-commits] repo/gentoo:master commit in: x11-wm/muffin/

2015-11-17 Thread Pacho Ramos
commit: cfbc4bb610a07d90eed09b94205984362ae877a2
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 20:19:39 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 20:19:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfbc4bb6

x11-wm/muffin: Version bump

Package-Manager: portage-2.2.24

 x11-wm/muffin/Manifest|  1 +
 x11-wm/muffin/muffin-2.8.3.ebuild | 87 +++
 2 files changed, 88 insertions(+)

diff --git a/x11-wm/muffin/Manifest b/x11-wm/muffin/Manifest
index 3cee989..a110c74 100644
--- a/x11-wm/muffin/Manifest
+++ b/x11-wm/muffin/Manifest
@@ -1,2 +1,3 @@
 DIST muffin-2.6.1.tar.gz 2702177 SHA256 
0772ad6caace2f4570e7d3a0cbc8a6ef5f65be92c6a30cc95a59ed8bba6b5f74 SHA512 
530e4bdabb780a16ddad237ab7aa1c2dbb688f6d1380dd0d18fa91b62675d36a2253415899d59957b7f34291c348b8a0e1a99214c3151c2fc2bc1d90f068d788
 WHIRLPOOL 
d6832ac81051845432b21f66ff74499213f57dc66bea7d61f0a30c3a0aec54846911447451b8b54ccb0678ed00dfad90ce9cef9b2f2492d44e7c35adad2c5a24
 DIST muffin-2.8.2.tar.gz 2714407 SHA256 
c611fe100ea79046e9e271dc651f10995d5f552dbaf896fba6d130c9a8345369 SHA512 
70bbc7ccf6a1ff744b8b21729232f149e7413a1a970d0d98055fec47ec8b942af86df7a63fb45027c3f1b091002f543399dfd072efcd3bf88d754be5653d2cf5
 WHIRLPOOL 
3ad79fdf4f2c2b786e27dd3be69c4454b3c81f99f0638739f0c8bf737e5d17f7c371e122343c3847757f671bb6d839f6b49480714e1fcf778840c489d36b232e
+DIST muffin-2.8.3.tar.gz 2714820 SHA256 
1eb36a91491f2d0beb346aa78dff7ec0bc1bf936b730c6fb18f9ca4e3e5fd93d SHA512 
f026a9f4a5a48e5f969cf0e0d2d71af2d463c88f34d3172da00e8d56912db15467619b8f8d09d2708731d56ee05ebce6457bf84a80910575e7c386e00b462c94
 WHIRLPOOL 
a32534e9c98284265233e337c0e4943d411a703765c1073798bcd41fe52ee2c44153b0170e6c0d3ae7fc62febd4722da7991b24339797cadf5615b87d42dce46

diff --git a/x11-wm/muffin/muffin-2.8.3.ebuild 
b/x11-wm/muffin/muffin-2.8.3.ebuild
new file mode 100644
index 000..01f7091
--- /dev/null
+++ b/x11-wm/muffin/muffin-2.8.3.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools eutils gnome2 python-any-r1
+
+DESCRIPTION="Compositing window manager forked from Mutter for use with 
Cinnamon"
+HOMEPAGE="http://cinnamon.linuxmint.com/;
+SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="+introspection test xinerama"
+KEYWORDS="~amd64 ~x86"
+
+COMMON_DEPEND="
+   >=x11-libs/pango-1.2[X,introspection?]
+   >=x11-libs/cairo-1.14:=[X]
+   x11-libs/gdk-pixbuf:2[introspection?]
+   >=x11-libs/gtk+-3.9.12:3[X,introspection?]
+   >=dev-libs/glib-2.37.3:2[dbus]
+   >=gnome-extra/cinnamon-desktop-2.4:0=[introspection?]
+   >=gnome-base/gsettings-desktop-schemas-3.3.0[introspection?]
+   >=media-libs/clutter-1.14.3:1.0=[introspection?]
+   >=media-libs/cogl-1.13.3:1.0=[introspection?]
+   >=media-libs/libcanberra-0.26[gtk3]
+   >=x11-libs/libXcomposite-0.3
+   >=x11-libs/startup-notification-0.7:=
+
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   virtual/opengl
+
+   gnome-extra/zenity
+
+   introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
+   xinerama? ( x11-libs/libXinerama )
+"
+# needs gtk-doc, not just -am, for gtk-doc.make
+DEPEND="${COMMON_DEPEND}
+   ${PYTHON_DEPS}
+   >=app-text/gnome-doc-utils-0.8
+   sys-devel/gettext
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   >=dev-util/intltool-0.35
+   virtual/pkgconfig
+   test? ( app-text/docbook-xml-dtd:4.5 )
+   xinerama? ( x11-proto/xineramaproto )
+   x11-proto/xextproto
+   x11-proto/xproto
+"
+RDEPEND="${COMMON_DEPEND}
+   !x11-misc/expocity
+"
+
+src_prepare() {
+   epatch_user
+   eautoreconf
+   gnome2_src_prepare
+}
+
+src_configure() {
+   DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* *.txt 
doc/*.txt"
+   gnome2_src_configure \
+   --disable-static \
+   --enable-shape \
+   --enable-sm \
+   --enable-startup-notification \
+   --enable-xsync \
+   --enable-verbose-mode \
+   --with-libcanberra \
+   $(use_enable introspection) \
+   $(use_enable xinerama)
+}



[gentoo-commits] repo/gentoo:master commit in: x11-wm/muffin/

2015-11-17 Thread Pacho Ramos
commit: 09d8cf86ebdb64f8357d6525868b6d3cba1affb2
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 20:20:36 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 20:20:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d8cf86

x11-wm/muffin: Drop old

Package-Manager: portage-2.2.24

 x11-wm/muffin/Manifest|  1 -
 x11-wm/muffin/muffin-2.8.2.ebuild | 87 ---
 2 files changed, 88 deletions(-)

diff --git a/x11-wm/muffin/Manifest b/x11-wm/muffin/Manifest
index a110c74..723998f 100644
--- a/x11-wm/muffin/Manifest
+++ b/x11-wm/muffin/Manifest
@@ -1,3 +1,2 @@
 DIST muffin-2.6.1.tar.gz 2702177 SHA256 
0772ad6caace2f4570e7d3a0cbc8a6ef5f65be92c6a30cc95a59ed8bba6b5f74 SHA512 
530e4bdabb780a16ddad237ab7aa1c2dbb688f6d1380dd0d18fa91b62675d36a2253415899d59957b7f34291c348b8a0e1a99214c3151c2fc2bc1d90f068d788
 WHIRLPOOL 
d6832ac81051845432b21f66ff74499213f57dc66bea7d61f0a30c3a0aec54846911447451b8b54ccb0678ed00dfad90ce9cef9b2f2492d44e7c35adad2c5a24
-DIST muffin-2.8.2.tar.gz 2714407 SHA256 
c611fe100ea79046e9e271dc651f10995d5f552dbaf896fba6d130c9a8345369 SHA512 
70bbc7ccf6a1ff744b8b21729232f149e7413a1a970d0d98055fec47ec8b942af86df7a63fb45027c3f1b091002f543399dfd072efcd3bf88d754be5653d2cf5
 WHIRLPOOL 
3ad79fdf4f2c2b786e27dd3be69c4454b3c81f99f0638739f0c8bf737e5d17f7c371e122343c3847757f671bb6d839f6b49480714e1fcf778840c489d36b232e
 DIST muffin-2.8.3.tar.gz 2714820 SHA256 
1eb36a91491f2d0beb346aa78dff7ec0bc1bf936b730c6fb18f9ca4e3e5fd93d SHA512 
f026a9f4a5a48e5f969cf0e0d2d71af2d463c88f34d3172da00e8d56912db15467619b8f8d09d2708731d56ee05ebce6457bf84a80910575e7c386e00b462c94
 WHIRLPOOL 
a32534e9c98284265233e337c0e4943d411a703765c1073798bcd41fe52ee2c44153b0170e6c0d3ae7fc62febd4722da7991b24339797cadf5615b87d42dce46

diff --git a/x11-wm/muffin/muffin-2.8.2.ebuild 
b/x11-wm/muffin/muffin-2.8.2.ebuild
deleted file mode 100644
index 01f7091..000
--- a/x11-wm/muffin/muffin-2.8.2.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools eutils gnome2 python-any-r1
-
-DESCRIPTION="Compositing window manager forked from Mutter for use with 
Cinnamon"
-HOMEPAGE="http://cinnamon.linuxmint.com/;
-SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="+introspection test xinerama"
-KEYWORDS="~amd64 ~x86"
-
-COMMON_DEPEND="
-   >=x11-libs/pango-1.2[X,introspection?]
-   >=x11-libs/cairo-1.14:=[X]
-   x11-libs/gdk-pixbuf:2[introspection?]
-   >=x11-libs/gtk+-3.9.12:3[X,introspection?]
-   >=dev-libs/glib-2.37.3:2[dbus]
-   >=gnome-extra/cinnamon-desktop-2.4:0=[introspection?]
-   >=gnome-base/gsettings-desktop-schemas-3.3.0[introspection?]
-   >=media-libs/clutter-1.14.3:1.0=[introspection?]
-   >=media-libs/cogl-1.13.3:1.0=[introspection?]
-   >=media-libs/libcanberra-0.26[gtk3]
-   >=x11-libs/libXcomposite-0.3
-   >=x11-libs/startup-notification-0.7:=
-
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   virtual/opengl
-
-   gnome-extra/zenity
-
-   introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
-   xinerama? ( x11-libs/libXinerama )
-"
-# needs gtk-doc, not just -am, for gtk-doc.make
-DEPEND="${COMMON_DEPEND}
-   ${PYTHON_DEPS}
-   >=app-text/gnome-doc-utils-0.8
-   sys-devel/gettext
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.35
-   virtual/pkgconfig
-   test? ( app-text/docbook-xml-dtd:4.5 )
-   xinerama? ( x11-proto/xineramaproto )
-   x11-proto/xextproto
-   x11-proto/xproto
-"
-RDEPEND="${COMMON_DEPEND}
-   !x11-misc/expocity
-"
-
-src_prepare() {
-   epatch_user
-   eautoreconf
-   gnome2_src_prepare
-}
-
-src_configure() {
-   DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* *.txt 
doc/*.txt"
-   gnome2_src_configure \
-   --disable-static \
-   --enable-shape \
-   --enable-sm \
-   --enable-startup-notification \
-   --enable-xsync \
-   --enable-verbose-mode \
-   --with-libcanberra \
-   $(use_enable introspection) \
-   $(use_enable xinerama)
-}



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

2015-11-17 Thread Pacho Ramos
commit: e560b7c27eca3aa2e56b17f0c29ce9d9f44d100c
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:47:32 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:47:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e560b7c2

media-video/cheese: Fix keywording on alpha and sparc

Package-Manager: portage-2.2.24

 media-video/cheese/cheese-3.16.1.ebuild | 2 +-
 media-video/cheese/cheese-3.18.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/cheese/cheese-3.16.1.ebuild 
b/media-video/cheese/cheese-3.16.1.ebuild
index 027a716..4127212 100644
--- a/media-video/cheese/cheese-3.16.1.ebuild
+++ b/media-video/cheese/cheese-3.16.1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Cheese;
 LICENSE="GPL-2+"
 SLOT="0/7" # subslot = libcheese soname version
 IUSE="+introspection test"
-KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 # using clutter-gst-2.0.0 results in GLSL errors; bug #478702
 COMMON_DEPEND="

diff --git a/media-video/cheese/cheese-3.18.1.ebuild 
b/media-video/cheese/cheese-3.18.1.ebuild
index e6882c6..5a9424f 100644
--- a/media-video/cheese/cheese-3.18.1.ebuild
+++ b/media-video/cheese/cheese-3.18.1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Cheese;
 LICENSE="GPL-2+"
 SLOT="0/7" # subslot = libcheese soname version
 IUSE="+introspection test"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 # using clutter-gst-2.0.0 results in GLSL errors; bug #478702
 COMMON_DEPEND="



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

2015-11-17 Thread Pacho Ramos
commit: 65816b24c6820580ca451fcffa82407cc1a67984
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:12:53 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:12:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65816b24

gnome-extra/cinnamon-translations: Drop old

Package-Manager: portage-2.2.24

 gnome-extra/cinnamon-translations/Manifest |  1 -
 .../cinnamon-translations-2.8.1.ebuild | 39 --
 2 files changed, 40 deletions(-)

diff --git a/gnome-extra/cinnamon-translations/Manifest 
b/gnome-extra/cinnamon-translations/Manifest
index 37bc395..4d55e9f 100644
--- a/gnome-extra/cinnamon-translations/Manifest
+++ b/gnome-extra/cinnamon-translations/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-translations-2.6.3.tar.gz 7371754 SHA256 
3b86b3f16e3afb9dff31506b431c95251d87b9390c5d2290c5896331b2ec91fe SHA512 
097960f2e4aaba2e6cbf09488799c987ca4939cad3fe2c0af7b659b05826e03ecc490ad885de1f296f3ff2cd6d95a5908e8223c29fc7b7b7ffee8e34003824dd
 WHIRLPOOL 
6264607dc2c937086494c784c5df74de5534d77ba5ce005998c267c6146bbeea21b283e601d77c6ebc1642f4e38f5ac0099e0739d9a3cd61f1fa71dc00490696
-DIST cinnamon-translations-2.8.1.tar.gz 7639040 SHA256 
48431b300fd46552d71d009e3fad84c76d4f0d0cc6db9ec7241aed95f8bb5f98 SHA512 
d02d035e325e6549c7c8e303427adedbdbcca2c73a6d27e14a872bf13725820acbc20978256e0a138e157288e2ddb371641ddf49633c38dec92d2863370bef29
 WHIRLPOOL 
bdcf682ab8d85b460b82c379a8681efd5ee2db6e3e3dd6abaab7b2908f7ccffa14845a92fb7b373f5eed493eeec3ac13350f7f9007d46fdeebdfc3eac09c5462
 DIST cinnamon-translations-2.8.2.tar.gz 7667573 SHA256 
062f8d76d448500aea175889b68fdc00b582b957a972e7dd1e05f34bc9ed4c7f SHA512 
67aa5fe96a914bd46b7231c16ebd17d4278f4f4bd823263d1d9bf70672ec309ce5928a9c83e82348b5183d7c992f89af22dccde85a90f4c8e4d6899e76e1afd6
 WHIRLPOOL 
369db619207a4f2f18e1d6d20d75aba79ad8b73e14ac8c8c23e28660ea7705f91df6589c35aaa384c807d4b8d6363ac4c840aa27b6afcec501538be617b2356d

diff --git 
a/gnome-extra/cinnamon-translations/cinnamon-translations-2.8.1.ebuild 
b/gnome-extra/cinnamon-translations/cinnamon-translations-2.8.1.ebuild
deleted file mode 100644
index 7cbeac1..000
--- a/gnome-extra/cinnamon-translations/cinnamon-translations-2.8.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PLOCALES="af am an ar as ast az be be@latin bg bn bn_IN br bs ca ca@valencia 
crh cs csb cy da de dz el en@shaw en_AU en_CA en_GB eo es es_AR et eu fa fi fil 
fo fr fr_CA frp fy ga gd gl gu he hi hr hu hy ia id is it ja jv ka kk km kn ko 
ksw ku ky la li lo lt lv mai mg mk ml mn mr ms my nb nds ne nl nn nso oc om or 
pa pl ps pt pt_BR ro ru rue rw sco shn si sk sl so sq sr sr@ijekavianlatin 
sr@latin sv sw ta te tg th tl tlh tpi tr ts ug uk ur uz uz@cyrillic vi wa xh yi 
zh_CN zh_HK zh_TW zu"
-
-inherit eutils l10n
-
-DESCRIPTION="Translation data for Cinnamon"
-HOMEPAGE="http://cinnamon.linuxmint.com/;
-SRC_URI="https://github.com/linuxmint/cinnamon-translations/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-RESTRICT="test" # tests are for upstream translators and need network access
-
-src_prepare() {
-   epatch_user
-}
-
-src_configure() { :; }
-
-src_install() {
-   # Cannot run before since locales are not in the expected place for 
this to work
-   l10n_find_plocales_changes "${S}"/usr/share/locale "" ""
-
-   install_locale() {
-   dodir /usr/share/locale
-   insinto /usr/share/locale
-   doins -r usr/share/locale/${1}
-   }
-   l10n_for_each_locale_do install_locale
-}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/gtk+/

2015-11-17 Thread Pacho Ramos
commit: 2a048cc45abd082bc47c11467d4c71abebf72337
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 20:16:16 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 20:16:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a048cc4

x11-libs/gtk+: Drop old

Package-Manager: portage-2.2.24

 x11-libs/gtk+/Manifest   |   1 -
 x11-libs/gtk+/gtk+-3.18.4.ebuild | 244 ---
 2 files changed, 245 deletions(-)

diff --git a/x11-libs/gtk+/Manifest b/x11-libs/gtk+/Manifest
index adc2d8c..078cc5b 100644
--- a/x11-libs/gtk+/Manifest
+++ b/x11-libs/gtk+/Manifest
@@ -4,5 +4,4 @@ DIST gtk+-2.24.28.tar.xz 13354884 SHA256 
b2c6441e98bc5232e5f9bba6965075dcf580a87
 DIST gtk+-3.14.13.tar.xz 15784112 SHA256 
b1efcb1ef299f9b205e6f4512428315fd03484e5790f65bd3ac164e84ade90b0 SHA512 
e4fcca57fe58821832ee0b542d86033a1028c19e2248929e25a8c16ef05603a93815556591bcc025995bfab1238ad4060fcdf4920ec2df22ab3175b404f3a207
 WHIRLPOOL 
36a77983701da6041f0762013638303d323a42487a6f6508e92dfa0571f8f13b8598a8187e9665e6eeb62e41b7c2533a1fe9d2b68f097e85599d373969d52da0
 DIST gtk+-3.16.6.tar.xz 18273872 SHA256 
4d12726d0856a968b41802ae5c5971d7e9bac532717e309d3f81b9989da5ffbe SHA512 
0b3417c57ef755c8eb498b6800cd9e1dc1df01d508425c968944aaa0d7ff50f25a00370f9a6ccf23a87cc9f7fb251447e63055149264b997ee5a681e98dc54ec
 WHIRLPOOL 
f944cce4396d2519d357ef75f1e9d420b64d77004110f0e7d2eb643ae5b3f8182db5be28e35269a57ecfe9cbc3280dc65008c30ce1c977d64d0fbb317e6f6bce
 DIST gtk+-3.16.7.tar.xz 18294656 SHA256 
19689d14de54d182fad538153dbff6d41f53841f940aa871585fdea0306c7fba SHA512 
8f74b3a4093ecf776466d3988806fdae081d10d5e74c66770b52f624076afe92d58efb68ace47fd0dbc5a170a577fc9a8d1b4768794aa4249433c95198db00c8
 WHIRLPOOL 
f8b4d9fa6b7b3ed9702f76d28d729b745217e072898239517d320f0635e87691ca874a136607566cf53d73aead53833c5ecf484fc7aea74f3c26a1f14cc5a9b4
-DIST gtk+-3.18.4.tar.xz 18912812 SHA256 
5400dcf280d28d24606f33d59ed48c717f7d3db425d4b6fb52e8002f0c76c7eb SHA512 
ce0bd9d1a6739ed366e345cc3eda308e54fb0e092b237b7329efea3c0ee3e83c79294b38a9d158783ece406287a5baa28f713fab25ba3532f1127d0af40f0b2b
 WHIRLPOOL 
e8b0336b889e35fbc25c974a74731478f902f0ccd088a09a8c666072dd5704c8b5ff00b0901e4b1b3f2a539bb69e9b3396367f05acdbca0fa6be84c959fa0aee
 DIST gtk+-3.18.5.tar.xz 18912848 SHA256 
107aeb9a4244ce3c044becdd6dffc32d83202595181597180d4c736302a71852 SHA512 
5e12cab632bb250ec12dae9a146c4bbc9403d22f8f5888a6566588a5255489d7a1b2090c37ddbb464684cb56829f05ffa177d20be6ee22f3683a04dec2894c2a
 WHIRLPOOL 
5a7a78cd432879250ffb3cc2a3df7a9ddb07503fb851e2361d3292c86a3c02fb57c0ac587fd113158d2cb377c6d79b3ac39ab1b52cbc5d19f0d0365938f3b60f

diff --git a/x11-libs/gtk+/gtk+-3.18.4.ebuild b/x11-libs/gtk+/gtk+-3.18.4.ebuild
deleted file mode 100644
index 0e6b013..000
--- a/x11-libs/gtk+/gtk+-3.18.4.ebuild
+++ /dev/null
@@ -1,244 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes"
-
-inherit autotools eutils flag-o-matic gnome2 multilib virtualx multilib-minimal
-
-DESCRIPTION="Gimp ToolKit +"
-HOMEPAGE="http://www.gtk.org/;
-
-LICENSE="LGPL-2+"
-SLOT="3"
-IUSE="aqua broadway cloudprint colord cups examples +introspection test 
vim-syntax wayland X xinerama"
-REQUIRED_USE="
-   || ( aqua wayland X )
-   xinerama? ( X )
-"
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
-
-# FIXME: introspection data is built against system installation of gtk+:3
-# NOTE: cairo[svg] dep is due to bug 291283 (not patched to avoid eautoreconf)
-COMMON_DEPEND="
-   >=dev-libs/atk-2.15[introspection?,${MULTILIB_USEDEP}]
-   >=dev-libs/glib-2.45.8:2[${MULTILIB_USEDEP}]
-   media-libs/fontconfig[${MULTILIB_USEDEP}]
-   >=media-libs/libepoxy-1.0[${MULTILIB_USEDEP}]
-   >=x11-libs/cairo-1.14[aqua?,glib,svg,X?,${MULTILIB_USEDEP}]
-   >=x11-libs/gdk-pixbuf-2.30:2[introspection?,X?,${MULTILIB_USEDEP}]
-   >=x11-libs/pango-1.37.3[introspection?,${MULTILIB_USEDEP}]
-   x11-misc/shared-mime-info
-
-   cloudprint? (
-   >=net-libs/rest-0.7[${MULTILIB_USEDEP}]
-   >=dev-libs/json-glib-1.0[${MULTILIB_USEDEP}] )
-   colord? ( >=x11-misc/colord-0.1.9:0=[${MULTILIB_USEDEP}] )
-   cups? ( >=net-print/cups-1.2[${MULTILIB_USEDEP}] )
-   introspection? ( >=dev-libs/gobject-introspection-1.39:= )
-   wayland? (
-   >=dev-libs/wayland-1.5.91[${MULTILIB_USEDEP}]
-   media-libs/mesa[wayland,${MULTILIB_USEDEP}]
-   >=x11-libs/libxkbcommon-0.2[${MULTILIB_USEDEP}]
-   )
-   X? (
-   >=app-accessibility/at-spi2-atk-2.5.3[${MULTILIB_USEDEP}]
-   x11-libs/libXrender[${MULTILIB_USEDEP}]
-

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

2015-11-17 Thread Pacho Ramos
commit: 492071ccc426c92072888d50d3daea08353fb350
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:12:40 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:12:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=492071cc

gnome-extra/cinnamon-translations: Version bump

Package-Manager: portage-2.2.24

 gnome-extra/cinnamon-translations/Manifest |  1 +
 .../cinnamon-translations-2.8.2.ebuild | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/gnome-extra/cinnamon-translations/Manifest 
b/gnome-extra/cinnamon-translations/Manifest
index 764375a..37bc395 100644
--- a/gnome-extra/cinnamon-translations/Manifest
+++ b/gnome-extra/cinnamon-translations/Manifest
@@ -1,2 +1,3 @@
 DIST cinnamon-translations-2.6.3.tar.gz 7371754 SHA256 
3b86b3f16e3afb9dff31506b431c95251d87b9390c5d2290c5896331b2ec91fe SHA512 
097960f2e4aaba2e6cbf09488799c987ca4939cad3fe2c0af7b659b05826e03ecc490ad885de1f296f3ff2cd6d95a5908e8223c29fc7b7b7ffee8e34003824dd
 WHIRLPOOL 
6264607dc2c937086494c784c5df74de5534d77ba5ce005998c267c6146bbeea21b283e601d77c6ebc1642f4e38f5ac0099e0739d9a3cd61f1fa71dc00490696
 DIST cinnamon-translations-2.8.1.tar.gz 7639040 SHA256 
48431b300fd46552d71d009e3fad84c76d4f0d0cc6db9ec7241aed95f8bb5f98 SHA512 
d02d035e325e6549c7c8e303427adedbdbcca2c73a6d27e14a872bf13725820acbc20978256e0a138e157288e2ddb371641ddf49633c38dec92d2863370bef29
 WHIRLPOOL 
bdcf682ab8d85b460b82c379a8681efd5ee2db6e3e3dd6abaab7b2908f7ccffa14845a92fb7b373f5eed493eeec3ac13350f7f9007d46fdeebdfc3eac09c5462
+DIST cinnamon-translations-2.8.2.tar.gz 7667573 SHA256 
062f8d76d448500aea175889b68fdc00b582b957a972e7dd1e05f34bc9ed4c7f SHA512 
67aa5fe96a914bd46b7231c16ebd17d4278f4f4bd823263d1d9bf70672ec309ce5928a9c83e82348b5183d7c992f89af22dccde85a90f4c8e4d6899e76e1afd6
 WHIRLPOOL 
369db619207a4f2f18e1d6d20d75aba79ad8b73e14ac8c8c23e28660ea7705f91df6589c35aaa384c807d4b8d6363ac4c840aa27b6afcec501538be617b2356d

diff --git 
a/gnome-extra/cinnamon-translations/cinnamon-translations-2.8.2.ebuild 
b/gnome-extra/cinnamon-translations/cinnamon-translations-2.8.2.ebuild
new file mode 100644
index 000..7cbeac1
--- /dev/null
+++ b/gnome-extra/cinnamon-translations/cinnamon-translations-2.8.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PLOCALES="af am an ar as ast az be be@latin bg bn bn_IN br bs ca ca@valencia 
crh cs csb cy da de dz el en@shaw en_AU en_CA en_GB eo es es_AR et eu fa fi fil 
fo fr fr_CA frp fy ga gd gl gu he hi hr hu hy ia id is it ja jv ka kk km kn ko 
ksw ku ky la li lo lt lv mai mg mk ml mn mr ms my nb nds ne nl nn nso oc om or 
pa pl ps pt pt_BR ro ru rue rw sco shn si sk sl so sq sr sr@ijekavianlatin 
sr@latin sv sw ta te tg th tl tlh tpi tr ts ug uk ur uz uz@cyrillic vi wa xh yi 
zh_CN zh_HK zh_TW zu"
+
+inherit eutils l10n
+
+DESCRIPTION="Translation data for Cinnamon"
+HOMEPAGE="http://cinnamon.linuxmint.com/;
+SRC_URI="https://github.com/linuxmint/cinnamon-translations/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+RESTRICT="test" # tests are for upstream translators and need network access
+
+src_prepare() {
+   epatch_user
+}
+
+src_configure() { :; }
+
+src_install() {
+   # Cannot run before since locales are not in the expected place for 
this to work
+   l10n_find_plocales_changes "${S}"/usr/share/locale "" ""
+
+   install_locale() {
+   dodir /usr/share/locale
+   insinto /usr/share/locale
+   doins -r usr/share/locale/${1}
+   }
+   l10n_for_each_locale_do install_locale
+}



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

2015-11-17 Thread Pacho Ramos
commit: f7a8430b87081c2f6479da3adfc6996066b8c6f2
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:36:39 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:36:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7a8430b

media-libs/harfbuzz: Drop old

Package-Manager: portage-2.2.24

 media-libs/harfbuzz/Manifest   |  2 -
 media-libs/harfbuzz/harfbuzz-0.9.38.ebuild | 95 --
 media-libs/harfbuzz/harfbuzz-0.9.40.ebuild | 95 --
 3 files changed, 192 deletions(-)

diff --git a/media-libs/harfbuzz/Manifest b/media-libs/harfbuzz/Manifest
index 93271ba..95c4c1b 100644
--- a/media-libs/harfbuzz/Manifest
+++ b/media-libs/harfbuzz/Manifest
@@ -1,4 +1,2 @@
-DIST harfbuzz-0.9.38.tar.bz2 1177106 SHA256 
6736f383b4edfcaaeb6f3292302ca382d617d8c79948bb2dd2e8f86cdccfd514 SHA512 
7638853a33bafa139d3a87b2733e89d19239c2ef13afcd1bb0dac3a0f95f786caaaf327560c1714d502ee0adcc2bb068ee6095e81b501a66f8c7559394f1458e
 WHIRLPOOL 
79278d7db00a401af036f35bb90d7dd058b99bc13095f5ba4dac97e68372b51b8192dc0538667ff67b13e39c97318df8351c9c5f5482cc1af7c3bc6764cd534e
-DIST harfbuzz-0.9.40.tar.bz2 1182989 SHA256 
1771d53583be6d91ca961854b2a24fb239ef0545eed221ae3349abae0ab8321f SHA512 
9dcc8f5790b78efa14d328e48c68d97f44fce8658fdad9f6d46a79feb715a57903064087d2aef6cea84904936c27c623583b4c67d0e21511a4b82a9213d86eff
 WHIRLPOOL 
4b450d4a1a02bb846de582f84a63483182d3b2f071e54abd2a58b2b9d88c25eb7b880a961584ad087bee8c1eae2789446a9da29634f22467f00d72e7b90eb0d2
 DIST harfbuzz-0.9.41.tar.bz2 1188176 SHA256 
d81aa53d0c02b437beeaac159d7fc16394d676bbce0860fb6f6a10b587dc057c SHA512 
821b2fbd0d668c90e9e0040f60b7cfd8d35954d218045cebfb5e9c6ba29aba4230d0cd8e951697c26afcc4da447177fe967fa323449499fa710b52dd7e1a7011
 WHIRLPOOL 
84ba899d8fbc27b19d255d3c40e2d1f92c8c0dcc0a764b5c83c8c470af4902891f954d11aa64b6eb69aac0e8cf55c36ee9babff0a9260fc9f6286ce48330accb
 DIST harfbuzz-1.0.6.tar.bz2 1240522 SHA256 
f616a7fbdc78a627043f9029000bf08c0c71df59cde4143fc92a014f6a993b26 SHA512 
20ee169389a784e4ad4e2ff006a59a36879dba0a37a999ff51c2b4d76da9496a1a747d5176e9611998187452e6d18f880295bdfb9f45338acddf772fc3f16021
 WHIRLPOOL 
63eab91311674417b66fa92e0b92a5482321dfa8dc48edcc3ae1ed459483222ab08229438356245cc183234a65388fbb6bdb73222359dea0ec2a35a1bf141c78

diff --git a/media-libs/harfbuzz/harfbuzz-0.9.38.ebuild 
b/media-libs/harfbuzz/harfbuzz-0.9.38.ebuild
deleted file mode 100644
index 2cae812..000
--- a/media-libs/harfbuzz/harfbuzz-0.9.38.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-EGIT_REPO_URI="git://anongit.freedesktop.org/harfbuzz"
-[[ ${PV} ==  ]] && inherit git-r3 autotools
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils libtool multilib-minimal python-any-r1
-
-DESCRIPTION="An OpenType text shaping engine"
-HOMEPAGE="http://www.freedesktop.org/wiki/Software/HarfBuzz;
-[[ ${PV} ==  ]] || 
SRC_URI="http://www.freedesktop.org/software/${PN}/release/${P}.tar.bz2;
-
-LICENSE="Old-MIT ISC icu"
-SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416
-[[ ${PV} ==  ]] || \
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos 
~x64-solaris"
-IUSE="+cairo +glib +graphite icu +introspection static-libs test +truetype"
-REQUIRED_USE="introspection? ( glib )"
-
-RDEPEND="
-   cairo? ( x11-libs/cairo:= )
-   glib? ( >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] )
-   graphite? ( >=media-gfx/graphite2-1.2.1:=[${MULTILIB_USEDEP}] )
-   icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] )
-   introspection? ( >=dev-libs/gobject-introspection-1.34 )
-   truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   dev-util/gtk-doc-am
-   virtual/pkgconfig
-   test? ( ${PYTHON_DEPS} )
-"
-# eautoreconf requires gobject-introspection-common
-# ragel needed if regenerating *.hh files from *.rl
-[[ ${PV} =  ]] && DEPEND="${DEPEND}
-   >=dev-libs/gobject-introspection-common-1.34
-   dev-util/ragel
-"
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   if [[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] ; then
-   # on Darwin/Solaris we need to link with g++, like automake 
defaults
-   # to, but overridden by upstream because on Linux this is not
-   # necessary, bug #449126
-   sed -i \
-   -e 's/\/CXXLINK/' \
-   src/Makefile.am || die
-   sed -i \
-   -e '/libharfbuzz_la_LINK = /s/\/CXXLINK/' \
-   src/Makefile.in || die
-   sed -i \
-   -e '/AM_V_CCLD/s/\/CXXLINK/' \
-   

[gentoo-commits] repo/gentoo:master commit in: x11-libs/gtk+/

2015-11-17 Thread Pacho Ramos
commit: 93c7df110a4ce40820e1e5f68d66f83e3ef47309
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 20:14:50 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 20:14:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93c7df11

x11-libs/gtk+: Version bump

Package-Manager: portage-2.2.24

 x11-libs/gtk+/Manifest   |   1 +
 x11-libs/gtk+/gtk+-3.18.5.ebuild | 244 +++
 2 files changed, 245 insertions(+)

diff --git a/x11-libs/gtk+/Manifest b/x11-libs/gtk+/Manifest
index 250d684..adc2d8c 100644
--- a/x11-libs/gtk+/Manifest
+++ b/x11-libs/gtk+/Manifest
@@ -5,3 +5,4 @@ DIST gtk+-3.14.13.tar.xz 15784112 SHA256 
b1efcb1ef299f9b205e6f4512428315fd03484e
 DIST gtk+-3.16.6.tar.xz 18273872 SHA256 
4d12726d0856a968b41802ae5c5971d7e9bac532717e309d3f81b9989da5ffbe SHA512 
0b3417c57ef755c8eb498b6800cd9e1dc1df01d508425c968944aaa0d7ff50f25a00370f9a6ccf23a87cc9f7fb251447e63055149264b997ee5a681e98dc54ec
 WHIRLPOOL 
f944cce4396d2519d357ef75f1e9d420b64d77004110f0e7d2eb643ae5b3f8182db5be28e35269a57ecfe9cbc3280dc65008c30ce1c977d64d0fbb317e6f6bce
 DIST gtk+-3.16.7.tar.xz 18294656 SHA256 
19689d14de54d182fad538153dbff6d41f53841f940aa871585fdea0306c7fba SHA512 
8f74b3a4093ecf776466d3988806fdae081d10d5e74c66770b52f624076afe92d58efb68ace47fd0dbc5a170a577fc9a8d1b4768794aa4249433c95198db00c8
 WHIRLPOOL 
f8b4d9fa6b7b3ed9702f76d28d729b745217e072898239517d320f0635e87691ca874a136607566cf53d73aead53833c5ecf484fc7aea74f3c26a1f14cc5a9b4
 DIST gtk+-3.18.4.tar.xz 18912812 SHA256 
5400dcf280d28d24606f33d59ed48c717f7d3db425d4b6fb52e8002f0c76c7eb SHA512 
ce0bd9d1a6739ed366e345cc3eda308e54fb0e092b237b7329efea3c0ee3e83c79294b38a9d158783ece406287a5baa28f713fab25ba3532f1127d0af40f0b2b
 WHIRLPOOL 
e8b0336b889e35fbc25c974a74731478f902f0ccd088a09a8c666072dd5704c8b5ff00b0901e4b1b3f2a539bb69e9b3396367f05acdbca0fa6be84c959fa0aee
+DIST gtk+-3.18.5.tar.xz 18912848 SHA256 
107aeb9a4244ce3c044becdd6dffc32d83202595181597180d4c736302a71852 SHA512 
5e12cab632bb250ec12dae9a146c4bbc9403d22f8f5888a6566588a5255489d7a1b2090c37ddbb464684cb56829f05ffa177d20be6ee22f3683a04dec2894c2a
 WHIRLPOOL 
5a7a78cd432879250ffb3cc2a3df7a9ddb07503fb851e2361d3292c86a3c02fb57c0ac587fd113158d2cb377c6d79b3ac39ab1b52cbc5d19f0d0365938f3b60f

diff --git a/x11-libs/gtk+/gtk+-3.18.5.ebuild b/x11-libs/gtk+/gtk+-3.18.5.ebuild
new file mode 100644
index 000..0e6b013
--- /dev/null
+++ b/x11-libs/gtk+/gtk+-3.18.5.ebuild
@@ -0,0 +1,244 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="yes"
+GNOME2_LA_PUNT="yes"
+
+inherit autotools eutils flag-o-matic gnome2 multilib virtualx multilib-minimal
+
+DESCRIPTION="Gimp ToolKit +"
+HOMEPAGE="http://www.gtk.org/;
+
+LICENSE="LGPL-2+"
+SLOT="3"
+IUSE="aqua broadway cloudprint colord cups examples +introspection test 
vim-syntax wayland X xinerama"
+REQUIRED_USE="
+   || ( aqua wayland X )
+   xinerama? ( X )
+"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+
+# FIXME: introspection data is built against system installation of gtk+:3
+# NOTE: cairo[svg] dep is due to bug 291283 (not patched to avoid eautoreconf)
+COMMON_DEPEND="
+   >=dev-libs/atk-2.15[introspection?,${MULTILIB_USEDEP}]
+   >=dev-libs/glib-2.45.8:2[${MULTILIB_USEDEP}]
+   media-libs/fontconfig[${MULTILIB_USEDEP}]
+   >=media-libs/libepoxy-1.0[${MULTILIB_USEDEP}]
+   >=x11-libs/cairo-1.14[aqua?,glib,svg,X?,${MULTILIB_USEDEP}]
+   >=x11-libs/gdk-pixbuf-2.30:2[introspection?,X?,${MULTILIB_USEDEP}]
+   >=x11-libs/pango-1.37.3[introspection?,${MULTILIB_USEDEP}]
+   x11-misc/shared-mime-info
+
+   cloudprint? (
+   >=net-libs/rest-0.7[${MULTILIB_USEDEP}]
+   >=dev-libs/json-glib-1.0[${MULTILIB_USEDEP}] )
+   colord? ( >=x11-misc/colord-0.1.9:0=[${MULTILIB_USEDEP}] )
+   cups? ( >=net-print/cups-1.2[${MULTILIB_USEDEP}] )
+   introspection? ( >=dev-libs/gobject-introspection-1.39:= )
+   wayland? (
+   >=dev-libs/wayland-1.5.91[${MULTILIB_USEDEP}]
+   media-libs/mesa[wayland,${MULTILIB_USEDEP}]
+   >=x11-libs/libxkbcommon-0.2[${MULTILIB_USEDEP}]
+   )
+   X? (
+   >=app-accessibility/at-spi2-atk-2.5.3[${MULTILIB_USEDEP}]
+   x11-libs/libXrender[${MULTILIB_USEDEP}]
+   x11-libs/libX11[${MULTILIB_USEDEP}]
+   >=x11-libs/libXi-1.3[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   >=x11-libs/libXrandr-1.3[${MULTILIB_USEDEP}]
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXcomposite[${MULTILIB_USEDEP}]

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

2015-11-17 Thread Pacho Ramos
commit: d86c69335d73ffc893d1f701deb7328b1b837c71
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:48:16 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:48:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d86c6933

media-video/cheese: Drop old

Package-Manager: portage-2.2.24

 media-video/cheese/Manifest|  2 -
 media-video/cheese/cheese-3.12.2-r1.ebuild | 92 --
 media-video/cheese/cheese-3.14.2.ebuild| 86 
 3 files changed, 180 deletions(-)

diff --git a/media-video/cheese/Manifest b/media-video/cheese/Manifest
index d9fc402..b61d2e2 100644
--- a/media-video/cheese/Manifest
+++ b/media-video/cheese/Manifest
@@ -1,4 +1,2 @@
-DIST cheese-3.12.2.tar.xz 1777924 SHA256 
a7b45369e75e222e3bd5e9a4408a0e6c230be0c49d359a387d36a42e17e3bc64 SHA512 
4548ac903cc435f8ab5e55fbf684239d9a8da2413448506a1bfd6a387348e9b8b08dc3f292e8eff5bab3491ff079cadcb901f82fd42dadd75b801e154a15cdf3
 WHIRLPOOL 
a8312e428771059cbdc982e458bb119af507e2a667f2af9743cdfe2ed6a25829432e7ea7a5dca27932999b7f3ab1cf16f99a0b31cec8f9094fd9941b85b57dfb
-DIST cheese-3.14.2.tar.xz 1804900 SHA256 
3074a567e0080d7b8fc0512bf3b08c3397e38083cce1767104624288f033a517 SHA512 
cf89baab6858bd2fa100e4dec24067d0bcc49f27632331b99a4f442f235ffca14630af2bf11317cbdc3850202c71bab1920101b9190091c2f0ff9bd4274c0753
 WHIRLPOOL 
7c909d3d991d97b674a0edd48e639e11d1c81eb9b938861c6ff722785f1f9c5b6a74ca79820d6c7bb24ba159154fc402a19248dcadcc1e3aea444b11bc4e
 DIST cheese-3.16.1.tar.xz 1823864 SHA256 
44622f6ad6d8703b22c6d40219ae317959495ccc9994b563b324592933ff90a0 SHA512 
c5af1fb76b53e8f1331f5e30052c05feb6baf1c6e0a3b63c962e99507c83240175b5e1d84817425a34f0f1ebd3c51ea126799873390685f61ae4a7add043
 WHIRLPOOL 
901cd41f7923d456f7f7f78ac248014e9223eba41e3560e3198c160250b9c148bb1c35dd2c22df6560b97c30a2ba278c54dbc626b752100de473561bd1e77785
 DIST cheese-3.18.1.tar.xz 1829408 SHA256 
fc9d8798b1f0c6b35731f063869a32c6910bab6d0386b9ea36386ebda0d57177 SHA512 
37e48f393521b242750d0cbda31537564cd63d2ceb4b3ea6a066c758c8bc9ac632dcbe4ee0ec0b36405c54058ea98ff5744ed087bf928445ffa58fdd2b04d2f7
 WHIRLPOOL 
b996dcfb5f4d3ab72811d7f072dc16d7c0c17109664ce84581659d70786585738b169949f4c9fe2f72df8b48401a30fde96c2557f2a1d888d7bafd38f5de2fef

diff --git a/media-video/cheese/cheese-3.12.2-r1.ebuild 
b/media-video/cheese/cheese-3.12.2-r1.ebuild
deleted file mode 100644
index 379a985..000
--- a/media-video/cheese/cheese-3.12.2-r1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-VALA_MIN_API_VERSION="0.24"
-
-inherit gnome2 vala virtualx
-
-DESCRIPTION="A cheesy program to take pictures and videos from your webcam"
-HOMEPAGE="https://wiki.gnome.org/Apps/Cheese;
-
-LICENSE="GPL-2+"
-SLOT="0/7" # subslot = libcheese soname version
-IUSE="+introspection test"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-# using clutter-gst-2.0.0 results in GLSL errors; bug #478702
-COMMON_DEPEND="
-   >=dev-libs/glib-2.39.90:2
-   >=x11-libs/gtk+-3.10:3[introspection?]
-   >=x11-libs/cairo-1.10:=
-   >=x11-libs/pango-1.28.0
-   >=gnome-base/gnome-desktop-2.91.6:3=
-   >=gnome-base/librsvg-2.32.0:2
-   >=media-libs/libcanberra-0.26[gtk3]
-   >=media-libs/clutter-1.13.2:1.0[introspection?]
-   >=media-libs/clutter-gtk-0.91.8:1.0
-   >=media-libs/clutter-gst-2.0.6:2.0
-   media-libs/cogl:1.0=[introspection?]
-
-   media-video/gnome-video-effects
-   x11-libs/gdk-pixbuf:2[jpeg,introspection?]
-   x11-libs/libX11
-   x11-libs/libXtst
-
-   media-libs/gstreamer:1.0[introspection?]
-   
media-libs/gst-plugins-base:1.0[introspection?,ogg,pango,theora,vorbis,X]
-
-   virtual/libgudev:=
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7 )
-"
-RDEPEND="${COMMON_DEPEND}
-   media-libs/gst-plugins-bad:1.0
-   media-libs/gst-plugins-good:1.0
-
-   media-plugins/gst-plugins-jpeg:1.0
-   media-plugins/gst-plugins-v4l2:1.0
-   media-plugins/gst-plugins-vpx:1.0
-"
-DEPEND="${COMMON_DEPEND}
-   $(vala_depend)
-   app-text/docbook-xml-dtd:4.3
-   app-text/yelp-tools
-   dev-libs/libxml2:2
-   >=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.50
-   virtual/pkgconfig
-   x11-proto/xf86vidmodeproto
-   test? ( dev-libs/glib:2[utils] )
-"
-
-src_prepare() {
-   # FIXME: looks like a regression from an underlying library
-   sed -e 's|\(g_test_add_func.*photo_path.*;\)|/*\1*/|' \
-   -e 's|\(g_test_add_func.*video_path.*;\)|/*\1*/|' \
-   -i "${S}"/tests/test-libcheese.c || die
-
-   vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   GST_INSPECT=$(type -P true) \
-   $(use_enable introspection) \
- 

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

2015-11-17 Thread Pacho Ramos
commit: 59d1d67d5ffbc6ca74124b4ba6ebc2b7af4640c8
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:36:00 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:36:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59d1d67d

media-libs/harfbuzz: Version bump

Package-Manager: portage-2.2.24

 media-libs/harfbuzz/Manifest  |  1 +
 media-libs/harfbuzz/harfbuzz-1.0.6.ebuild | 98 +++
 2 files changed, 99 insertions(+)

diff --git a/media-libs/harfbuzz/Manifest b/media-libs/harfbuzz/Manifest
index 5abce9b..93271ba 100644
--- a/media-libs/harfbuzz/Manifest
+++ b/media-libs/harfbuzz/Manifest
@@ -1,3 +1,4 @@
 DIST harfbuzz-0.9.38.tar.bz2 1177106 SHA256 
6736f383b4edfcaaeb6f3292302ca382d617d8c79948bb2dd2e8f86cdccfd514 SHA512 
7638853a33bafa139d3a87b2733e89d19239c2ef13afcd1bb0dac3a0f95f786caaaf327560c1714d502ee0adcc2bb068ee6095e81b501a66f8c7559394f1458e
 WHIRLPOOL 
79278d7db00a401af036f35bb90d7dd058b99bc13095f5ba4dac97e68372b51b8192dc0538667ff67b13e39c97318df8351c9c5f5482cc1af7c3bc6764cd534e
 DIST harfbuzz-0.9.40.tar.bz2 1182989 SHA256 
1771d53583be6d91ca961854b2a24fb239ef0545eed221ae3349abae0ab8321f SHA512 
9dcc8f5790b78efa14d328e48c68d97f44fce8658fdad9f6d46a79feb715a57903064087d2aef6cea84904936c27c623583b4c67d0e21511a4b82a9213d86eff
 WHIRLPOOL 
4b450d4a1a02bb846de582f84a63483182d3b2f071e54abd2a58b2b9d88c25eb7b880a961584ad087bee8c1eae2789446a9da29634f22467f00d72e7b90eb0d2
 DIST harfbuzz-0.9.41.tar.bz2 1188176 SHA256 
d81aa53d0c02b437beeaac159d7fc16394d676bbce0860fb6f6a10b587dc057c SHA512 
821b2fbd0d668c90e9e0040f60b7cfd8d35954d218045cebfb5e9c6ba29aba4230d0cd8e951697c26afcc4da447177fe967fa323449499fa710b52dd7e1a7011
 WHIRLPOOL 
84ba899d8fbc27b19d255d3c40e2d1f92c8c0dcc0a764b5c83c8c470af4902891f954d11aa64b6eb69aac0e8cf55c36ee9babff0a9260fc9f6286ce48330accb
+DIST harfbuzz-1.0.6.tar.bz2 1240522 SHA256 
f616a7fbdc78a627043f9029000bf08c0c71df59cde4143fc92a014f6a993b26 SHA512 
20ee169389a784e4ad4e2ff006a59a36879dba0a37a999ff51c2b4d76da9496a1a747d5176e9611998187452e6d18f880295bdfb9f45338acddf772fc3f16021
 WHIRLPOOL 
63eab91311674417b66fa92e0b92a5482321dfa8dc48edcc3ae1ed459483222ab08229438356245cc183234a65388fbb6bdb73222359dea0ec2a35a1bf141c78

diff --git a/media-libs/harfbuzz/harfbuzz-1.0.6.ebuild 
b/media-libs/harfbuzz/harfbuzz-1.0.6.ebuild
new file mode 100644
index 000..cdfd7a5
--- /dev/null
+++ b/media-libs/harfbuzz/harfbuzz-1.0.6.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+EGIT_REPO_URI="git://anongit.freedesktop.org/harfbuzz"
+[[ ${PV} ==  ]] && inherit git-r3 autotools
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils libtool multilib-minimal python-any-r1
+
+DESCRIPTION="An OpenType text shaping engine"
+HOMEPAGE="http://www.freedesktop.org/wiki/Software/HarfBuzz;
+[[ ${PV} ==  ]] || 
SRC_URI="http://www.freedesktop.org/software/${PN}/release/${P}.tar.bz2;
+
+LICENSE="Old-MIT ISC icu"
+SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416
+[[ ${PV} ==  ]] || \
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~x86-macos ~x64-solaris"
+
+IUSE="+cairo fontconfig +glib +graphite icu +introspection static-libs test 
+truetype"
+REQUIRED_USE="introspection? ( glib )"
+
+RDEPEND="
+   cairo? ( x11-libs/cairo:= )
+   fontconfig? ( media-libs/fontconfig:1.0[${MULTILIB_USEDEP}] )
+   glib? ( >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] )
+   graphite? ( >=media-gfx/graphite2-1.2.1:=[${MULTILIB_USEDEP}] )
+   icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] )
+   introspection? ( >=dev-libs/gobject-introspection-1.34:= )
+   truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+   dev-util/gtk-doc-am
+   virtual/pkgconfig
+   test? ( ${PYTHON_DEPS} )
+"
+# eautoreconf requires gobject-introspection-common
+# ragel needed if regenerating *.hh files from *.rl
+[[ ${PV} =  ]] && DEPEND="${DEPEND}
+   >=dev-libs/gobject-introspection-common-1.34
+   dev-util/ragel
+"
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   if [[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] ; then
+   # on Darwin/Solaris we need to link with g++, like automake 
defaults
+   # to, but overridden by upstream because on Linux this is not
+   # necessary, bug #449126
+   sed -i \
+   -e 's/\/CXXLINK/' \
+   src/Makefile.am || die
+   sed -i \
+   -e '/libharfbuzz_la_LINK = /s/\/CXXLINK/' \
+   src/Makefile.in || die
+   sed -i \
+   -e '/AM_V_CCLD/s/\/CXXLINK/' \
+  

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

2015-11-17 Thread Pacho Ramos
commit: 180520e83c409132b9f30f4431726373aa2a72f7
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:39:59 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:39:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=180520e8

media-sound/gnome-music: Drop old

Package-Manager: portage-2.2.24

 media-sound/gnome-music/Manifest  |  1 -
 media-sound/gnome-music/gnome-music-3.18.0.ebuild | 53 ---
 2 files changed, 54 deletions(-)

diff --git a/media-sound/gnome-music/Manifest b/media-sound/gnome-music/Manifest
index bb08c8e..4cede3b 100644
--- a/media-sound/gnome-music/Manifest
+++ b/media-sound/gnome-music/Manifest
@@ -1,3 +1,2 @@
 DIST gnome-music-3.16.2.tar.xz 1479984 SHA256 
362cf90f6cd41c38845b7afa01ce2f5fbb70ce7694139a69f5dac16620723588 SHA512 
c634a72f5c539e7e0792f780dcced1b48c56a0467182ab60506d3d22d1b7b7ff030b79f440ea874b8fca5b084bc121668cd5f03f2eb3ffbd82b7fa810a2885d2
 WHIRLPOOL 
e576f033d1194ea7b9232d420a3e5e4a895ce6836f0e4d592579ea0baeab2b3113f9cf3eafa2f17922ad14c2f45e9b79f07291664ab7404000d74d421bf0c9b4
-DIST gnome-music-3.18.0.tar.xz 1534760 SHA256 
e2e4b99a57c7b5c83ce3deccd38880cbafb875b423ab276204af523bc648d69c SHA512 
4a87cce71b7ca3dc0aa7e4e64a7d427297fbb08d300e18444bc4acbf637c4c23e34f130c5d72c80e8b052d452b3b962066ee7d3df6f20686f3202a025a5173da
 WHIRLPOOL 
379f6402752f1e73b4ed30db6c854dfd657b63b29b0f02dacf776a058428a9a5e2a0ad454d86abc644f2bcac1e0164d84a6cf3b2bc7e2d7df2e6a966e1a950b3
 DIST gnome-music-3.18.2.tar.xz 14110 SHA256 
5e91d2a8f5935ec87192878dae0ab46886dc010e9a368e3d420e8c6961e1625e SHA512 
74e50aef97ba18494322273aea9253cbcbee8a77dfc804cb1e58be78ece0f6d655609a9b02f5a1d1322deadea4fa4fb259801d76dbbe17815c8fbbfb41fa700a
 WHIRLPOOL 
6b5c9f32d0fdc104e3f966d43485b9d939baca3fc9a9a1167ffb98791cbb0e29d50e231ca4fc4e90f6c9728f7cf6f73bcbd2a3eae036755a000e9a8215bcc105

diff --git a/media-sound/gnome-music/gnome-music-3.18.0.ebuild 
b/media-sound/gnome-music/gnome-music-3.18.0.ebuild
deleted file mode 100644
index 324407d..000
--- a/media-sound/gnome-music/gnome-music-3.18.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-PYTHON_COMPAT=( python{3_3,3_4} )
-
-inherit gnome2 python-r1
-
-DESCRIPTION="Music management for Gnome"
-HOMEPAGE="https://wiki.gnome.org/Apps/Music;
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-KEYWORDS="~amd64 ~x86"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   >=dev-libs/glib-2.28:2
-   >=dev-libs/gobject-introspection-1.35.9:=
-   >=media-libs/grilo-0.2.6:0.2[introspection]
-   media-libs/libmediaart:2.0
-   >=x11-libs/gtk+-3.13.2:3[introspection]
-"
-# xdg-user-dirs-update needs to be there to create needed dirs
-# https://bugzilla.gnome.org/show_bug.cgi?id=731613
-RDEPEND="${COMMON_DEPEND}
-   app-misc/tracker[introspection(+)]
-   || (
-   app-misc/tracker[gstreamer]
-   app-misc/tracker[ffmpeg]
-   )
-   dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   media-libs/gstreamer:1.0[introspection]
-   media-libs/gst-plugins-base:1.0[introspection]
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/grilo-plugins:0.2[tracker]
-   x11-misc/xdg-user-dirs
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.26
-   dev-util/itstool
-   virtual/pkgconfig
-"
-
-pkg_setup() {
-   python_setup
-}



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

2015-11-17 Thread Pacho Ramos
commit: 2635f1211526cd4c9d7e7a04f093b3bd915711c1
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:17:55 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:17:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2635f121

gnome-extra/nemo: Version bump

Package-Manager: portage-2.2.24

 gnome-extra/nemo/Manifest  |  1 +
 gnome-extra/nemo/nemo-2.8.4.ebuild | 89 ++
 2 files changed, 90 insertions(+)

diff --git a/gnome-extra/nemo/Manifest b/gnome-extra/nemo/Manifest
index ad92639..d1fcfb0 100644
--- a/gnome-extra/nemo/Manifest
+++ b/gnome-extra/nemo/Manifest
@@ -1,3 +1,4 @@
 DIST nemo-2.4.5.tar.gz 1356445 SHA256 
a4eae743f25d1a66cbb5b28675d78aee1d57224c825d6baebdf88068dc1d8d04 SHA512 
1f6120569198f54e3fbc7f57ca9d4f644e617e029d28dc08669ae33774e474b838a5d430b0bf5ef3e0e253596a02666bbc1cbab32d1ef134971871567bf49bdb
 WHIRLPOOL 
804c169fd6b22558718223bab44cafe183214bdd0325e1c1dcf67a41a28fddca35cf5890b42248c6b0ef485d6010cc9151c75a3994e792092b366fc98e11bd75
 DIST nemo-2.6.6.tar.gz 1404568 SHA256 
03e0345dad1e98b95e30b804acc5ec3613d4a258efce592db6e1296569a55a3f SHA512 
2f234fa123202357f978603efa2ef20a7cf38a61d49205201c00f5e6d69add8e9ff1cbf1584a149b6ad333d974b406183d57511143d6cf20b186a68fd80e23a0
 WHIRLPOOL 
a805a6a0698015d175fc79f8443192aed28f9dcc1b8064e98b450004b749cd88c52d4322314295e89fb77659dc8b8bed76eb79101b53a387427c6fa456dfe8ca
 DIST nemo-2.6.7.tar.gz 1404410 SHA256 
fcb7c596d4aa2325df0c9a0af6d26bcc8c1c85f299ae511f8a1ea3a23619f8ed SHA512 
2a7f52b830eab7967f3ca779de076739371f51071f705d134de469b7642e3b592428f14e4c4e45c623445c36c990e90ad5c6698864cb920d0140aa3ad76a9f0b
 WHIRLPOOL 
62fe0313d51b9b312960fb9f2ab059d9a6ca74ec32c88eb0eb860444bbc5c3b975cd7e9a09739c27b511f9d965621e8a4cff686d33f34fe3de0a09e8f34f0870
+DIST nemo-2.8.4.tar.gz 1409144 SHA256 
ad5bef847cb9eddfc8be65a6be8408d554fefb8d047c78d3697ba6ff62a694b7 SHA512 
e17cae5d9f44f2faf69a135104b4eaed518c7c4316815808a91fa88a3ba66bb0f0f72f31df73af7bd9e465d825f9c44cb4032365b5cae434de249aaad3bd6b40
 WHIRLPOOL 
cd8912cfbedf7cd56000a7cd1fe9252b93f15232bc018712411ecb16723ad7bb42abe027e3b1e5acdea73da7ad8021ce1243301cecd09237b0e393dda927b1ec

diff --git a/gnome-extra/nemo/nemo-2.8.4.ebuild 
b/gnome-extra/nemo/nemo-2.8.4.ebuild
new file mode 100644
index 000..317ac30
--- /dev/null
+++ b/gnome-extra/nemo/nemo-2.8.4.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools eutils gnome2 python-any-r1 virtualx
+
+DESCRIPTION="A file manager for Cinnamon, forked from Nautilus"
+HOMEPAGE="http://cinnamon.linuxmint.com/;
+SRC_URI="https://github.com/linuxmint/nemo/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+ LGPL-2+ FDL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="exif +introspection +nls packagekit tracker xmp"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.37.3:2[dbus]
+   >=gnome-extra/cinnamon-desktop-2.6.1:0=
+   >=x11-libs/pango-1.28.3
+   >=x11-libs/gtk+-3.9.10:3[introspection?]
+   >=dev-libs/libxml2-2.7.8:2
+
+   gnome-base/dconf:0=
+   gnome-base/gsettings-desktop-schemas
+   >=x11-libs/libnotify-0.7:=
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXrender
+
+   exif? ( >=media-libs/libexif-0.6.20:= )
+   introspection? ( >=dev-libs/gobject-introspection-0.6.4:= )
+   tracker? ( >=app-misc/tracker-0.12:= )
+   xmp? ( >=media-libs/exempi-2.2.0:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   x11-themes/gnome-icon-theme-symbolic
+   nls? ( >=gnome-extra/cinnamon-translations-2.2 )
+"
+DEPEND="${COMMON_DEPEND}
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep '
+   dev-python/polib[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   ')
+   >=dev-lang/perl-5
+   >=dev-util/gdbus-codegen-2.31.0
+   dev-util/gtk-doc-am
+   >=dev-util/intltool-0.40.1
+   sys-devel/gettext
+   virtual/pkgconfig
+   x11-proto/xproto
+
+   dev-util/gtk-doc
+   gnome-base/gnome-common
+"
+# For eautoreconf
+#  gnome-base/gnome-common, dev-util/gtk-doc (not only -am!)
+PDEPEND=">=gnome-base/gvfs-0.1.2"
+
+src_prepare() {
+   epatch_user
+   eautoreconf
+   gnome2_src_prepare
+}
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-update-mimedb \
+   --disable-more-warnings \
+   $(use_enable exif libexif) \
+   $(use_enable introspection) \
+   $(use_enable tracker) \
+   $(use_enable xmp)
+}
+
+src_test() {
+   # FIXME: this should be handled at eclass level
+   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name 
"${S}/libnemo-private" || die
+
+   gnome2_environment_reset
+   unset DBUS_SESSION_BUS_ADDRESS
+   cd src # we don't 

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

2015-11-17 Thread Pacho Ramos
commit: b8930823ae1039c100d596a296ba1bf2aa669a65
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Nov 17 19:41:29 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Nov 17 19:41:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8930823

media-sound/sound-juicer: Drop old

Package-Manager: portage-2.2.24

 media-sound/sound-juicer/Manifest  |  1 -
 .../sound-juicer/sound-juicer-3.18.0.ebuild| 59 --
 2 files changed, 60 deletions(-)

diff --git a/media-sound/sound-juicer/Manifest 
b/media-sound/sound-juicer/Manifest
index e53a78c..0fc45b0 100644
--- a/media-sound/sound-juicer/Manifest
+++ b/media-sound/sound-juicer/Manifest
@@ -1,3 +1,2 @@
 DIST sound-juicer-3.16.1.tar.xz 811148 SHA256 
dfb744504a60f8069257584b74d90cba1ce99c744a7106b68627ad1d40b2a657 SHA512 
9d9065942f0bdb2609f03cc561186cfdf67042e986a0f4a0e23835e56c210335f87c351a4d7e44a7dbb3960af19a3e6ba2dc3d1d6c6a5ce62bb27cfc2ea52352
 WHIRLPOOL 
86859d332610f8228660be213495212e89eb09a743214e10229e144858c147c64638c94ff89fef4dffb97477ba8d196e0385e64e3a942fea2e959d14f74c6678
-DIST sound-juicer-3.18.0.tar.xz 817904 SHA256 
0525cfcdf76379d7aa5255fae2cde9e44ad0a24b12ac953d4fbc3dc55dfab048 SHA512 
3a450cf2fd4de7386b9883947085711e7537f50dc493c386257d471fde27beaaabcd4d3756ccc7fdd74a0924c4c4f2c21845a571e15c056256c92ab398bd454d
 WHIRLPOOL 
dd91ac8f5496a3ba7360d10efc2b44b9128b5f4862559de54943a6359d783c3e89035708a41b7f6667e153e60b41572963efe33ace2f7470547f181882ad261e
 DIST sound-juicer-3.18.1.tar.xz 819428 SHA256 
526d5a84d9b6b8f002f82f9d5678e3850c48e3b5692a499451fc5f36eef0de76 SHA512 
00091ab962409c97afee7dec0c8a4135c33203a439584c33f958e883338df9d4bbc8022e9541fcf061ab09bb14844f3d2480deb703709a4d077f0f07788462f2
 WHIRLPOOL 
74cd69c719da6cfec62b04c80e4919d4366c324a518fddcdad45ea2d7bd82c6470c80cbba76b4f79069c9433f97271e9c9ce945c878cfb92556a22ea529228cd

diff --git a/media-sound/sound-juicer/sound-juicer-3.18.0.ebuild 
b/media-sound/sound-juicer/sound-juicer-3.18.0.ebuild
deleted file mode 100644
index dcddfd6..000
--- a/media-sound/sound-juicer/sound-juicer-3.18.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="yes"
-
-inherit gnome2
-
-DESCRIPTION="CD ripper for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/SoundJuicer;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="flac test vorbis"
-
-COMMON_DEPEND="
-   app-text/iso-codes
-   >=dev-libs/glib-2.38:2[dbus]
-   >=x11-libs/gtk+-3.4:3
-   media-libs/libcanberra[gtk3]
-   >=app-cdr/brasero-2.90
-   sys-apps/dbus
-   gnome-base/gsettings-desktop-schemas
-
-   media-libs/libdiscid
-   >=media-libs/musicbrainz-5.0.1:5
-
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0[vorbis?]
-   flac? ( media-plugins/gst-plugins-flac:1.0 )
-"
-RDEPEND="${COMMON_DEPEND}
-   gnome-base/gvfs[cdda,udev]
-   || (
-   media-plugins/gst-plugins-cdparanoia:1.0
-   media-plugins/gst-plugins-cdio:1.0 )
-   media-plugins/gst-plugins-meta:1.0
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/appstream-glib
-   >=dev-util/intltool-0.50
-   dev-util/itstool
-   virtual/pkgconfig
-   test? ( ~app-text/docbook-xml-dtd-4.3 )
-"
-# eautoreconf needs gnome-common
-
-src_prepare() {
-   gnome2_src_prepare
-
-   # FIXME: gst macros does not take GST_INSPECT override anymore but we 
need a
-   # way to disable inspection due to gst-clutter always creating a GL 
context
-   # which is forbidden in sandbox since it needs write access to
-   # /dev/card*/dri
-   sed -e "s|\(gstinspect=\).*|\1$(type -P true)|" \
-   -i configure || die
-}



[gentoo-commits] repo/gentoo: Branch deleted: python-wrapper-full-replacement

2015-11-17 Thread Michał Górny
commit: 
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 20:39:42 2015 +

Branch deleted: python-wrapper-full-replacement




[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-python/, profiles/

2015-11-17 Thread Michał Górny
commit: 11b4249df9a07f93988a3007baca3cfd1f0fecaa
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 12 17:22:55 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 20:39:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11b4249d

app-eselect/eselect-python: Bump to 20151117

The new version no longer alters executable symlinks but instead
replaces all executables with python-exec wrappers, relying on changes
done in revbump of all dev-lang/python versions. Furthermore, the choice
of split python[23] interpreters is done in a config file rather than
through symlinks.

 app-eselect/eselect-python/Manifest|  1 +
 ...9.ebuild => eselect-python-20151117.ebuild} | 28 --
 .../eselect-python/eselect-python-.ebuild  | 28 --
 profiles/package.mask  |  3 ++-
 4 files changed, 33 insertions(+), 27 deletions(-)

diff --git a/app-eselect/eselect-python/Manifest 
b/app-eselect/eselect-python/Manifest
index 98a02a2..4465049 100644
--- a/app-eselect/eselect-python/Manifest
+++ b/app-eselect/eselect-python/Manifest
@@ -2,3 +2,4 @@ DIST eselect-python-2008.tar.bz2 64959 SHA256 
34d7618808a3c1d22e6763bc6c67d5
 DIST eselect-python-20131210.tar.bz2 71802 SHA256 
61ff5a5a3ae7982c6ffd503886cbcd35142df05f07008722b90ab5036e4bf8f2 SHA512 
8c523019e2a8fe7f1679b96a3da22326dbe65888739bb8cce3c4e2aa7c2c08cada01196a65c8fe35e08b3b7682a3f695e453e9ef1fb53f6b8886c51c09107d60
 WHIRLPOOL 
e8c75eb1ad6fcaaba50cae9d10d2414b29b3cfc8d06c79257948b0d0b4e7c2156d1672be4f5edd28055b5ae3f6aa54b1b8ef6eaaae9dfa1ce9b7b0b68dbc712a
 DIST eselect-python-20140115.tar.bz2 71910 SHA256 
5898ee19015ae905168e8b7aa76552b96f691285ab77c426b6a9238ecf742e45 SHA512 
65d6a6b9dfa0a0f4bea5352f965bed8942a16382135edea093342fa79a824d114b900cbcf607490f260b4ce4e5a2eb57872169e5494f8e6e65f41dd63cd5d335
 WHIRLPOOL 
633bca3e8a87e04c54a3790bb207da92d41af604cce7f8600c5317f6a759c55efbd3e5ba658e893d2d079248d2dadb1a0bb60248960e3d20cd766768a228d8c5
 DIST eselect-python-20140125.tar.bz2 72102 SHA256 
ee7b470f7facc42285bab7f4b947280741515a85c9067339511c219248f8fdfb SHA512 
94d4eb5a1af365c6f56a6fc2b75298018267cd4f6004f30b2e4d0c4744d3e82b33f6c82e6f0ea0f15132d5157c3ace99fa167bbf3ebada46edd2e005ca96eb51
 WHIRLPOOL 
70d5f9af2929507d26e56080ce934066d2de5f16030dfd63b016215465ad5fc89eb952d64cc545c7058d146108e26925741d2c8fbaba08abba1a5cae7b0c23b6
+DIST eselect-python-20151117.tar.bz2 62793 SHA256 
6f2912ae4d4fc12949ae0c9bb8b93b3a3a8c372336c2138c758f042f91484561 SHA512 
3e680f8c851251176d6bb916d003e421e4b414aa9cc59e20cb15d454a3251cdf1e587828e9b2a5db461641f277e3b764ca172f4466fe3f6ef9679a9a05a71732
 WHIRLPOOL 
a2e4ca676ead692b08a6194fb4bf5dabdd383ad158f45a17cb21c59022af139b0646fe39b0f4c9b540c80c4c2a04362c75f90e3c7f1506056b7b0f01e5e51474

diff --git a/app-eselect/eselect-python/eselect-python-.ebuild 
b/app-eselect/eselect-python/eselect-python-20151117.ebuild
similarity index 71%
copy from app-eselect/eselect-python/eselect-python-.ebuild
copy to app-eselect/eselect-python/eselect-python-20151117.ebuild
index 6b16b3d..9968e7f 100644
--- a/app-eselect/eselect-python/eselect-python-.ebuild
+++ b/app-eselect/eselect-python/eselect-python-20151117.ebuild
@@ -2,15 +2,13 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-# Keep the EAPI low here because everything else depends on it.
-# We want to make upgrading simpler.
+EAPI=5
 
 if [[ ${PV} == "" ]] ; then
inherit autotools git-r3
EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
 else
-   SRC_URI="mirror://gentoo/${P}.tar.bz2
-   https://dev.gentoo.org/~floppym/dist/${P}.tar.bz2;
+   SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.bz2;
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-aix ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
@@ -21,21 +19,25 @@ LICENSE="GPL-2"
 SLOT="0"
 IUSE=""
 
-RDEPEND=">=app-admin/eselect-1.2.3"
+RDEPEND=">=app-admin/eselect-1.2.3
+   >=dev-lang/python-exec-2.1:2
+   !https://dev.gentoo.org/~floppym/dist/${P}.tar.bz2;
+   SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.bz2;
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-aix ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
@@ -21,21 +19,25 @@ LICENSE="GPL-2"
 SLOT="0"
 IUSE=""
 
-RDEPEND=">=app-admin/eselect-1.2.3"
+RDEPEND=">=app-admin/eselect-1.2.3
+   >=dev-lang/python-exec-2.1:2
+   !

[gentoo-commits] repo/gentoo:master commit in: dev-lang/python/, profiles/

2015-11-17 Thread Michał Górny
commit: 6c2f9e9f117072625ea850d2c8f6f79b6b6a2401
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 12 16:26:15 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 20:39:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c2f9e9f

dev-lang/python: Add symlinks for python-exec wrapping of execs

Add symlinks to make it possible to wrap Python executable aliases
(python, python-config, pydoc...) via python-exec.

 ...on-2.7.10-r3.ebuild => python-2.7.10-r4.ebuild} | 21 +++-
 ...thon-3.3.5-r3.ebuild => python-3.3.5-r4.ebuild} | 23 +-
 ...thon-3.4.3-r3.ebuild => python-3.4.3-r4.ebuild} | 23 +-
 ...thon-3.5.0-r2.ebuild => python-3.5.0-r3.ebuild} | 23 +-
 profiles/package.mask  |  9 +
 5 files changed, 91 insertions(+), 8 deletions(-)

diff --git a/dev-lang/python/python-2.7.10-r3.ebuild 
b/dev-lang/python/python-2.7.10-r4.ebuild
similarity index 93%
rename from dev-lang/python/python-2.7.10-r3.ebuild
rename to dev-lang/python/python-2.7.10-r4.ebuild
index 4fae1b5..2158a54 100644
--- a/dev-lang/python/python-2.7.10-r3.ebuild
+++ b/dev-lang/python/python-2.7.10-r4.ebuild
@@ -304,7 +304,7 @@ src_install() {
-i "${ED}etc/conf.d/pydoc-${SLOT}" 
"${ED}etc/init.d/pydoc-${SLOT}" || die "sed failed"
 
# for python-exec
-   local vars=( EPYTHON PYTHON_SITEDIR )
+   local vars=( EPYTHON PYTHON_SITEDIR PYTHON_SCRIPTDIR )
 
# if not using a cross-compiler, use the fresh binary
if ! tc-is-cross-compiler; then
@@ -317,6 +317,25 @@ src_install() {
python_export "python${SLOT}" "${vars[@]}"
echo "EPYTHON='${EPYTHON}'" > epython.py || die
python_domodule epython.py
+
+   # python-exec wrapping support
+   local pymajor=${SLOT%.*}
+   mkdir -p "${D}${PYTHON_SCRIPTDIR}" || die
+   # python and pythonX
+   ln -s "../../../bin/python${SLOT}" \
+   "${D}${PYTHON_SCRIPTDIR}/python${pymajor}" || die
+   ln -s "python${pymajor}" \
+   "${D}${PYTHON_SCRIPTDIR}/python" || die
+   # python-config and pythonX-config
+   ln -s "../../../bin/python${SLOT}-config" \
+   "${D}${PYTHON_SCRIPTDIR}/python${pymajor}-config" || die
+   ln -s "python${pymajor}-config" \
+   "${D}${PYTHON_SCRIPTDIR}/python-config" || die
+   # 2to3, pydoc, pyvenv
+   ln -s "../../../bin/2to3-${SLOT}" \
+   "${D}${PYTHON_SCRIPTDIR}/2to3" || die
+   ln -s "../../../bin/pydoc${SLOT}" \
+   "${D}${PYTHON_SCRIPTDIR}/pydoc" || die
 }
 
 pkg_preinst() {

diff --git a/dev-lang/python/python-3.3.5-r3.ebuild 
b/dev-lang/python/python-3.3.5-r4.ebuild
similarity index 92%
rename from dev-lang/python/python-3.3.5-r3.ebuild
rename to dev-lang/python/python-3.3.5-r4.ebuild
index 3049ce1..9b0e261 100644
--- a/dev-lang/python/python-3.3.5-r3.ebuild
+++ b/dev-lang/python/python-3.3.5-r4.ebuild
@@ -291,7 +291,7 @@ src_install() {
-i "${ED}etc/conf.d/pydoc-${PYVER}" 
"${ED}etc/init.d/pydoc-${PYVER}" || die "sed failed"
 
# for python-exec
-   local vars=( EPYTHON PYTHON_SITEDIR )
+   local vars=( EPYTHON PYTHON_SITEDIR PYTHON_SCRIPTDIR )
 
# if not using a cross-compiler, use the fresh binary
if ! tc-is-cross-compiler; then
@@ -304,6 +304,27 @@ src_install() {
python_export "python${PYVER}" "${vars[@]}"
echo "EPYTHON='${EPYTHON}'" > epython.py || die
python_domodule epython.py
+
+   # python-exec wrapping support
+   local pymajor=${PYVER%.*}
+   mkdir -p "${D}${PYTHON_SCRIPTDIR}" || die
+   # python and pythonX
+   ln -s "../../../bin/${abiver}" \
+   "${D}${PYTHON_SCRIPTDIR}/python${pymajor}" || die
+   ln -s "python${pymajor}" \
+   "${D}${PYTHON_SCRIPTDIR}/python" || die
+   # python-config and pythonX-config
+   ln -s "../../../bin/${abiver}-config" \
+   "${D}${PYTHON_SCRIPTDIR}/python${pymajor}-config" || die
+   ln -s "python${pymajor}-config" \
+   "${D}${PYTHON_SCRIPTDIR}/python-config" || die
+   # 2to3, pydoc, pyvenv
+   ln -s "../../../bin/2to3-${PYVER}" \
+   "${D}${PYTHON_SCRIPTDIR}/2to3" || die
+   ln -s "../../../bin/pydoc${PYVER}" \
+   "${D}${PYTHON_SCRIPTDIR}/pydoc" || die
+   ln -s "../../../bin/pyvenv-${PYVER}" \
+   "${D}${PYTHON_SCRIPTDIR}/pyvenv" || die
 }
 
 pkg_preinst() {

diff --git a/dev-lang/python/python-3.4.3-r3.ebuild 
b/dev-lang/python/python-3.4.3-r4.ebuild
similarity index 91%
rename from dev-lang/python/python-3.4.3-r3.ebuild
rename to dev-lang/python/python-3.4.3-r4.ebuild
index 72a..526233a 100644
--- a/dev-lang/python/python-3.4.3-r3.ebuild
+++ b/dev-lang/python/python-3.4.3-r4.ebuild
@@ -274,7 +274,7 @@ src_install() {
-i "${ED}etc/conf.d/pydoc-${PYVER}" 

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

2015-11-17 Thread Michał Górny
commit: 05dbe214abfe5900123a378ddc45411bf4805726
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 17 19:01:16 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 20:39:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05dbe214

dev-lang/python-exec: Drop autotools-utils, clean up

 dev-lang/python-exec/python-exec-2..ebuild | 21 +
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/dev-lang/python-exec/python-exec-2..ebuild 
b/dev-lang/python-exec/python-exec-2..ebuild
index a462899..d6ec26f 100644
--- a/dev-lang/python-exec/python-exec-2..ebuild
+++ b/dev-lang/python-exec/python-exec-2..ebuild
@@ -5,18 +5,19 @@
 EAPI=5
 
 #if LIVE
-AUTOTOOLS_AUTORECONF=yes
 EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
 EGIT_BRANCH="python-exec2"
 
-inherit git-r3
+inherit autotools git-r3
 #endif
 
 # Kids, don't do this at home!
 inherit python-utils-r1
 PYTHON_COMPAT=( "${_PYTHON_ALL_IMPLS[@]}" )
 
-inherit autotools-utils python-r1
+# Inherited purely to have PYTHON_TARGET flags which will satisfy USE
+# dependencies and trigger necessary rebuilds.
+inherit python-r1
 
 DESCRIPTION="Python script wrapper"
 HOMEPAGE="https://bitbucket.org/mgorny/python-exec/;
@@ -32,19 +33,23 @@ RDEPEND="!

[gentoo-commits] proj/mysql-extras:master commit in: /

2015-11-17 Thread Brian Evans
commit: 3890257ea14a657bcd536d348369ec26f8313cc2
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Nov 17 20:40:21 2015 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Nov 17 20:40:21 2015 +
URL:https://gitweb.gentoo.org/proj/mysql-extras.git/commit/?id=3890257e

Add patches to index for mysql-cluster releases

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

 0_index.txt | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/0_index.txt b/0_index.txt
index c575c84..54f3e9f 100644
--- a/0_index.txt
+++ b/0_index.txt
@@ -879,6 +879,12 @@
 @@ Fix deprecated perl array defined syntax on mtr test script
 @@ Ported forward from mysql 5.6; Oracle bug 18145121
 
+@patch 20019_all_mysql-5.5-mtr-perl-deprecation.patch
+@ver 7.02.00.00 to 7.02.99.99
+@pn mysql-cluster
+@@ Fix deprecated perl array defined syntax on mtr test script
+@@ Ported forward from mysql 5.6; Oracle bug 18145121
+
 @patch 20020_all_mysql-5.6-events_1-bug-78899.patch
 @ver 5.06.00.00 to 5.06.27.99
 @pn mysql
@@ -886,3 +892,11 @@
 @@ Fix events_1 test for October 2015
 @@ Patch backported from mariadb
 @@ Bug 564968 Upstream bug 78899
+
+@patch 20020_all_mysql-5.6-events_1-bug-78899.patch
+@ver 7.02.00.00 to 7.02.99.99
+@ver 7.03.00.00 to 7.03.12.99
+@pn mysql-cluster
+@@ Fix events_1 test for October 2015
+@@ Patch backported from mariadb
+@@ Bug 564968 Upstream bug 78899



[gentoo-commits] repo/gentoo:python-wrapper-full-replacement commit in: app-eselect/eselect-python/

2015-11-17 Thread Michał Górny
commit: 460af21306dcef36204adfa5098b21f6bcbd2379
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 17 20:32:36 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 17 20:32:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=460af213

app-eselect/eselect-python: Preserve previous python[23] selection

 .../eselect-python/eselect-python-20151117.ebuild  | 37 ++
 .../eselect-python/eselect-python-.ebuild  | 37 ++
 2 files changed, 62 insertions(+), 12 deletions(-)

diff --git a/app-eselect/eselect-python/eselect-python-20151117.ebuild 
b/app-eselect/eselect-python/eselect-python-20151117.ebuild
index 9968e7f..86e9a3c 100644
--- a/app-eselect/eselect-python/eselect-python-20151117.ebuild
+++ b/app-eselect/eselect-python/eselect-python-20151117.ebuild
@@ -40,14 +40,39 @@ src_install() {
done
 }
 
+pkg_preinst() {
+   local py
+
+   # Copy python[23] selection from the old format (symlink)
+   for py in 2 3; do
+   # default to none
+   declare -g "PREV_PYTHON${py}"=
+
+   if [[ -L ${EROOT}/usr/bin/python${py} ]]; then
+   local target=$(readlink "${EROOT}/usr/bin/python${py}")
+
+   # check if it's actually old eselect symlink
+   if [[ ${target} == python?.? ]]; then
+   declare -g "PREV_PYTHON${py}=${target}"
+   fi
+   fi
+   done
+}
+
 pkg_postinst() {
+   local py
+
if has_version 'dev-lang/python'; then
eselect python update --if-unset
fi
-   if has_version '=dev-lang/python-2*'; then
-   eselect python update --python2 --if-unset
-   fi
-   if has_version '=dev-lang/python-3*'; then
-   eselect python update --python3 --if-unset
-   fi
+
+   for py in 2 3; do
+   local pyvar=PREV_PYTHON${py}
+   if [[ -n ${!pyvar} ]]; then
+   einfo "Setting Python${py} to ${!pyvar}"
+   eselect python set "--python${py}" "${!pyvar}"
+   elif has_version "=dev-lang/python-${py}*"; then
+   eselect python update "--python${py}" --if-unset
+   fi
+   done
 }

diff --git a/app-eselect/eselect-python/eselect-python-.ebuild 
b/app-eselect/eselect-python/eselect-python-.ebuild
index 9968e7f..86e9a3c 100644
--- a/app-eselect/eselect-python/eselect-python-.ebuild
+++ b/app-eselect/eselect-python/eselect-python-.ebuild
@@ -40,14 +40,39 @@ src_install() {
done
 }
 
+pkg_preinst() {
+   local py
+
+   # Copy python[23] selection from the old format (symlink)
+   for py in 2 3; do
+   # default to none
+   declare -g "PREV_PYTHON${py}"=
+
+   if [[ -L ${EROOT}/usr/bin/python${py} ]]; then
+   local target=$(readlink "${EROOT}/usr/bin/python${py}")
+
+   # check if it's actually old eselect symlink
+   if [[ ${target} == python?.? ]]; then
+   declare -g "PREV_PYTHON${py}=${target}"
+   fi
+   fi
+   done
+}
+
 pkg_postinst() {
+   local py
+
if has_version 'dev-lang/python'; then
eselect python update --if-unset
fi
-   if has_version '=dev-lang/python-2*'; then
-   eselect python update --python2 --if-unset
-   fi
-   if has_version '=dev-lang/python-3*'; then
-   eselect python update --python3 --if-unset
-   fi
+
+   for py in 2 3; do
+   local pyvar=PREV_PYTHON${py}
+   if [[ -n ${!pyvar} ]]; then
+   einfo "Setting Python${py} to ${!pyvar}"
+   eselect python set "--python${py}" "${!pyvar}"
+   elif has_version "=dev-lang/python-${py}*"; then
+   eselect python update "--python${py}" --if-unset
+   fi
+   done
 }



  1   2   >