[gentoo-commits] repo/gentoo:master commit in: app-backup/bareos/

2015-12-29 Thread Marc Schiffbauer
commit: 54018cd9266277f066ec9e74d3503cb491ff6421
Author: Marc Schiffbauer  gentoo  org>
AuthorDate: Tue Dec 29 15:19:36 2015 +
Commit: Marc Schiffbauer  gentoo  org>
CommitDate: Tue Dec 29 15:19:48 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54018cd9

app-backup/bareos: fix Manifest for 5.2.2. Fixes #569854

Package-Manager: portage-2.2.26

 app-backup/bareos/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/bareos/Manifest b/app-backup/bareos/Manifest
index 3030c03..59faa70 100644
--- a/app-backup/bareos/Manifest
+++ b/app-backup/bareos/Manifest
@@ -1,4 +1,4 @@
 DIST bareos-13.2.4.tar.gz 3467542 SHA256 
def68891d074438e55d7a3e570cfaae1c1a8c9479d089815ba0f8f31e1d6eefc SHA512 
d7e4bc016993f68521f4438b56adf51e88685195693d00d34103259c3c24d1d7c03cc2b7aecbb55ff88a00d5f169e9e42accd23b17bcd3c837ca78079a9f394f
 WHIRLPOOL 
54b5ee5094be6569c1a7857ebcc98f1e24ee272485327397f1ab0833433a6b46e8b7e3f2cd927668600ba63f2d36a920dc64cb9dfc2f0dd69adb57a70b862848
 DIST bareos-14.2.2.tar.gz 3811787 SHA256 
8792fe79689f7a1053ecb493ba52258acb29d0998b71d65178a311d46b7cf2bf SHA512 
be490ab2f8085975f164ac554cac7d6bbef1af01c8350b5816b2033a37827de4a81bead6ce1e699fe5cc44085dce2b6a0330b91239fb87907e22f9c8dc710156
 WHIRLPOOL 
384415d553d61e7aa1eaa22611cc9d9eacf8338df82d911409e52a774e756b0539810c60be3dade91eadcc679794ad7c3bb5a155d7d699171f6a4fdead5a5470
 DIST bareos-14.2.5.tar.gz 3820963 SHA256 
f42bc34afa913cfb4d6b7ef8856c7195d8b13b21c987da1039d46e6c60f06720 SHA512 
600cdf8175b1199b73ddcf8a32df7bca446c294c4c830038f93fe3f053482916745675df3a51bc494cdab00b362d57657a34a94e78bac4bae3acced06347023d
 WHIRLPOOL 
361c0edb411c824f128ccb5e27f4d637ecfdf4f2de7a428a8c4eace6d5c23a33a3868cc1b380dcbf6e06d6c7bb71ff222abad923ea9a0bfb74e78f0445c4058b
-DIST bareos-15.2.2.tar.gz 3928079 SHA256 
7c7e07c877956385870475382184d39df7232ecd9791c3a3942624473410da93 SHA512 
5eb372da510e69fe75175cd6c28e1e2d65372eb0ea58193a6747fceccd4398a343a84abbb379f67849f96242d818f26f2dec3093be56c9f64ea59a1504339d6d
 WHIRLPOOL 
0a79a88fbf6087536f8442fc413f7adbe03ad5affe6dc5550a8e05ded172e15357789637e8a5e606f172a1a0e319d2af20dfbd5144331e37693bbf0543de52e2
+DIST bareos-15.2.2.tar.gz 3928036 SHA256 
f314e7d3e99e92b4261af97888ddcdaaedf513b638745b07270db3e6930e9008 SHA512 
07b11c51695a6ff348317965625e5cdb8e296d4f3a4037718a98e266d94650ed1fb905c220ac791123d8ed92d0aed24854a6ab52887249849dbc00697d3300c3
 WHIRLPOOL 
e43141e1ba670cd13da716739f4e3ed2a5f63e4dd43efbeed0a781429ff3b7cc6ddcb67d8f6ec47508b036f1da4ffc5cdbd4d49887e428de55969250817d529b



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

2015-12-29 Thread Zac Medico
commit: 7bef8d93aa79ad7a4001e30c74f7aa267ac95771
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Dec 24 11:19:32 2015 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 29 16:40:02 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=7bef8d93

sqlite: enable md5 validation (bug 568934)

Add forward-compatibility for cache entries containing md5 digests
instead of mtimes for validation.

X-Gentoo-Bug: 568934
X-Gentoo-Bug-url: https://bugs.gentoo.org/show_bug.cgi?id=568934
Acked-by: Alexander Berntsen  gentoo.org>

 pym/portage/cache/sqlite.py | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/pym/portage/cache/sqlite.py b/pym/portage/cache/sqlite.py
index 310ac94..32e4076 100644
--- a/pym/portage/cache/sqlite.py
+++ b/pym/portage/cache/sqlite.py
@@ -18,6 +18,9 @@ if sys.hexversion >= 0x300:
 
 class database(fs_template.FsBased):
 
+   validation_chf = 'mtime'
+   chf_types = ('mtime', 'md5')
+
autocommits = False
synchronous = False
# cache_bytes is used together with page_size (set at sqlite build time)
@@ -28,10 +31,12 @@ class database(fs_template.FsBased):
def __init__(self, *args, **config):
super(database, self).__init__(*args, **config)
self._import_sqlite()
-   self._allowed_keys = ["_mtime_", "_eclasses_"]
+   self._allowed_keys = ["_eclasses_"]
self._allowed_keys.extend(self._known_keys)
-   self._allowed_keys.sort()
+   self._allowed_keys.extend('_%s_' % k for k in self.chf_types)
self._allowed_keys_set = frozenset(self._allowed_keys)
+   self._allowed_keys = sorted(self._allowed_keys_set)
+
self.location = os.path.join(self.location, 
self.label.lstrip(os.path.sep).rstrip(os.path.sep))
 



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

2015-12-29 Thread Justin Lecher
commit: 7527ab99aa5f993ef4757aab8a84055fa230259c
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Dec 29 17:21:01 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Dec 29 17:21:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7527ab99

sci-libs/blas-reference: Add back dropped keyword

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

 sci-libs/blas-reference/blas-reference-20070226-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/blas-reference/blas-reference-20070226-r4.ebuild 
b/sci-libs/blas-reference/blas-reference-20070226-r4.ebuild
index d9f88f6..14adf0d 100644
--- a/sci-libs/blas-reference/blas-reference-20070226-r4.ebuild
+++ b/sci-libs/blas-reference/blas-reference-20070226-r4.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://www.netlib.org/lapack/${LAPACKPN}-${LAPACKPV}.tgz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos"
 IUSE="doc"
 
 DEPEND="app-eselect/eselect-blas"



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

2015-12-29 Thread Brian Evans
commit: 0143ef0ebf45958cb851a99f87357973ea252ab6
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Dec 29 15:37:25 2015 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Dec 29 15:38:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0143ef0e

dev-db/mariadb: Add missing build dependency wrt but 570114

app-arch/snappy is needed for TokuDB

Package-Manager: portage-2.2.26

 dev-db/mariadb/mariadb-10.0.23.ebuild | 1 +
 dev-db/mariadb/mariadb-10.1.10.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dev-db/mariadb/mariadb-10.0.23.ebuild 
b/dev-db/mariadb/mariadb-10.0.23.ebuild
index 5bcbfd2..b369838 100644
--- a/dev-db/mariadb/mariadb-10.0.23.ebuild
+++ b/dev-db/mariadb/mariadb-10.0.23.ebuild
@@ -34,6 +34,7 @@ COMMON_DEPEND="
)
oqgraph? ( >=dev-libs/boost-1.40.0:0= dev-libs/judy:0= )
pam? ( virtual/pam:0= )
+   tokudb? ( app-arch/snappy )
)
>=dev-libs/libpcre-8.35:3=
 "

diff --git a/dev-db/mariadb/mariadb-10.1.10.ebuild 
b/dev-db/mariadb/mariadb-10.1.10.ebuild
index 578c46a..1390a68 100644
--- a/dev-db/mariadb/mariadb-10.1.10.ebuild
+++ b/dev-db/mariadb/mariadb-10.1.10.ebuild
@@ -40,6 +40,7 @@ COMMON_DEPEND="
innodb-snappy? ( app-arch/snappy )
oqgraph? ( >=dev-libs/boost-1.40.0:0= dev-libs/judy:0= )
pam? ( virtual/pam:0= )
+   tokudb? ( app-arch/snappy )
)
>=dev-libs/libpcre-8.35:3=
 "



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

2015-12-29 Thread Ian Delaney
commit: 06337640cc3c5f53ab40f568e29600fdfd7abfd1
Author: Louis Sautier  gmail  com>
AuthorDate: Tue Dec 29 14:49:40 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 15:16:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06337640

dev-python/jaraco-logging: needed as a new dep to dev-python/irc

Package-Manager: portage-2.2.26

 dev-python/jaraco-logging/Manifest |  1 +
 .../jaraco-logging/jaraco-logging-1.3.1.ebuild | 44 ++
 dev-python/jaraco-logging/metadata.xml | 14 +++
 3 files changed, 59 insertions(+)

diff --git a/dev-python/jaraco-logging/Manifest 
b/dev-python/jaraco-logging/Manifest
new file mode 100644
index 000..8fde3b1
--- /dev/null
+++ b/dev-python/jaraco-logging/Manifest
@@ -0,0 +1 @@
+DIST jaraco.logging-1.3.1.tar.gz 4589 SHA256 
e80e43a7b0d94bda2faacc1b996d5cc8bc6dcf20205048d18f4889f35e956580 SHA512 
aaa2b29551a13358887e0747acb47ca2a6611ce1bfb08259bc70c7908929c4d2c45eefd7738e808b7b2404d723425efd69f9cb9601e0fb0c08f611bcf744ceae
 WHIRLPOOL 
150101a7fa0b50a0130802638bd73124543c1836c27a96deb21be4eb6966028d58e4cabc6513a7149d08273a728ac1e46a27f78b6a139e304b16f14d2227abf3

diff --git a/dev-python/jaraco-logging/jaraco-logging-1.3.1.ebuild 
b/dev-python/jaraco-logging/jaraco-logging-1.3.1.ebuild
new file mode 100644
index 000..90846bd
--- /dev/null
+++ b/dev-python/jaraco-logging/jaraco-logging-1.3.1.ebuild
@@ -0,0 +1,44 @@
+# 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_4,3_5} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+DESCRIPTION="Additional facilities to supplement Python's stdlib logging 
module"
+HOMEPAGE="https://github.com/jaraco/jaraco.logging;
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]
+   dev-python/tempora[${PYTHON_USEDEP}]
+"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_prepare_all() {
+   if use test && has_version "${CATEGORY}/${PN}"; then
+   die "Ensure $PN is not already installed or the test suite will 
fail"
+   fi
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   PYTHONPATH=. py.test || die "tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/jaraco-logging/metadata.xml 
b/dev-python/jaraco-logging/metadata.xml
new file mode 100644
index 000..3c58c00
--- /dev/null
+++ b/dev-python/jaraco-logging/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   proxy-maintainers
+   
+   sautier.lo...@gmail.com
+   Louis Sautier
+   Proxied maintainer; set to assignee in all 
bugs
+   
+   
+   jaraco.logging
+   jaraco/jaraco.logging
+   
+



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

2015-12-29 Thread Michael Sterrett
commit: 0ddb9fcbec1c779051df973a3d4a08821fb42b83
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Dec 29 15:47:53 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Tue Dec 29 15:53:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ddb9fcb

games-emulation/mednafen: version bump

Package-Manager: portage-2.2.24

 games-emulation/mednafen/Manifest  |   1 +
 .../mednafen/files/mednafen-0.9.38.7-cflags.patch  |  28 +++
 .../files/mednafen-0.9.38.7-localedir.patch| 278 +
 .../mednafen/files/mednafen-0.9.38.7-zlib.patch|  27 ++
 games-emulation/mednafen/mednafen-0.9.38.7.ebuild  |  68 +
 5 files changed, 402 insertions(+)

diff --git a/games-emulation/mednafen/Manifest 
b/games-emulation/mednafen/Manifest
index 95cfdb7..dd9924b 100644
--- a/games-emulation/mednafen/Manifest
+++ b/games-emulation/mednafen/Manifest
@@ -1 +1,2 @@
 DIST mednafen-0.9.38.4.tar.bz2 3820560 SHA256 
3298e2d5c03efbe638c2a98bf74435e306768461c65d2bb9b9a95e99dc463105 SHA512 
3eb19a10e97cd285387fcf86eae09f550d248ab9c070750b1c0af0f334cce47ea375227df72cf7cdbc2193b311bab5e09108388a15634f694ef398b1a77ac3df
 WHIRLPOOL 
17ae061668052fa33ce08b56d1aac75935bb91d02961d3dad042c07537ef15aa4374730652508941408764e7deb7cfe0969f80f32e6d642d20a32ac053bba491
+DIST mednafen-0.9.38.7.tar.bz2 3882418 SHA256 
1bb3beef883a325c35d1a1ce14959c307a4c321f2ea29d4ddb216c6dd03aded8 SHA512 
759c83928ef7a9e856dc7f546542ab1e7cbe944d0184a7693ce3b1466220233eb40c2b215100920920754eb5a93587bd8e2d8150e00ec9c93da1d518107e0d76
 WHIRLPOOL 
0cb94abdaa697558f3575c8e4d6e0a816888ace2b860797a8a947ddca3ae66e517dd044f9ce266e7a19ac6e16a56f91bc93db2bbc7a9817e5afcc75a93cb2f42

diff --git a/games-emulation/mednafen/files/mednafen-0.9.38.7-cflags.patch 
b/games-emulation/mednafen/files/mednafen-0.9.38.7-cflags.patch
new file mode 100644
index 000..c43af81
--- /dev/null
+++ b/games-emulation/mednafen/files/mednafen-0.9.38.7-cflags.patch
@@ -0,0 +1,28 @@
+--- configure.ac.orig
 configure.ac
+@@ -80,25 +80,6 @@
+ AC_CHECK_LIB([z], [zlibVersion],[], AC_MSG_ERROR([*** zlib not found!]))
+ LIBS="$LIBS -lz"
+ 
+-OPTIMIZER_FLAGS=""
+-
+-dnl -ffast-math removed January 12, 2013.  Don't re-add it, nor any of its 
sub-options(ESPECIALLY not -funsafe-math-optimizations),
+-dnl it messes up certain code(NES resampler, for example) under certain 
conditions and alignments of the great celestial squid.
+-dnl
+-dnl In fact, let's explicitly disable it here with -fno-fast-math.
+-dnl
+-dnl -fomit-frame-pointer is required for some x86 inline assembly to compile.
+-dnl
+-dnl November 28, 2014: Use -fwrapv unconditionally instead of 
-fno-strict-overflow, -fno-strict-overflow is buggy
+-dnl and does not work as documented/implied.
+-dnl
+-AX_CFLAGS_GCC_OPTION([-fno-fast-math], OPTIMIZER_FLAGS)
+-AX_CFLAGS_GCC_OPTION([-fno-unsafe-math-optimizations], OPTIMIZER_FLAGS)
+-AX_CFLAGS_GCC_OPTION([-fno-aggressive-loop-optimizations], OPTIMIZER_FLAGS)
+-AX_CFLAGS_GCC_OPTION([-fomit-frame-pointer], OPTIMIZER_FLAGS)
+-AX_CFLAGS_GCC_OPTION([-fwrapv], OPTIMIZER_FLAGS)
+-
+-
+ WARNING_FLAGS=""
+ AX_CFLAGS_GCC_OPTION([-Wall], WARNING_FLAGS)
+ AX_CFLAGS_GCC_OPTION([-Wshadow], WARNING_FLAGS)

diff --git a/games-emulation/mednafen/files/mednafen-0.9.38.7-localedir.patch 
b/games-emulation/mednafen/files/mednafen-0.9.38.7-localedir.patch
new file mode 100644
index 000..5f2b3c6
--- /dev/null
+++ b/games-emulation/mednafen/files/mednafen-0.9.38.7-localedir.patch
@@ -0,0 +1,278 @@
+--- mednafen.orig/intl/Makefile.in
 mednafen/intl/Makefile.in
+@@ -44,7 +44,7 @@
+ includedir = @includedir@
+ datarootdir = @datarootdir@
+ datadir = @datadir@
+-localedir = $(datadir)/locale
++localedir = /usr/share/locale
+ gettextsrcdir = $(datadir)/gettext/intl
+ aliaspath = $(localedir)
+ subdir = intl
+--- mednafen.orig/src/cdplay/Makefile.am
 mednafen/src/cdplay/Makefile.am
+@@ -1,5 +1,5 @@
+ AUTOMAKE_OPTIONS = subdir-objects
+-DEFS = -DLOCALEDIR=\"$(datadir)/locale\" @DEFS@ 
++DEFS = -DLOCALEDIR=\"/usr/share/locale\" @DEFS@ 
+ DEFAULT_INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include 
-I$(top_srcdir)/intl
+ 
+ noinst_LIBRARIES  =   libcdplay.a
+--- mednafen.orig/src/demo/Makefile.am
 mednafen/src/demo/Makefile.am
+@@ -1,5 +1,5 @@
+ AUTOMAKE_OPTIONS = subdir-objects
+-DEFS = -DLOCALEDIR=\"$(datadir)/locale\" @DEFS@ 
++DEFS = -DLOCALEDIR=\"/usr/share/locale\" @DEFS@ 
+ DEFAULT_INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include 
-I$(top_srcdir)/intl
+ 
+ noinst_LIBRARIES  =   libdemo.a
+--- mednafen.orig/src/desa68/Makefile.am
 mednafen/src/desa68/Makefile.am
+@@ -6,7 +6,7 @@
+ 
+ AUTOMAKE_OPTIONS = subdir-objects
+ AM_CFLAGS = @AM_CFLAGS@ -Wno-multichar
+-DEFS = -DLOCALEDIR=\"$(datadir)/locale\" @DEFS@ 
++DEFS = -DLOCALEDIR=\"/usr/share/locale\" @DEFS@ 
+ DEFAULT_INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include 
-I$(top_srcdir)/intl
+ 
+ noinst_LIBRARIES  =  

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

2015-12-29 Thread Michael Palimaka
commit: f17da63209d325e35f91c5f236a6e2317b5bc050
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Dec 25 21:20:53 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:44:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f17da632

kde-apps/kdebase-meta: Cleanup, adjust RDEPENDs

Opt. RDEPEND to remove blocker w/ kde-plasma/plasma-workspace-wallpapers:
kde-apps/kde-wallpapers:5

Make sure of upgrade to non-blocking and fixed package versions:
kde-apps/konsole-4.14.3-r1
kde-base/kcheckpass-4.11.22-r1

Move all remaining plasma-workspace-4 deps behind USE=!minimal

Package-Manager: portage-2.2.24

 .../kdebase-meta/kdebase-meta-4.14.3-r1.ebuild | 63 ++
 1 file changed, 63 insertions(+)

diff --git a/kde-apps/kdebase-meta/kdebase-meta-4.14.3-r1.ebuild 
b/kde-apps/kdebase-meta/kdebase-meta-4.14.3-r1.ebuild
new file mode 100644
index 000..dc2139f
--- /dev/null
+++ b/kde-apps/kdebase-meta/kdebase-meta-4.14.3-r1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit kde4-meta-pkg
+
+DESCRIPTION="Merge this to pull in all kdebase-derived packages"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+display-manager minimal +wallpapers"
+
+RDEPEND="
+   $(add_kdeapps_dep dolphin)
+   $(add_kdeapps_dep kde-base-artwork)
+   $(add_kdeapps_dep kdebase-runtime-meta)
+   $(add_kdeapps_dep kdialog)
+   $(add_kdeapps_dep keditbookmarks)
+   $(add_kdeapps_dep kfind)
+   $(add_kdeapps_dep kfmclient)
+   $(add_kdeapps_dep konq-plugins)
+   $(add_kdeapps_dep konqueror)
+   $(add_kdeapps_dep konsole '' 4.14.3-r1)
+   $(add_kdeapps_dep kwrite)
+   $(add_kdeapps_dep libkonq)
+   $(add_kdeapps_dep nsplugins)
+   $(add_kdeapps_dep phonon-kde)
+   wallpapers? ( || ( $(add_kdeapps_dep kde-wallpapers) 
kde-apps/kde-wallpapers:5 ) )
+   !minimal? (
+   $(add_kdebase_dep freespacenotifier '' 4.11)
+   $(add_kdebase_dep kcheckpass '' 4.11.22-r1)
+   $(add_kdebase_dep kcminit '' 4.11)
+   $(add_kdebase_dep kdebase-cursors '' 4.11)
+   $(add_kdebase_dep kdebase-startkde '' 4.11)
+   $(add_kdeapps_dep kdepasswd)
+   $(add_kdebase_dep kephal '' 4.11)
+   $(add_kdebase_dep khotkeys '' 4.11)
+   $(add_kdebase_dep kinfocenter '' 4.11)
+   $(add_kdebase_dep klipper '' 4.11)
+   $(add_kdebase_dep kmenuedit '' 4.11)
+   $(add_kdebase_dep krunner '' 4.11)
+   $(add_kdebase_dep kscreensaver '' 4.11)
+   $(add_kdebase_dep ksmserver '' 4.11)
+   $(add_kdebase_dep ksplash '' 4.11)
+   $(add_kdebase_dep kstartupconfig '' 4.11)
+   $(add_kdebase_dep kstyles '' 4.11)
+   $(add_kdebase_dep ksysguard '' 4.11)
+   $(add_kdebase_dep ksystraycmd '' 4.11)
+   $(add_kdebase_dep kwin '' 4.11)
+   $(add_kdebase_dep kwrited '' 4.11)
+   $(add_kdebase_dep libkworkspace '' 4.11)
+   $(add_kdebase_dep liboxygenstyle '' 4.11)
+   $(add_kdebase_dep libplasmaclock '' 4.11)
+   $(add_kdebase_dep libplasmagenericshell '' 4.11)
+   $(add_kdebase_dep libtaskmanager '' 4.11)
+   $(add_kdeapps_dep plasma-apps)
+   $(add_kdebase_dep plasma-workspace '' 4.11)
+   $(add_kdebase_dep powerdevil '' 4.11)
+   $(add_kdebase_dep qguiplatformplugin_kde '' 4.11)
+   $(add_kdebase_dep solid-actions-kcm '' 4.11)
+   $(add_kdebase_dep systemsettings '' 4.11)
+   !prefix? ( display-manager? ( || ( $(add_kdebase_dep kdm '' 
4.11) x11-misc/lightdm x11-misc/sddm ) ) )
+   )
+"



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

2015-12-29 Thread Michael Palimaka
commit: 5c5f60001ed2731d4de2b323b7a915e8d9175d43
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Dec 27 09:51:37 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:44:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c5f6000

kde-base/kde-meta: Adjust RDEPEND for kde4-l10n

Package-Manager: portage-2.2.24

 kde-base/kde-meta/kde-meta-4.14.3-r1.ebuild | 34 +
 1 file changed, 34 insertions(+)

diff --git a/kde-base/kde-meta/kde-meta-4.14.3-r1.ebuild 
b/kde-base/kde-meta/kde-meta-4.14.3-r1.ebuild
new file mode 100644
index 000..d4f4bf6
--- /dev/null
+++ b/kde-base/kde-meta/kde-meta-4.14.3-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit kde4-meta-pkg
+
+DESCRIPTION="KDE - merge this to pull in all split kde-base/* packages"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="accessibility kdepim minimal nls sdk"
+
+RDEPEND="
+   $(add_kdeapps_dep kate)
+   $(add_kdeapps_dep kdeadmin-meta)
+   $(add_kdeapps_dep kdeartwork-meta)
+   $(add_kdeapps_dep kdebase-meta)
+   $(add_kdeapps_dep kdeedu-meta)
+   $(add_kdeapps_dep kdegames-meta)
+   $(add_kdeapps_dep kdegraphics-meta)
+   $(add_kdeapps_dep kdemultimedia-meta)
+   $(add_kdeapps_dep kdenetwork-meta)
+   $(add_kdeapps_dep kdetoys-meta)
+   $(add_kdeapps_dep kdeutils-meta)
+   accessibility? ( $(add_kdeapps_dep kdeaccessibility-meta) )
+   kdepim? ( $(add_kdeapps_dep kdepim-meta '' 4.4.11.1) )
+   nls? ( $(add_kdeapps_dep kde4-l10n '' 4.14.3-r1) )
+   sdk? (
+   $(add_kdebase_dep kdebindings-meta)
+   $(add_kdeapps_dep kdesdk-meta)
+   $(add_kdeapps_dep kdewebdev-meta)
+   )
+   !minimal? ( $(add_kdebase_dep kdeplasma-addons) )
+"
+REQUIRED_USE="minimal? ( !kdepim )"



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

2015-12-29 Thread Michael Palimaka
commit: 7523c99752e88d22ae2a167724fe2ac4ecf208cd
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Tue Dec 29 16:24:04 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:44:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7523c997

kde-apps/kdepim-meta: Adjust RDEPENDs for kde4-l10n, kdepim-l10n

Package-Manager: portage-2.2.24

 kde-apps/kdepim-meta/kdepim-meta-4.14.10-r1.ebuild | 38 ++
 1 file changed, 38 insertions(+)

diff --git a/kde-apps/kdepim-meta/kdepim-meta-4.14.10-r1.ebuild 
b/kde-apps/kdepim-meta/kdepim-meta-4.14.10-r1.ebuild
new file mode 100644
index 000..abb4e7e
--- /dev/null
+++ b/kde-apps/kdepim-meta/kdepim-meta-4.14.10-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit kde4-meta-pkg
+
+DESCRIPTION="kdepim - merge this to pull in all kdepim-derived packages"
+HOMEPAGE+=" https://community.kde.org/KDE_PIM;
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="nls"
+
+RDEPEND="
+   $(add_kdeapps_dep akonadiconsole)
+   $(add_kdeapps_dep akregator)
+   $(add_kdeapps_dep blogilo)
+   $(add_kdeapps_dep calendarjanitor)
+   $(add_kdeapps_dep kabcclient)
+   $(add_kdeapps_dep kaddressbook)
+   $(add_kdeapps_dep kalarm)
+   $(add_kdeapps_dep kdepim-icons)
+   $(add_kdeapps_dep kdepim-kresources)
+   $(add_kdeapps_dep kdepim-runtime)
+   $(add_kdeapps_dep kjots)
+   $(add_kdeapps_dep kleopatra)
+   $(add_kdeapps_dep kmail)
+   $(add_kdeapps_dep knode)
+   $(add_kdeapps_dep knotes)
+   $(add_kdeapps_dep konsolekalendar)
+   $(add_kdeapps_dep kontact)
+   $(add_kdeapps_dep korganizer)
+   $(add_kdeapps_dep ktimetracker)
+   $(add_kdeapps_dep ktnef)
+   nls? (
+   $(add_kdeapps_dep kde4-l10n '' 4.14.3-r1)
+   $(add_kdeapps_dep kdepim-l10n '' 4.14.3-r1)
+   )
+"



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

2015-12-29 Thread Michael Palimaka
commit: 79c81ed4dccef3655aa9a31cb3371a7947e46036
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Tue Dec 29 16:25:12 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:44:34 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79c81ed4

kde-apps/kdepim-meta: Drop old

Package-Manager: portage-2.2.24

 kde-apps/kdepim-meta/kdepim-meta-4.14.10.ebuild | 38 -
 1 file changed, 38 deletions(-)

diff --git a/kde-apps/kdepim-meta/kdepim-meta-4.14.10.ebuild 
b/kde-apps/kdepim-meta/kdepim-meta-4.14.10.ebuild
deleted file mode 100644
index b68aa36..000
--- a/kde-apps/kdepim-meta/kdepim-meta-4.14.10.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit kde4-meta-pkg
-
-DESCRIPTION="kdepim - merge this to pull in all kdepim-derived packages"
-HOMEPAGE+=" https://community.kde.org/KDE_PIM;
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="nls"
-
-RDEPEND="
-   $(add_kdeapps_dep akonadiconsole)
-   $(add_kdeapps_dep akregator)
-   $(add_kdeapps_dep blogilo)
-   $(add_kdeapps_dep calendarjanitor)
-   $(add_kdeapps_dep kabcclient)
-   $(add_kdeapps_dep kaddressbook)
-   $(add_kdeapps_dep kalarm)
-   $(add_kdeapps_dep kdepim-icons)
-   $(add_kdeapps_dep kdepim-kresources)
-   $(add_kdeapps_dep kdepim-runtime)
-   $(add_kdeapps_dep kjots)
-   $(add_kdeapps_dep kleopatra)
-   $(add_kdeapps_dep kmail)
-   $(add_kdeapps_dep knode)
-   $(add_kdeapps_dep knotes)
-   $(add_kdeapps_dep konsolekalendar)
-   $(add_kdeapps_dep kontact)
-   $(add_kdeapps_dep korganizer)
-   $(add_kdeapps_dep ktimetracker)
-   $(add_kdeapps_dep ktnef)
-   nls? (
-   $(add_kdeapps_dep kde4-l10n '' 4.14.3)
-   $(add_kdeapps_dep kdepim-l10n '' 4.14.3)
-   )
-"



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

2015-12-29 Thread Mike Frysinger
commit: d28f399b6c9b6c05584ba7415f1fcc3e3b271f5b
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Dec 29 16:53:06 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Dec 29 16:53:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d28f399b

sys-apps/man-pages: drop versions <4.03

 sys-apps/man-pages/Manifest  |  3 --
 sys-apps/man-pages/man-pages-4.00.ebuild | 54 
 sys-apps/man-pages/man-pages-4.01.ebuild | 54 
 sys-apps/man-pages/man-pages-4.02.ebuild | 53 ---
 4 files changed, 164 deletions(-)

diff --git a/sys-apps/man-pages/Manifest b/sys-apps/man-pages/Manifest
index 37b7b31..34f57aa 100644
--- a/sys-apps/man-pages/Manifest
+++ b/sys-apps/man-pages/Manifest
@@ -1,5 +1,2 @@
-DIST man-pages-4.00.tar.xz 1368256 SHA256 
444264eb7e3582f980ee3de073af394182ee6b9d5e03e89c55ba042dc20beba3 SHA512 
cec9a539b549c500ec1ed86ec5f1d3e1b11b944a4166cd44e3c5fa0051c597528880809e3cde52dbc95ce5e7eadc3dcb2bf4a9eed1f40ec0401c4e84763a9d55
 WHIRLPOOL 
e4c69f0ee80102339660a9bda9159fe6d4448839015c52855e3e7776f8a2e57f14c9f68502c61609c9d6a46a869f1b24b6b5f2eb7173dfb6e1b9a3346a5da169
-DIST man-pages-4.01.tar.xz 1395072 SHA256 
d194b5d4a381724dc291d9f36621ab2cbb51c003d72dcbd95896366db3b8d284 SHA512 
9b5680a1b230ba27b8b5277f8da3b06d09cc27b77c858b2deede50e09c455d75b334aa855e8a028e9ff2be10b7872b8e9f3ec1f7b0d17c546af445cadad3a89f
 WHIRLPOOL 
42d029e8299de096ad67b75e5be09836d209130592955df6644d6e4b84d243ee9b69476b52477a217d7bfba4abc9a1a3b97a2553d021e6779fa9b2dfe09626e8
-DIST man-pages-4.02.tar.xz 1403060 SHA256 
48aacb75d522dd31978682c4fd8bc68e43c9a409bc4c7a126810e7610dff0dd3 SHA512 
7a9c2464b25409a5aa1e074f6a511fa9e924c830205dddf5efcfca72ff5c1105a5c32cf24ba3c796063078dd28f715588cc0706ff49f3f11a0671636d0e30668
 WHIRLPOOL 
3579a8e0891e4d35d10a06a6e2e1e8426e31eb6e9486821ad34429d7e083e3dbf0784b607ccc2dfaab020c804a1e991d9b6607ad2a65e4334d16f8e71b263a71
 DIST man-pages-4.03.tar.xz 1411908 SHA256 
b0168c4ec48bb0bb82f6f91ea91a54e1f3587411c6637913d47470cd7338fc9c SHA512 
072f762eab6e198893cc0878e71ed6e0123d8ceab31db3ec7b28ca95287e8bb1dcec6d5168d7d2fae21ef547fedfd0ef6ebac03809787669578e98cfaec13f3d
 WHIRLPOOL 
7e6ca22e95c48a446a7eac166d631b0cdf07aac994343efbab6cb0b78d9b701251879527617293b28469d442f0fbbb0c2efea97eea085dbafc759da9882f1d07
 DIST man-pages-gentoo-2.tar.bz2 5141 SHA256 
b7d9423c2069e587deb7671273d4a1ffed7d31b9f95a689b128a759d636762f0 SHA512 
6e6524b8ad6f1b8c9b147665ee32af49e05603dac61d433acd6b4f1164adef27cd542898f272b07d8659725013dac59c7f34a858968cc054a4785c945e14a770
 WHIRLPOOL 
dcacb319a54ccd2a965786c816684de286581dee6f7b3f8ba4c97cc368e2e50abc92aad403dbdb7b0c15764accb06cd562046bcf14229ad12be242bb2bc7f651

diff --git a/sys-apps/man-pages/man-pages-4.00.ebuild 
b/sys-apps/man-pages/man-pages-4.00.ebuild
deleted file mode 100644
index 9a72715..000
--- a/sys-apps/man-pages/man-pages-4.00.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-GENTOO_PATCH=2
-
-DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
-HOMEPAGE="https://www.kernel.org/doc/man-pages/;
-SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
-   mirror://kernel/linux/docs/man-pages/${P}.tar.xz
-   http://man7.org/linux/man-pages/download/${P}.tar.xz
-   mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
-   
https://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2;
-
-LICENSE="man-pages GPL-2+ BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
-IUSE_LINGUAS=" da de fr it ja nl pl ro ru zh_CN"
-IUSE="nls ${IUSE_LINGUAS// / linguas_}"
-RESTRICT="binchecks"
-
-# Block packages that used to install colliding man pages #341953 #548900
-RDEPEND="virtual/man
-   !https://www.kernel.org/doc/man-pages/;
-SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
-   mirror://kernel/linux/docs/man-pages/${P}.tar.xz
-   http://man7.org/linux/man-pages/download/${P}.tar.xz
-   mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
-   
https://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2;
-
-LICENSE="man-pages GPL-2+ BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
-IUSE_LINGUAS=" da de fr it ja nl pl ro ru zh_CN"
-IUSE="nls ${IUSE_LINGUAS// / linguas_}"
-RESTRICT="binchecks"
-
-# Block packages that used to install colliding man pages #341953 #548900
-RDEPEND="virtual/man
-   !https://www.kernel.org/doc/man-pages/;
-SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
-   mirror://kernel/linux/docs/man-pages/${P}.tar.xz
-   

[gentoo-commits] proj/portage:master commit in: pym/repoman/checks/ebuilds/

2015-12-29 Thread Zac Medico
commit: 3fb1a213878a7c2df231141856ad9eb0e31d5d28
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Dec 26 17:04:30 2015 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 29 16:54:20 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=3fb1a213

repoman: add older gstreamer eclass to inherit.deprecated check

 pym/repoman/checks/ebuilds/checks.py | 5 +
 1 file changed, 5 insertions(+)

diff --git a/pym/repoman/checks/ebuilds/checks.py 
b/pym/repoman/checks/ebuilds/checks.py
index 6d562de..9f72324 100644
--- a/pym/repoman/checks/ebuilds/checks.py
+++ b/pym/repoman/checks/ebuilds/checks.py
@@ -422,6 +422,11 @@ class InheritDeprecated(LineCheck):
"python": "python-r1 / python-single-r1 / python-any-r1",
"ruby": "ruby-ng",
"x-modular": "xorg-2",
+   "gst-plugins-bad": "gstreamer",
+   "gst-plugins-base": "gstreamer",
+   "gst-plugins-good": "gstreamer",
+   "gst-plugins-ugly": "gstreamer",
+   "gst-plugins10": "gstreamer",
}
 
_inherit_re = re.compile(r'^\s*inherit\s(.*)$')



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

2015-12-29 Thread Mike Frysinger
commit: 99d12b7b7648fe6dee586454a3856f5584f19144
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Dec 29 16:56:26 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Dec 29 16:56:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99d12b7b

sys-apps/man-pages: version bump to 4.04

 sys-apps/man-pages/Manifest  |  1 +
 sys-apps/man-pages/man-pages-4.04.ebuild | 53 
 2 files changed, 54 insertions(+)

diff --git a/sys-apps/man-pages/Manifest b/sys-apps/man-pages/Manifest
index 34f57aa..ab22a87 100644
--- a/sys-apps/man-pages/Manifest
+++ b/sys-apps/man-pages/Manifest
@@ -1,2 +1,3 @@
 DIST man-pages-4.03.tar.xz 1411908 SHA256 
b0168c4ec48bb0bb82f6f91ea91a54e1f3587411c6637913d47470cd7338fc9c SHA512 
072f762eab6e198893cc0878e71ed6e0123d8ceab31db3ec7b28ca95287e8bb1dcec6d5168d7d2fae21ef547fedfd0ef6ebac03809787669578e98cfaec13f3d
 WHIRLPOOL 
7e6ca22e95c48a446a7eac166d631b0cdf07aac994343efbab6cb0b78d9b701251879527617293b28469d442f0fbbb0c2efea97eea085dbafc759da9882f1d07
+DIST man-pages-4.04.tar.xz 1426380 SHA256 
8fe1950df65ccf2b43ed64c329ccce0eedb2f7b42af12beff03d3aa609ee1f6d SHA512 
5e39fad95a5a289c3e009af0b85e2949b7e723ddc342ce941a426b24d90ce7e7d05e9afd708e27dfc8917cd3d9c018c8fc03a0d90e5db9020c1ce012f44c77ab
 WHIRLPOOL 
204d0d730f9e6d9858eaba9b604e149bc85cfc063e4dede2eb851007b4c0e265e48e496a18e2bbe7714e704fb78c70488115b22fcc7c46caff54b00e9b5e1913
 DIST man-pages-gentoo-2.tar.bz2 5141 SHA256 
b7d9423c2069e587deb7671273d4a1ffed7d31b9f95a689b128a759d636762f0 SHA512 
6e6524b8ad6f1b8c9b147665ee32af49e05603dac61d433acd6b4f1164adef27cd542898f272b07d8659725013dac59c7f34a858968cc054a4785c945e14a770
 WHIRLPOOL 
dcacb319a54ccd2a965786c816684de286581dee6f7b3f8ba4c97cc368e2e50abc92aad403dbdb7b0c15764accb06cd562046bcf14229ad12be242bb2bc7f651

diff --git a/sys-apps/man-pages/man-pages-4.04.ebuild 
b/sys-apps/man-pages/man-pages-4.04.ebuild
new file mode 100644
index 000..1627eaf
--- /dev/null
+++ b/sys-apps/man-pages/man-pages-4.04.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+GENTOO_PATCH=2
+
+DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
+HOMEPAGE="https://www.kernel.org/doc/man-pages/;
+SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
+   mirror://kernel/linux/docs/man-pages/${P}.tar.xz
+   mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
+   
https://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2;
+
+LICENSE="man-pages GPL-2+ BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
+IUSE_LINGUAS=" da de fr it ja nl pl ro ru zh_CN"
+IUSE="nls ${IUSE_LINGUAS// / linguas_}"
+RESTRICT="binchecks"
+
+# Block packages that used to install colliding man pages #341953 #548900
+RDEPEND="virtual/man
+   !

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

2015-12-29 Thread Mike Frysinger
commit: 612b29824f6d8e0c10187f74724e8ba88878058e
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Dec 29 16:56:12 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Dec 29 16:56:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=612b2982

media-plugins/evas_generic_loaders: version bump to 1.16.0

 media-plugins/evas_generic_loaders/Manifest|  1 +
 .../evas_generic_loaders-1.16.0.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/media-plugins/evas_generic_loaders/Manifest 
b/media-plugins/evas_generic_loaders/Manifest
index 5a83016..606bfed 100644
--- a/media-plugins/evas_generic_loaders/Manifest
+++ b/media-plugins/evas_generic_loaders/Manifest
@@ -1,2 +1,3 @@
 DIST evas_generic_loaders-1.12.0.tar.bz2 215245 SHA256 
981a6b70cfcc99c95936c835c9992735fcb004a99579e461ae64d2e28ea14f20 SHA512 
9752fad43843c4fe2a86d8fcab00176f2dcb27888b84f57632add70a47daa4ab5775c0dcbd785e4a8b20b4ce09f4fd6f361128f166cd1f4753ac86afeb8443d5
 WHIRLPOOL 
4657ef9113d6e0255c26f65bceda87f29defccfbf7cdb803d722d9dbff1ff45721dd4287bc98dd79a06c3072756e062df9391bb5828657c950cbe0c3baf6a77c
 DIST evas_generic_loaders-1.15.0.tar.xz 186976 SHA256 
1e539e4d4d4e1590345caeb7fdd84f47ec7cd63bb76b6b7107a87420a401fd7f SHA512 
629f2d264b7904dbe4d057878c96ad78257bb73e1304ce441d7f14d4c1d5638793331e0b7bd376b9debe8761a62d96e5342ce642a7b1aa164aee595e327a6b08
 WHIRLPOOL 
b5112d1833f274a90fc2087ece41e4c26057abbdc1ee7b2f73ce960ff4f533ea321e805f732538a4546a2a0305141d775ec0b4ea4f4040e0025bccaf63263611
+DIST evas_generic_loaders-1.16.0.tar.xz 186976 SHA256 
d5799c212c36286b954c111bbd2d87950b0c96c5ad0ace8ebcad9918f38883c6 SHA512 
37318399348c9944a36cb1809b072fa63cf2868dcb7b728daf1fd569fd5bd45cc65e6c948857784cb9a5ab1870bbddb6b30bd454c085febf46ca4fd58d3b5479
 WHIRLPOOL 
4caffeb22d6a44cbab81d011e84c7b447c62787759e20bf01c9cdd51f0d8dcb80cc189bf2ac7ec23b7fbc10308f0c904d3117d51b4ca1a8b4ae91148cef8ccd3

diff --git 
a/media-plugins/evas_generic_loaders/evas_generic_loaders-1.16.0.ebuild 
b/media-plugins/evas_generic_loaders/evas_generic_loaders-1.16.0.ebuild
new file mode 100644
index 000..91e5a01
--- /dev/null
+++ b/media-plugins/evas_generic_loaders/evas_generic_loaders-1.16.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+MY_P=${PN}-${PV/_/-}
+
+if [[ "${PV}" == "" ]] ; then
+   EGIT_SUB_PROJECT="core"
+   EGIT_URI_APPEND="${PN}"
+else
+   
SRC_URI="https://download.enlightenment.org/rel/libs/${PN}/${MY_P}.tar.xz;
+   EKEY_STATE="snap"
+fi
+
+inherit enlightenment
+
+DESCRIPTION="Provides external applications as generic loaders for Evas"
+HOMEPAGE="https://www.enlightenment.org/;
+
+LICENSE="GPL-2"
+IUSE="gstreamer pdf postscript raw svg"
+
+RDEPEND=">=dev-libs/efl-${PV}
+   gstreamer? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   pdf? ( app-text/poppler )
+   postscript? ( app-text/libspectre )
+   raw? ( media-libs/libraw )
+   svg? (
+   gnome-base/librsvg
+   x11-libs/cairo
+   )"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+   E_ECONF=(
+   $(use_enable gstreamer gstreamer1)
+   $(use_enable pdf poppler)
+   $(use_enable postscript spectre)
+   $(use_enable raw libraw)
+   $(use_enable svg)
+
+   --disable-gstreamer
+   )
+
+   enlightenment_src_configure
+}



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

2015-12-29 Thread Mike Frysinger
commit: b74b71f9cbf34ba7c5089e45485bc72609634052
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Dec 29 16:48:37 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Dec 29 16:48:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b74b71f9

sys-apps/man-pages: stabilize 4.03

 sys-apps/man-pages/man-pages-4.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/man-pages/man-pages-4.03.ebuild 
b/sys-apps/man-pages/man-pages-4.03.ebuild
index 27bb8de..4a49a25 100644
--- a/sys-apps/man-pages/man-pages-4.03.ebuild
+++ b/sys-apps/man-pages/man-pages-4.03.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
 
 LICENSE="man-pages GPL-2+ BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
 IUSE_LINGUAS=" da de fr it ja nl pl ro ru zh_CN"
 IUSE="nls ${IUSE_LINGUAS// / linguas_}"
 RESTRICT="binchecks"



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

2015-12-29 Thread Mike Gilbert
commit: 42b4656abb80a2f6077c52e7e8d178d92964d0b9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Dec 29 17:19:28 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Dec 29 17:24:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42b4656a

dev-util/ninja: Update EGIT_REPO_URI

Package-Manager: portage-2.2.26_p32

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

diff --git a/dev-util/ninja/ninja-.ebuild b/dev-util/ninja/ninja-.ebuild
index 1b7057a..6e39985 100644
--- a/dev-util/ninja/ninja-.ebuild
+++ b/dev-util/ninja/ninja-.ebuild
@@ -10,7 +10,7 @@ inherit bash-completion-r1 elisp-common python-any-r1 
toolchain-funcs
 
 if [[ ${PV} ==  ]]; then
inherit git-r3
-   EGIT_REPO_URI="https://github.com/martine/ninja.git;
+   EGIT_REPO_URI="https://github.com/ninja-build/ninja.git;
 else
SRC_URI="https://github.com/martine/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"



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

2015-12-29 Thread Mike Gilbert
commit: e5b1f697761ce3e41ba512cc9b4d81ffbb9365f5
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Dec 29 17:21:14 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Dec 29 17:25:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5b1f697

dev-util/ninja: Update HOMEPAGE

Package-Manager: portage-2.2.26_p32

 dev-util/ninja/ninja-1.6.0.ebuild | 2 +-
 dev-util/ninja/ninja-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/ninja/ninja-1.6.0.ebuild 
b/dev-util/ninja/ninja-1.6.0.ebuild
index e69a4a1..999dc9d 100644
--- a/dev-util/ninja/ninja-1.6.0.ebuild
+++ b/dev-util/ninja/ninja-1.6.0.ebuild
@@ -17,7 +17,7 @@ else
 fi
 
 DESCRIPTION="A small build system similar to make"
-HOMEPAGE="https://github.com/martine/ninja;
+HOMEPAGE="https://ninja-build.org/;
 
 LICENSE="Apache-2.0"
 SLOT="0"

diff --git a/dev-util/ninja/ninja-.ebuild b/dev-util/ninja/ninja-.ebuild
index 6e39985..4b2246b 100644
--- a/dev-util/ninja/ninja-.ebuild
+++ b/dev-util/ninja/ninja-.ebuild
@@ -17,7 +17,7 @@ else
 fi
 
 DESCRIPTION="A small build system similar to make"
-HOMEPAGE="https://github.com/martine/ninja;
+HOMEPAGE="https://ninja-build.org/;
 
 LICENSE="Apache-2.0"
 SLOT="0"



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

2015-12-29 Thread Mike Gilbert
commit: f457cd23e63771ba2a903032ecd2cced03878262
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Dec 29 17:24:30 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Dec 29 17:25:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f457cd23

dev-util/ninja: Support python3.5

Package-Manager: portage-2.2.26_p32

 dev-util/ninja/ninja-1.6.0.ebuild | 2 +-
 dev-util/ninja/ninja-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/ninja/ninja-1.6.0.ebuild 
b/dev-util/ninja/ninja-1.6.0.ebuild
index 999dc9d..fcdbca7 100644
--- a/dev-util/ninja/ninja-1.6.0.ebuild
+++ b/dev-util/ninja/ninja-1.6.0.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 inherit bash-completion-r1 elisp-common python-any-r1 toolchain-funcs
 

diff --git a/dev-util/ninja/ninja-.ebuild b/dev-util/ninja/ninja-.ebuild
index 4b2246b..6bf677c 100644
--- a/dev-util/ninja/ninja-.ebuild
+++ b/dev-util/ninja/ninja-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 inherit bash-completion-r1 elisp-common python-any-r1 toolchain-funcs
 



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

2015-12-29 Thread Mike Gilbert
commit: 4781b59bc7851d4b4e5b25af041cf78bdd15ea70
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Dec 29 17:22:08 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Dec 29 17:25:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4781b59b

dev-util/ninja: Remove old

Package-Manager: portage-2.2.26_p32

 dev-util/ninja/Manifest   |   2 -
 dev-util/ninja/ninja-1.5.1.ebuild | 129 --
 dev-util/ninja/ninja-1.5.3.ebuild | 123 
 3 files changed, 254 deletions(-)

diff --git a/dev-util/ninja/Manifest b/dev-util/ninja/Manifest
index 25b5d30..7fd73a1 100644
--- a/dev-util/ninja/Manifest
+++ b/dev-util/ninja/Manifest
@@ -1,3 +1 @@
-DIST ninja-1.5.1.tar.gz 163437 SHA256 
fba77b9ed4b4dd0e86c4513776938dc64bd4508dc2055b04c0c6df68bcfa397d SHA512 
ab82389ee88bd68ec57e720dabb47494371990dca581cf9bb35650177164f04bf41c81ab3e5019a370eeacc7f5f49ae81d41d8b21e1b07cc8abedce37e00da61
 WHIRLPOOL 
3fdd76505aa39a3960c8d47fc04e7fb12f613561ecf8f29d88329c06b78a0ef47fda02226d6ebb12718676c2ea9dc6bf7352564150de8b92f1b0c189bcf21e3a
-DIST ninja-1.5.3.tar.gz 168829 SHA256 
7c953b5a7c26cfcd082882e3f3e2cd08fee8848ad228bb47223b18ea18777ec0 SHA512 
6d8cba5838d796bf50a17ca760498309477342422d1ad971e8fd030d4dd06aa9095ce27c2a02f89504cdf3aa5a8ba5af395a2c805b5c45e266a8250985212eea
 WHIRLPOOL 
6b6116e4bf8a2c622559cee7f2f9c48f4f896e878eacb880d9bad483eaa2f18fe9b6a11210ca396679177850b0df5377de52110c47ac22e6fd8641cbd7ccabe3
 DIST ninja-1.6.0.tar.gz 174501 SHA256 
b43e88fb068fe4d92a3dfd9eb4d19755dae5c33415db2e9b7b61b4659009cde7 SHA512 
551a9e14b95c2d2ddad6bee0f939a45614cce86719748dc580192dd122f3671e3d95fd6a6fb3facb2d314ba100d61a004af4df77f59df119b1b95c6fe8c38875
 WHIRLPOOL 
74d10df3d112c6cbd524f802978f1a56d2643767d947cff33a276a29f89485576f7d6b40597f9eac1db1446ae22c7f2c73c9d1f7795132e0254fa970df37063b

diff --git a/dev-util/ninja/ninja-1.5.1.ebuild 
b/dev-util/ninja/ninja-1.5.1.ebuild
deleted file mode 100644
index e68cf63..000
--- a/dev-util/ninja/ninja-1.5.1.ebuild
+++ /dev/null
@@ -1,129 +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 bash-completion-r1 elisp-common python-any-r1 toolchain-funcs
-
-if [ "${PV}" = "99" ]; then
-   EGIT_REPO_URI="git://github.com/martine/ninja.git 
https://github.com/martine/ninja.git;
-   inherit git-2
-   KEYWORDS=""
-else
-   SRC_URI="https://github.com/martine/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm ~arm64 ~m68k ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-fi
-
-DESCRIPTION="A small build system similar to make"
-HOMEPAGE="https://github.com/martine/ninja;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-
-IUSE="doc emacs test vim-syntax zsh-completion"
-
-DEPEND="
-   ${PYTHON_DEPS}
-   dev-util/re2c
-   doc? (
-   app-text/asciidoc
-   app-doc/doxygen
-   dev-libs/libxslt
-   )
-   test? ( dev-cpp/gtest )
-"
-RDEPEND="
-   emacs? ( virtual/emacs )
-   vim-syntax? (
-   || (
-   app-editors/vim
-   app-editors/gvim
-   )
-   )
-   zsh-completion? ( app-shells/zsh )
-   ! 
"${T}/${PN}.vim"
-   insinto /usr/share/vim/vimfiles/ftdetect
-   doins "${T}/${PN}.vim"
-   fi
-
-   if use zsh-completion; then
-   insinto /usr/share/zsh/site-functions
-   newins misc/zsh-completion _ninja
-   fi
-
-   if use emacs; then
-   cd misc || die
-   elisp-install ${PN} ninja-mode.el* || die
-   fi
-}
-
-pkg_postinst() {
-   use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-   use emacs && elisp-site-regen
-}

diff --git a/dev-util/ninja/ninja-1.5.3.ebuild 
b/dev-util/ninja/ninja-1.5.3.ebuild
deleted file mode 100644
index 65381a5..000
--- a/dev-util/ninja/ninja-1.5.3.ebuild
+++ /dev/null
@@ -1,123 +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 bash-completion-r1 elisp-common python-any-r1 toolchain-funcs
-
-SRC_URI="https://github.com/martine/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="alpha amd64 arm arm64 ia64 m68k ppc ppc64 s390 sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-
-DESCRIPTION="A small build system similar to make"
-HOMEPAGE="https://github.com/martine/ninja;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-
-IUSE="doc emacs test vim-syntax zsh-completion"
-
-DEPEND="
-   ${PYTHON_DEPS}
-   dev-util/re2c
-   doc? (
-   app-text/asciidoc
-   app-doc/doxygen
-   dev-libs/libxslt
-   )
-   test? ( dev-cpp/gtest )
-"
-RDEPEND="
-   

[gentoo-commits] repo/gentoo:master commit in: net-irc/ngircd/

2015-12-29 Thread Ian Delaney
commit: de653278b04424cf22ef5322df6635faa211bad3
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 29 15:48:36 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 15:49:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de653278

net-irc/ngircd: bump to vn. ngircd-23

ebuild submitted by Moritz Kick who has agreed to proxy maintain this package
bu support of the proxy maintainers project,
added to metadata.xml accordingly, ebuild runtested, fixes the gentoo bug

Gentoo bug: #501262

Package-Manager: portage-2.2.24

 net-irc/ngircd/Manifest |  1 +
 net-irc/ngircd/metadata.xml | 12 --
 net-irc/ngircd/ngircd-23.ebuild | 85 +
 3 files changed, 95 insertions(+), 3 deletions(-)

diff --git a/net-irc/ngircd/Manifest b/net-irc/ngircd/Manifest
index 21d5b8a..0afd7e0 100644
--- a/net-irc/ngircd/Manifest
+++ b/net-irc/ngircd/Manifest
@@ -1 +1,2 @@
 DIST ngircd-20.3.tar.gz 479982 SHA256 
55d7c74c6df790b11a68c07f39836d581965087efb618d3e9a6bec855364c2f9 SHA512 
8bc36a66e893873fade6dcadb07bf561fb25156714ba30168cf2e399e50f4dd80592fd7fcdb6c8d1083fa7c5e839b0da3a27ed4ce2041a2c5ab2b9581def948c
 WHIRLPOOL 
379ef30a2e23dfc3a523d85e9f2c1531b8079d0880b5f46b9cdb803af873fc943d25186ebc0b9294da26140b46a37a4ebd2b86f3c7cf17acd3a802e4a395dd1e
+DIST ngircd-23.tar.gz 517686 SHA256 
99b8b67a975a9ae9b81c96bdee02133a10f515c718825d34cedcb64f1fc95e73 SHA512 
714fbb4af12335e62c615fa1e8de9c7366c4c6da6af9b334019ba900dce072067f7b08199de8c96aad5dd4b9b786b57d536ba9dc92c62b37d2ae11960dbd01b1
 WHIRLPOOL 
06e1b3a9675277c980898118e71e9a6c08de998c93919f431ecd7505f64dc57617beef885aae5e5c72b27cd1df3c89204dbc2101c1f4a30970fceb78a7825441

diff --git a/net-irc/ngircd/metadata.xml b/net-irc/ngircd/metadata.xml
index 0761e00..3bca316 100644
--- a/net-irc/ngircd/metadata.xml
+++ b/net-irc/ngircd/metadata.xml
@@ -2,7 +2,13 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
 net-irc
-
-   Enables support for 
net-libs/libident
-
+   proxy-maintainers
+   
+   gen...@blackphoenix.de
+   Moritz Kick
+   Proxied maintainer; set to assignee in all 
bugs
+   
+   
+   Enables support for 
net-libs/libident
+   
 

diff --git a/net-irc/ngircd/ngircd-23.ebuild b/net-irc/ngircd/ngircd-23.ebuild
new file mode 100644
index 000..6e71ce9
--- /dev/null
+++ b/net-irc/ngircd/ngircd-23.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit autotools-utils eutils user
+
+DESCRIPTION="An IRC server written from scratch"
+HOMEPAGE="http://ngircd.barton.de/;
+SRC_URI="http://ngircd.barton.de/pub/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x64-macos"
+IUSE="debug gnutls iconv ident ipv6 libressl pam ssl tcpd zlib"
+
+RDEPEND="
+   iconv? ( virtual/libiconv )
+   ident? ( net-libs/libident )
+   pam? ( virtual/pam )
+   ssl? (
+   !gnutls? (
+   !libressl? ( dev-libs/openssl:0 )
+   )
+   gnutls? ( net-libs/gnutls )
+   libressl? ( dev-libs/libressl )
+   )
+   tcpd? ( sys-apps/tcp-wrappers )
+   zlib? ( sys-libs/zlib )
+"
+DEPEND="${RDEPEND}
+   >=sys-apps/sed-4
+"
+
+RESTRICT="test"
+
+src_configure() {
+   if ! use prefix; then
+   sed -i \
+   -e "s:;ServerUID = 65534:ServerUID = ngircd:" \
+   -e "s:;ServerGID = 65534:ServerGID = nogroup:" \
+   doc/sample-ngircd.conf.tmpl || die
+   fi
+
+   local myeconfargs=(
+   --docdir="${EPREFIX}"/usr/share/doc/${PF}
+   --sysconfdir="${EPREFIX}"/etc/ngircd
+   $(use_enable debug sniffer)
+   $(use_enable debug)
+   $(use_enable ipv6)
+   $(use_with iconv)
+   $(use_with ident)
+   $(use_with pam)
+   $(use_with tcpd tcp-wrappers)
+   $(use_with zlib)
+   )
+
+   if use ssl; then
+   myeconfargs+=(
+   $(use_with !gnutls openssl)
+   $(use_with gnutls)
+   )
+   else
+   myeconfargs+=(
+   --without-gnutls
+   --without-openssl
+   )
+   fi
+
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   newinitd "${FILESDIR}"/ngircd.init.d ngircd
+}
+
+pkg_postinst() {
+   if ! use prefix; then
+   enewuser ngircd
+   chown ngircd "${ROOT}"/etc/ngircd/ngircd.conf
+   fi
+}



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

2015-12-29 Thread Michael Palimaka
commit: 41a56edd8b8be2d7c64f066785694a7bdcd0017d
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Dec 25 23:20:54 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:09:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41a56edd

kde-apps/kde4-l10n: Fix SRC_URI, bug 569762

Scrub fallout after pkgmove

Package-Manager: portage-2.2.24

 kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild | 3 ++-
 kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild| 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild
index e13d5bf..045ea02 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild
@@ -23,7 +23,8 @@ MY_LANGS="ar bg bs ca ca@valencia cs da de el en_GB es et eu 
fa fi fr ga gl he
 hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru sk
 sl sr sv tr ug uk wa zh_CN zh_TW"
 
-URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
+URI_BASE="${SRC_URI/kde4/kde}"
+URI_BASE="${URI_BASE/-${PV}.tar.xz/}"
 SRC_URI=""
 
 for MY_LANG in ${MY_LANGS} ; do

diff --git a/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild
index f573289..6baad5b 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild
@@ -23,7 +23,8 @@ MY_LANGS="ar bg bs ca ca@valencia cs da de el en_GB es et eu 
fa fi fr ga gl he
 hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru sk
 sl sr sv tr ug uk wa zh_CN zh_TW"
 
-URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
+URI_BASE="${SRC_URI/kde4/kde}"
+URI_BASE="${URI_BASE/-${PV}.tar.xz/}"
 SRC_URI=""
 
 for MY_LANG in ${MY_LANGS} ; do



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

2015-12-29 Thread Michael Palimaka
commit: 484aedbb4a312d70dab93ec00e78548ee8583b19
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Dec 25 21:50:43 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:09:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=484aedbb

kde-base/kdelibs: Drop old

Package-Manager: portage-2.2.24

 kde-base/kdelibs/kdelibs-4.14.15.ebuild | 303 
 1 file changed, 303 deletions(-)

diff --git a/kde-base/kdelibs/kdelibs-4.14.15.ebuild 
b/kde-base/kdelibs/kdelibs-4.14.15.ebuild
deleted file mode 100644
index ca8747b..000
--- a/kde-base/kdelibs/kdelibs-4.14.15.ebuild
+++ /dev/null
@@ -1,303 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-CMAKE_MIN_VERSION="3.3.1-r1"
-CPPUNIT_REQUIRED="optional"
-DECLARATIVE_REQUIRED="always"
-OPENGL_REQUIRED="optional"
-KDE_HANDBOOK="optional"
-inherit kde4-base fdo-mime multilib toolchain-funcs flag-o-matic
-
-EGIT_BRANCH="KDE/4.14"
-
-DESCRIPTION="KDE libraries needed by all KDE programs"
-
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux"
-LICENSE="LGPL-2.1"
-IUSE="cpu_flags_x86_3dnow acl alsa altivec +bzip2 +crypt debug doc fam jpeg2k
-kerberos libressl lzma cpu_flags_x86_mmx nls openexr +policykit spell
-cpu_flags_x86_sse cpu_flags_x86_sse2 ssl +udev +udisks +upower zeroconf"
-
-REQUIRED_USE="
-   udisks? ( udev )
-   upower? ( udev )
-"
-
-# needs the kate regression testsuite from svn
-RESTRICT="test"
-
-COMMONDEPEND="
-   >=app-misc/strigi-0.7.7
-   app-text/docbook-xml-dtd:4.2
-   app-text/docbook-xsl-stylesheets
-   >=dev-libs/libattica-0.4.2
-   >=dev-libs/libdbusmenu-qt-0.3.2[qt4(+)]
-   dev-libs/libpcre[unicode]
-   dev-libs/libxml2
-   dev-libs/libxslt
-   media-libs/fontconfig
-   media-libs/freetype:2
-   media-libs/giflib
-   media-libs/libpng:0=
-   media-libs/phonon[qt4]
-   sys-libs/zlib
-   virtual/jpeg:0
-   >=x11-misc/shared-mime-info-0.60
-   acl? ( virtual/acl )
-   alsa? ( media-libs/alsa-lib )
-   !aqua? (
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libXcursor
-   x11-libs/libXdmcp
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXft
-   x11-libs/libXpm
-   x11-libs/libXrender
-   x11-libs/libXScrnSaver
-   x11-libs/libXtst
-   !kernel_SunOS? (
-   || (
-   sys-libs/libutempter
-   >=sys-freebsd/freebsd-lib-9.0
-   )
-   )
-   )
-   bzip2? ( app-arch/bzip2 )
-   crypt? ( app-crypt/qca:2[qt4(+)] )
-   fam? ( virtual/fam )
-   jpeg2k? ( media-libs/jasper )
-   kerberos? ( virtual/krb5 )
-   openexr? (
-   media-libs/openexr:=
-   media-libs/ilmbase:=
-   )
-   policykit? ( >=sys-auth/polkit-qt-0.103.0[qt4(+)] )
-   spell? ( app-text/enchant )
-   ssl? (
-   libressl? ( dev-libs/libressl )
-   !libressl? ( dev-libs/openssl:0 )
-   )
-   udev? ( virtual/udev )
-   zeroconf? ( net-dns/avahi[mdnsresponder-compat] )
-"
-DEPEND="${COMMONDEPEND}
-   doc? ( app-doc/doxygen )
-   nls? ( virtual/libintl )
-"
-RDEPEND="${COMMONDEPEND}
-   !dev-qt/qtphonon
-   !<=kde-base/plasma-workspace-4.7.1:4
-   !<=kde-base/kcontrol-4.4.50:4
-   >=app-crypt/gnupg-2.0.11
-   app-misc/ca-certificates
-   $(add_kdebase_dep kde-env '' 4.14.3)
-   sys-apps/dbus[X]
-   !aqua? (
-   udisks? ( sys-fs/udisks:2 )
-   x11-apps/iceauth
-   x11-apps/rgb
-   >=x11-misc/xdg-utils-1.0.2-r3
-   upower? ( || ( >=sys-power/upower-0.9.23 
sys-power/upower-pm-utils ) )
-   )
-   udev? ( app-misc/media-player-info )
-"
-PDEPEND="
-   $(add_kdebase_dep katepart '' 4.14.3)
-   || (
-   $(add_kdeapps_dep kfmclient '' 4.14.3)
-   x11-misc/xdg-utils
-   )
-   handbook? (
-   || (
-   $(add_kdebase_dep khelpcenter '' 4.14.3)
-   kde-plasma/khelpcenter:5[compat(+)]
-   )
-   )
-   policykit? ( || (
-   >=sys-auth/polkit-kde-agent-0.99
-   kde-plasma/polkit-kde-agent
-   ) )
-"
-
-PATCHES=(
-   "${FILESDIR}/dist/01_gentoo_set_xdg_menu_prefix-1.patch"
-   "${FILESDIR}/dist/02_gentoo_append_xdg_config_dirs-1.patch"
-   "${FILESDIR}/${PN}-4.14.5-fatalwarnings.patch"
-   "${FILESDIR}/${PN}-4.14.5-mimetypes.patch"
-   "${FILESDIR}/${PN}-4.4.90-xslt.patch"
-   "${FILESDIR}/${PN}-4.6.3-no_suid_kdeinit.patch"

[gentoo-commits] repo/gentoo:master commit in: kde-base/kdelibs/, kde-base/kdelibs/files/

2015-12-29 Thread Michael Palimaka
commit: cd28e7b30b1a2c93e489974ce7c05bb127ce3fdf
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Dec 25 21:48:48 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:09:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd28e7b3

kde-base/kdelibs: Add patch that should have been part of 4.14.15 already

This reverts a change from 4.14.14 that supposedly fixed a crash in
kde-base/akregator, but led to crashes on exit in other applications
such as kopete.

Package-Manager: portage-2.2.24

 .../kdelibs/files/kdelibs-4.14.15-revert.patch |  52 
 kde-base/kdelibs/kdelibs-4.14.15-r1.ebuild | 304 +
 2 files changed, 356 insertions(+)

diff --git a/kde-base/kdelibs/files/kdelibs-4.14.15-revert.patch 
b/kde-base/kdelibs/files/kdelibs-4.14.15-revert.patch
new file mode 100644
index 000..3840331
--- /dev/null
+++ b/kde-base/kdelibs/files/kdelibs-4.14.15-revert.patch
@@ -0,0 +1,52 @@
+From: Alex Merry 
+Date: Tue, 15 Dec 2015 19:26:47 +
+Subject: Revert "backport commit b72fc5e56579035bf987075e16324ef95ef8e3d4"
+X-Git-Url: 
http://quickgit.kde.org/?p=kdelibs.git=commitdiff=a02df05e4bd083f98147c86f88da2f818fc6c9f4
+---
+Revert "backport commit b72fc5e56579035bf987075e16324ef95ef8e3d4"
+
+This reverts commit 4f7ea2f770cf062ef22293fbb21a086f3e0cbfcb.
+
+This change seems to be causing more problems than it fixes - it's
+probably just too big of a behaviour change for kdelibs. Which means
+that akregator will probably keep randomly crashing, but the alternative
+seems to be various other applications consistently crashing at exit.
+
+If we can fix those applications (Kopete in particular), we can consider
+re-applying this afterwards.
+
+BUG: 355275
+---
+
+
+--- a/kparts/part.cpp
 b/kparts/part.cpp
+@@ -350,7 +350,7 @@
+ d->m_widget = 0;
+ if (d->m_autoDeletePart) {
+ kDebug(1000) << "deleting part" << objectName();
+-this->deleteLater();
++delete this; // ouch, this should probably be deleteLater()
+ }
+ }
+ 
+
+--- a/kparts/tests/parttest.cpp
 b/kparts/tests/parttest.cpp
+@@ -48,7 +48,6 @@
+ KParts::Part* part = new TestPart(0, 0);
+ QPointer partPointer(part);
+ delete part->widget();
+-QCoreApplication::sendPostedEvents(0, QEvent::DeferredDelete);
+ QVERIFY(partPointer.isNull());
+ }
+ 
+@@ -58,7 +57,6 @@
+ QPointer partPointer(part);
+ QPointer widgetPointer(part->widget());
+ delete part;
+-QCoreApplication::sendPostedEvents(0, QEvent::DeferredDelete);
+ QVERIFY(widgetPointer.isNull());
+ }
+ 
+

diff --git a/kde-base/kdelibs/kdelibs-4.14.15-r1.ebuild 
b/kde-base/kdelibs/kdelibs-4.14.15-r1.ebuild
new file mode 100644
index 000..f0ded53
--- /dev/null
+++ b/kde-base/kdelibs/kdelibs-4.14.15-r1.ebuild
@@ -0,0 +1,304 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+CMAKE_MIN_VERSION="3.3.1-r1"
+CPPUNIT_REQUIRED="optional"
+DECLARATIVE_REQUIRED="always"
+OPENGL_REQUIRED="optional"
+KDE_HANDBOOK="optional"
+inherit kde4-base fdo-mime multilib toolchain-funcs flag-o-matic
+
+EGIT_BRANCH="KDE/4.14"
+
+DESCRIPTION="KDE libraries needed by all KDE programs"
+
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux"
+LICENSE="LGPL-2.1"
+IUSE="cpu_flags_x86_3dnow acl alsa altivec +bzip2 +crypt debug doc fam jpeg2k
+kerberos libressl lzma cpu_flags_x86_mmx nls openexr +policykit spell
+cpu_flags_x86_sse cpu_flags_x86_sse2 ssl +udev +udisks +upower zeroconf"
+
+REQUIRED_USE="
+   udisks? ( udev )
+   upower? ( udev )
+"
+
+# needs the kate regression testsuite from svn
+RESTRICT="test"
+
+COMMONDEPEND="
+   >=app-misc/strigi-0.7.7
+   app-text/docbook-xml-dtd:4.2
+   app-text/docbook-xsl-stylesheets
+   >=dev-libs/libattica-0.4.2
+   >=dev-libs/libdbusmenu-qt-0.3.2[qt4(+)]
+   dev-libs/libpcre[unicode]
+   dev-libs/libxml2
+   dev-libs/libxslt
+   media-libs/fontconfig
+   media-libs/freetype:2
+   media-libs/giflib
+   media-libs/libpng:0=
+   media-libs/phonon[qt4]
+   sys-libs/zlib
+   virtual/jpeg:0
+   >=x11-misc/shared-mime-info-0.60
+   acl? ( virtual/acl )
+   alsa? ( media-libs/alsa-lib )
+   !aqua? (
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXau
+   x11-libs/libXcursor
+   x11-libs/libXdmcp
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXft
+   x11-libs/libXpm
+   x11-libs/libXrender
+   x11-libs/libXScrnSaver
+   x11-libs/libXtst
+   !kernel_SunOS? (
+   || (
+   sys-libs/libutempter
+   >=sys-freebsd/freebsd-lib-9.0

[gentoo-commits] proj/kde:master commit in: app-backup/kfoldersync/

2015-12-29 Thread Michael Palimaka
commit: d3aff3cf218f5b259e9891473f4c189e7168daf2
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Tue Dec 29 12:55:51 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:46:11 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d3aff3cf

app-backup/kfoldersync: New package, bug 507500

Based on work done by Frank Krömmelbein and Lorenzo Porta (Vindex17)
See also https://bugs.gentoo.org/show_bug.cgi?id=507500

Package-Manager: portage-2.2.24

 app-backup/kfoldersync/kfoldersync-3.0.0.ebuild | 34 +
 app-backup/kfoldersync/metadata.xml |  5 
 2 files changed, 39 insertions(+)

diff --git a/app-backup/kfoldersync/kfoldersync-3.0.0.ebuild 
b/app-backup/kfoldersync/kfoldersync-3.0.0.ebuild
new file mode 100644
index 000..f353a65
--- /dev/null
+++ b/app-backup/kfoldersync/kfoldersync-3.0.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_GCC_MINIMAL="4.9"
+inherit kde5
+
+DESCRIPTION="Folder synchronization and backup tool for KDE"
+HOMEPAGE="http://kde-apps.org/content/show.php/KFolderSync?content=164092;
+SRC_URI="http://kde-apps.org/CONTENT/content-files/164092-${PN}-${PV}.tar.xz 
-> ${P}.tar.xz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemviews)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}
+   sys-devel/gettext
+"

diff --git a/app-backup/kfoldersync/metadata.xml 
b/app-backup/kfoldersync/metadata.xml
new file mode 100644
index 000..a23f444
--- /dev/null
+++ b/app-backup/kfoldersync/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   kde
+



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

2015-12-29 Thread Michael Palimaka
commit: d504999f6d7ca07e021381af9091b126656cac43
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Tue Dec 29 15:07:20 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:01:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d504999f

media-gfx/digikam: Fix build w/ media-libs/lensfun-0.3.2, bug 566624

Package-Manager: portage-2.2.24

 media-gfx/digikam/digikam-4.12.0.ebuild|  2 ++
 media-gfx/digikam/digikam-4.14.0.ebuild|  2 ++
 media-gfx/digikam/digikam-4.4.0-r1.ebuild  |  1 +
 .../digikam/files/digikam-4.14.0-lensfun.patch | 26 ++
 4 files changed, 31 insertions(+)

diff --git a/media-gfx/digikam/digikam-4.12.0.ebuild 
b/media-gfx/digikam/digikam-4.12.0.ebuild
index e78ff14..24f27f7 100644
--- a/media-gfx/digikam/digikam-4.12.0.ebuild
+++ b/media-gfx/digikam/digikam-4.12.0.ebuild
@@ -71,6 +71,8 @@ S="${WORKDIR}/${MY_P}/core"
 RESTRICT=test
 # bug 366505
 
+PATCHES=( "${FILESDIR}/${PN}-4.14.0-lensfun.patch" ) # bug 566624
+
 src_prepare() {
# just to make absolutely sure
rm -rf "${WORKDIR}/${MY_P}/extra" || die

diff --git a/media-gfx/digikam/digikam-4.14.0.ebuild 
b/media-gfx/digikam/digikam-4.14.0.ebuild
index cf97a95..bd44576 100644
--- a/media-gfx/digikam/digikam-4.14.0.ebuild
+++ b/media-gfx/digikam/digikam-4.14.0.ebuild
@@ -72,6 +72,8 @@ S="${WORKDIR}/${MY_P}/core"
 RESTRICT=test
 # bug 366505
 
+PATCHES=( "${FILESDIR}/${PN}-4.14.0-lensfun.patch" ) # bug 566624
+
 src_prepare() {
# just to make absolutely sure
rm -rf "${WORKDIR}/${MY_P}/extra" || die

diff --git a/media-gfx/digikam/digikam-4.4.0-r1.ebuild 
b/media-gfx/digikam/digikam-4.4.0-r1.ebuild
index 57376c3..993d5f9 100644
--- a/media-gfx/digikam/digikam-4.4.0-r1.ebuild
+++ b/media-gfx/digikam/digikam-4.4.0-r1.ebuild
@@ -82,6 +82,7 @@ RESTRICT=test
 PATCHES=(
"${FILESDIR}/${P}-libkexiv2.patch"
"${FILESDIR}/${P}-hang.patch"
+   "${FILESDIR}/${PN}-4.14.0-lensfun.patch" # bug 566624
 )
 
 src_prepare() {

diff --git a/media-gfx/digikam/files/digikam-4.14.0-lensfun.patch 
b/media-gfx/digikam/files/digikam-4.14.0-lensfun.patch
new file mode 100644
index 000..37776f6
--- /dev/null
+++ b/media-gfx/digikam/files/digikam-4.14.0-lensfun.patch
@@ -0,0 +1,26 @@
+From: Gilles Caulier 
+Date: Mon, 14 Dec 2015 21:41:55 +
+Subject: fix compilation with Lensfun 0.3.2
+X-Git-Url: 
http://quickgit.kde.org/?p=digikam.git=commitdiff=0f159981176faa6da701f112bfe557b79804d468
+---
+fix compilation with Lensfun 0.3.2
+It still compatible with older lensfun releases.
+BUGS: 356672
+FIXED-IN: 5.0.0
+---
+
+
+--- a/libs/dimg/filters/lens/lensfuniface.h
 b/libs/dimg/filters/lens/lensfuniface.h
+@@ -24,10 +24,7 @@
+ 
+ // Lib LensFun includes
+ 
+-extern "C"
+-{
+ #include 
+-}
+ 
+ // Local includes
+ 
+



[gentoo-commits] proj/portage:master commit in: pym/repoman/checks/ebuilds/

2015-12-29 Thread Zac Medico
commit: 57c63e9e5468670ea976d1fae960cd20259ea019
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Dec 26 17:05:59 2015 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 29 16:55:06 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=57c63e9e

repoman: add clutter to inherit.deprecated, bug #486362

 pym/repoman/checks/ebuilds/checks.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pym/repoman/checks/ebuilds/checks.py 
b/pym/repoman/checks/ebuilds/checks.py
index 9f72324..7bab8e4 100644
--- a/pym/repoman/checks/ebuilds/checks.py
+++ b/pym/repoman/checks/ebuilds/checks.py
@@ -427,6 +427,7 @@ class InheritDeprecated(LineCheck):
"gst-plugins-good": "gstreamer",
"gst-plugins-ugly": "gstreamer",
"gst-plugins10": "gstreamer",
+   "clutter": "gnome2",
}
 
_inherit_re = re.compile(r'^\s*inherit\s(.*)$')



[gentoo-commits] proj/sci:master commit in: dev-lang/icc/, dev-lang/idb/, dev-lang/ifc/, sci-libs/mkl/, ...

2015-12-29 Thread Justin Lecher
commit: e27a1e6a99422394ec5d4e3fbf27eb2016485a6e
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Dec 29 19:08:06 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Dec 29 19:08:06 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=e27a1e6a

Import intel packages from tree for testing

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

 dev-lang/icc/icc-15.0.3.187-r1.ebuild  | 37 ++
 dev-lang/icc/metadata.xml  | 16 ++
 dev-lang/idb/files/50idb-gentoo.el |  5 ++
 dev-lang/idb/idb-14.0.3.174-r1.ebuild  | 39 ++
 dev-lang/idb/metadata.xml  | 18 +++
 dev-lang/ifc/ifc-15.0.3.187-r1.ebuild  | 36 +
 dev-lang/ifc/metadata.xml  | 14 +
 .../intel-common/intel-common-15.0.3.187-r1.ebuild | 59 ++
 dev-libs/intel-common/metadata.xml | 12 +
 sci-libs/ipp/ipp-8.2.2.187-r1.ebuild   | 29 +++
 sci-libs/ipp/metadata.xml  | 10 
 sci-libs/mkl/mkl-11.1.0.080-r2.ebuild  |  1 +
 sci-libs/mkl/mkl-11.1.1.106-r1.ebuild  |  1 +
 sci-libs/mkl/mkl-11.1.2.144-r1.ebuild  |  1 +
 sci-libs/mkl/mkl-11.1.3.174-r1.ebuild  |  1 +
 sci-libs/mkl/mkl-11.2.0.090-r1.ebuild  |  1 +
 sci-libs/mkl/mkl-11.2.1.133-r1.ebuild  |  1 +
 sci-libs/mkl/mkl-11.2.2.164-r1.ebuild  |  1 +
 sci-libs/mkl/mkl-11.2.3.187-r1.ebuild  |  3 +-
 19 files changed, 284 insertions(+), 1 deletion(-)

diff --git a/dev-lang/icc/icc-15.0.3.187-r1.ebuild 
b/dev-lang/icc/icc-15.0.3.187-r1.ebuild
new file mode 100644
index 000..03481dc
--- /dev/null
+++ b/dev-lang/icc/icc-15.0.3.187-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+INTEL_DPN=parallel_studio_xe
+INTEL_DID=7538
+INTEL_DPV=2015_update3
+INTEL_SUBDIR=composerxe
+INTEL_SINGLE_ARCH=false
+
+inherit intel-sdp
+
+DESCRIPTION="Intel C/C++ Compiler"
+HOMEPAGE="http://software.intel.com/en-us/articles/intel-composer-xe/;
+
+IUSE="eclipse linguas_ja"
+KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+DEPEND="
+   !dev-lang/ifc[linguas_ja]
+   eclipse? ( dev-util/eclipse-sdk )"
+RDEPEND="${DEPEND}
+   ~dev-libs/intel-common-${PV}[compiler,${MULTILIB_USEDEP}]"
+
+INTEL_BIN_RPMS=( compilerproc compilerproc-devel )
+INTEL_DAT_RPMS=( compilerproc-common compilerproc-vars )
+
+CHECKREQS_DISK_BUILD=325M
+
+src_install() {
+   if ! use linguas_ja; then
+   find "${S}" -type d -name ja_JP -exec rm -rf '{}' + || die
+   fi
+   intel-sdp_src_install
+}

diff --git a/dev-lang/icc/metadata.xml b/dev-lang/icc/metadata.xml
new file mode 100644
index 000..399b3f6
--- /dev/null
+++ b/dev-lang/icc/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  sci
+  
+  The Intel® C++ Compiler is a full featured C/C++ compiler for Intel
+  based architectures. The compiler supports multi-threading, automatic
+  processor dispatch, vectorization, auto-parallelization, OpenMP, data
+  prefetching, loop unrolling. The package comes with extensive
+  documentation. The product can be installed as a non-commercial as
+  well. License, terms of qualifications can be found on the web site.
+
+  
+Install the dev-util/eclipse-sdk 
plugins
+  
+

diff --git a/dev-lang/idb/files/50idb-gentoo.el 
b/dev-lang/idb/files/50idb-gentoo.el
new file mode 100644
index 000..55064c6
--- /dev/null
+++ b/dev-lang/idb/files/50idb-gentoo.el
@@ -0,0 +1,5 @@
+
+;;; idb site-lisp configuration
+
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'idb "idb" "Run idb on program  in buffer *gud-*." t)

diff --git a/dev-lang/idb/idb-14.0.3.174-r1.ebuild 
b/dev-lang/idb/idb-14.0.3.174-r1.ebuild
new file mode 100644
index 000..9239a36
--- /dev/null
+++ b/dev-lang/idb/idb-14.0.3.174-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+INTEL_DPN=parallel_studio_xe
+INTEL_DID=4220
+INTEL_DPV=2013_sp1_update3
+INTEL_SUBDIR=composerxe
+INTEL_SINGLE_ARCH=false
+
+inherit intel-sdp
+
+DESCRIPTION="Intel C/C++/FORTRAN debugger"
+HOMEPAGE="http://software.intel.com/en-us/articles/intel-composer-xe/;
+
+IUSE="eclipse"
+KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+DEPEND=">=dev-libs/intel-common-13.1[compiler,${MULTILIB_USEDEP}]"
+RDEPEND="${DEPEND}
+   virtual/jre
+   eclipse? ( dev-util/eclipse-sdk )"
+
+INTEL_BIN_RPMS=( idb )
+INTEL_DAT_RPMS=( idb-common idbcdt )
+
+CHECKREQS_DISK_BUILD=475M
+
+pkg_setup() {
+   _INTEL_PV=174-13.0-3 intel-sdp_pkg_setup
+}
+
+src_prepare() {
+   sed \
+   -e "/^INSTALLDIR/s:=.*:=${INTEL_SDP_EDIR}:g" \
+   -i ${INTEL_SDP_DIR}/bin/intel*/idb 

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

2015-12-29 Thread Justin Lecher
commit: 0f45944404d54c4b92b44c48d3263f6cb4034585
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Dec 29 19:07:59 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Dec 29 19:07:59 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=0f459444

Update local USE description

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

 profiles/use.local.desc | 2 --
 1 file changed, 2 deletions(-)

diff --git a/profiles/use.local.desc b/profiles/use.local.desc
index 78eb7fb..8ba2c5c 100644
--- a/profiles/use.local.desc
+++ b/profiles/use.local.desc
@@ -86,8 +86,6 @@ sci-biology/ncbi-tools++:xerces - Undocumented USE
 sci-biology/ncbi-tools++:xslt - Undocumented USE
 sci-biology/nilearn:plot - Adds optional dependency needed for plotting 
function subset.
 sci-biology/sga:jemalloc - Use dev-libs/jemalloc
-sci-chemistry/avogadro2:rpc - Enable RPC server
-sci-chemistry/avogadro2:vtk - include vtk support
 sci-chemistry/ball:cuda - Include cuda support
 sci-chemistry/ball:sql - Include SQL database support
 sci-chemistry/ball:webkit - Uses dev-qt/qt-webkit for drawing



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

2015-12-29 Thread Ian Delaney
commit: f5cd7bfefa64e3df7b86a3de25580b325d1e6e46
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 29 15:15:02 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 15:16:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5cd7bfe

Merge remote-tracking branch 'remotes/sbraz/jaraco-logging'

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

 app-backup/bareos/Manifest |   1 -
 app-backup/bareos/bareos-15.2.1.ebuild | 420 -
 dev-perl/CHI/CHI-0.590.0.ebuild|  51 ---
 dev-perl/CHI/Manifest  |   1 -
 .../Cisco-Reconfig-0.910.0-r1.ebuild   |  21 --
 dev-perl/Cisco-Reconfig/Manifest   |   1 -
 dev-python/jaraco-logging/Manifest |   1 +
 .../jaraco-logging/jaraco-logging-1.3.1.ebuild |  44 +++
 dev-python/jaraco-logging/metadata.xml |  14 +
 9 files changed, 59 insertions(+), 495 deletions(-)



[gentoo-commits] proj/kde:master commit in: kde-plasma/powerdevil/, kde-plasma/powerdevil/files/

2015-12-29 Thread Michael Palimaka
commit: 6c779689028e731fb55fc0d04d0a324a566461c1
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Dec 29 15:36:47 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 15:37:29 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6c779689

kde-plasma/powerdevil: add support for suspending with consolekit2 and new 
upower

Thanks to Consolekit2 upstream for the pkla file.

Package-Manager: portage-2.2.26

 ...reedesktop.consolekit.system.suspend-multiple-users.pkla | 13 +
 .../{powerdevil-5.5.2.ebuild => powerdevil-5.5.2-r1.ebuild} | 11 +--
 kde-plasma/powerdevil/powerdevil-5.5.49..ebuild | 11 +--
 kde-plasma/powerdevil/powerdevil-.ebuild| 11 +--
 4 files changed, 40 insertions(+), 6 deletions(-)

diff --git 
a/kde-plasma/powerdevil/files/40-org.freedesktop.consolekit.system.suspend-multiple-users.pkla
 
b/kde-plasma/powerdevil/files/40-org.freedesktop.consolekit.system.suspend-multiple-users.pkla
new file mode 100644
index 000..b01aa4f
--- /dev/null
+++ 
b/kde-plasma/powerdevil/files/40-org.freedesktop.consolekit.system.suspend-multiple-users.pkla
@@ -0,0 +1,13 @@
+# Enable user suspend support with Consolekit2.
+#
+# Author: Eric Hameleers 
+#
+# KDE bug #344456
+# Gentoo bug #529186
+#
+[Allow all users to suspend with Conesolekit2]
+Identity=unix-group:users
+Action=org.freedesktop.consolekit.system.suspend-multiple-users;org.freedesktop.consolekit.system.suspend
+ResultAny=yes
+ResultInactive=no
+ResultActive=yes

diff --git a/kde-plasma/powerdevil/powerdevil-5.5.2.ebuild 
b/kde-plasma/powerdevil/powerdevil-5.5.2-r1.ebuild
similarity index 87%
rename from kde-plasma/powerdevil/powerdevil-5.5.2.ebuild
rename to kde-plasma/powerdevil/powerdevil-5.5.2-r1.ebuild
index 9b572a8..35e2b00 100644
--- a/kde-plasma/powerdevil/powerdevil-5.5.2.ebuild
+++ b/kde-plasma/powerdevil/powerdevil-5.5.2-r1.ebuild
@@ -44,8 +44,14 @@ DEPEND="
 
 RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
-   || ( sys-power/upower-pm-utils >=sys-power/upower-0.9.23 )
-   !systemd? ( sys-auth/polkit-pkla-compat )
+   systemd? ( >=sys-power/upower-0.9.23 )
+   !systemd? (
+   sys-auth/polkit-pkla-compat
+   || (
+   ( >=sys-auth/consolekit-1.0.0 >=sys-power/upower-0.9.23 
)
+   sys-power/upower-pm-utils
+   )
+   )
!kde-base/powerdevil:4
!kde-base/systemsettings:4[handbook]
 "
@@ -58,6 +64,7 @@ src_install() {
doins "${FILESDIR}"/10-org.freedesktop.upower.pkla
doins 
"${FILESDIR}"/20-org.freedesktop.consolekit.system.stop-multiple-users.pkla
doins 
"${FILESDIR}"/30-org.freedesktop.consolekit.system.restart-multiple-users.pkla
+   doins 
"${FILESDIR}"/40-org.freedesktop.consolekit.system.suspend-multiple-users.pkla
fi
 }
 

diff --git a/kde-plasma/powerdevil/powerdevil-5.5.49..ebuild 
b/kde-plasma/powerdevil/powerdevil-5.5.49..ebuild
index e98e921..c38080f 100644
--- a/kde-plasma/powerdevil/powerdevil-5.5.49..ebuild
+++ b/kde-plasma/powerdevil/powerdevil-5.5.49..ebuild
@@ -44,8 +44,14 @@ DEPEND="
 
 RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
-   || ( sys-power/upower-pm-utils >=sys-power/upower-0.9.23 )
-   !systemd? ( sys-auth/polkit-pkla-compat )
+   systemd? ( >=sys-power/upower-0.9.23 )
+   !systemd? (
+   sys-auth/polkit-pkla-compat
+   || (
+   ( >=sys-auth/consolekit-1.0.0 >=sys-power/upower-0.9.23 
)
+   sys-power/upower-pm-utils
+   )
+   )
!kde-base/powerdevil:4
!kde-base/systemsettings:4[handbook]
 "
@@ -58,6 +64,7 @@ src_install() {
doins "${FILESDIR}"/10-org.freedesktop.upower.pkla
doins 
"${FILESDIR}"/20-org.freedesktop.consolekit.system.stop-multiple-users.pkla
doins 
"${FILESDIR}"/30-org.freedesktop.consolekit.system.restart-multiple-users.pkla
+   doins 
"${FILESDIR}"/40-org.freedesktop.consolekit.system.suspend-multiple-users.pkla
fi
 }
 

diff --git a/kde-plasma/powerdevil/powerdevil-.ebuild 
b/kde-plasma/powerdevil/powerdevil-.ebuild
index e98e921..c38080f 100644
--- a/kde-plasma/powerdevil/powerdevil-.ebuild
+++ b/kde-plasma/powerdevil/powerdevil-.ebuild
@@ -44,8 +44,14 @@ DEPEND="
 
 RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
-   || ( sys-power/upower-pm-utils >=sys-power/upower-0.9.23 )
-   !systemd? ( sys-auth/polkit-pkla-compat )
+   systemd? ( >=sys-power/upower-0.9.23 )
+   !systemd? (
+   sys-auth/polkit-pkla-compat
+   || (
+   ( >=sys-auth/consolekit-1.0.0 >=sys-power/upower-0.9.23 
)
+   sys-power/upower-pm-utils
+   )
+   )

[gentoo-commits] proj/kde:master commit in: kde-frameworks/baloo/

2015-12-29 Thread Michael Palimaka
commit: b3b5fae8a572052e501dde95eb1e6b4059468002
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Dec 29 15:49:01 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 15:49:11 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b3b5fae8

kde-frameworks/baloo: raise dev-db/lmdb dependency

The newer version includes some fixes that resolve krunner crashes.

Package-Manager: portage-2.2.26

 kde-frameworks/baloo/baloo-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/baloo/baloo-.ebuild 
b/kde-frameworks/baloo/baloo-.ebuild
index b153157..2ba3658 100644
--- a/kde-frameworks/baloo/baloo-.ebuild
+++ b/kde-frameworks/baloo/baloo-.ebuild
@@ -21,7 +21,7 @@ DEPEND="
$(add_frameworks_dep kidletime)
$(add_frameworks_dep kio)
$(add_frameworks_dep solid)
-   dev-db/lmdb
+   >=dev-db/lmdb-0.9.17
dev-qt/qtdbus:5
dev-qt/qtdeclarative:5
dev-qt/qtgui:5



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

2015-12-29 Thread Brian Evans
commit: 3c0ecf007bb807237d8b8a49b209f3655d22096d
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Dec 29 15:42:01 2015 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Dec 29 15:42:01 2015 +
URL:https://gitweb.gentoo.org/proj/mysql.git/commit/?id=3c0ecf00

dev-db/mariadb: Add missing build dependency wrt bug 570114

app-arch/snappy is needed for TokuDB

Package-Manager: portage-2.2.26
Manifest-Sign-Key: D1F781EFF9F4A3B6

 dev-db/mariadb/ChangeLog  | 5 +
 dev-db/mariadb/mariadb-10.0.23.ebuild | 1 +
 dev-db/mariadb/mariadb-10.1.10.ebuild | 1 +
 3 files changed, 7 insertions(+)

diff --git a/dev-db/mariadb/ChangeLog b/dev-db/mariadb/ChangeLog
index 33c0828..3e2a423 100644
--- a/dev-db/mariadb/ChangeLog
+++ b/dev-db/mariadb/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  29 Dec 2015; Brian Evans  mariadb-10.0.23.ebuild,
+  mariadb-10.1.10.ebuild:
+  dev-db/mariadb: Add missing build dependency wrt bug 570114  app-arch/snappy
+  is needed for TokuDB
+
   29 Dec 2015; Brian Evans  mariadb-10.1.10.ebuild:
   dev-db/mariadb: Fix Mroonga Engine cmake option
 

diff --git a/dev-db/mariadb/mariadb-10.0.23.ebuild 
b/dev-db/mariadb/mariadb-10.0.23.ebuild
index 5bcbfd2..b369838 100644
--- a/dev-db/mariadb/mariadb-10.0.23.ebuild
+++ b/dev-db/mariadb/mariadb-10.0.23.ebuild
@@ -34,6 +34,7 @@ COMMON_DEPEND="
)
oqgraph? ( >=dev-libs/boost-1.40.0:0= dev-libs/judy:0= )
pam? ( virtual/pam:0= )
+   tokudb? ( app-arch/snappy )
)
>=dev-libs/libpcre-8.35:3=
 "

diff --git a/dev-db/mariadb/mariadb-10.1.10.ebuild 
b/dev-db/mariadb/mariadb-10.1.10.ebuild
index 578c46a..1390a68 100644
--- a/dev-db/mariadb/mariadb-10.1.10.ebuild
+++ b/dev-db/mariadb/mariadb-10.1.10.ebuild
@@ -40,6 +40,7 @@ COMMON_DEPEND="
innodb-snappy? ( app-arch/snappy )
oqgraph? ( >=dev-libs/boost-1.40.0:0= dev-libs/judy:0= )
pam? ( virtual/pam:0= )
+   tokudb? ( app-arch/snappy )
)
>=dev-libs/libpcre-8.35:3=
 "



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

2015-12-29 Thread Michael Palimaka
commit: 5c2024fea9e1d9223d8ce2cc15c35ac3d4fbbbe6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Dec 29 16:21:13 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:23:13 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5c2024fe

profiles: copy kdepim pkgmove from main tree

While the affected packages are not currently in this overlay, this avoids
breakage if someone installed something while they were.

 profiles/updates/4Q-2015 | 28 
 1 file changed, 28 insertions(+)

diff --git a/profiles/updates/4Q-2015 b/profiles/updates/4Q-2015
index 6e6922a..4cfbffe 100644
--- a/profiles/updates/4Q-2015
+++ b/profiles/updates/4Q-2015
@@ -1,3 +1,31 @@
 move kde-apps/kapture kde-apps/spectacle
 move kde-apps/oxygen-icons kde-frameworks/oxygen-icons
 move kde-apps/kdepim-apps-lib kde-apps/kdepim-apps-libs
+move kde-base/akonadiconsole kde-apps/akonadiconsole
+move kde-base/akregator kde-apps/akregator
+move kde-base/blogilo kde-apps/blogilo
+move kde-base/calendarjanitor kde-apps/calendarjanitor
+move kde-base/kabcclient kde-apps/kabcclient
+move kde-base/kaddressbook kde-apps/kaddressbook
+move kde-base/kalarm kde-apps/kalarm
+move kde-base/kdepim-common-libs kde-apps/kdepim-common-libs
+move kde-base/kdepim-icons kde-apps/kdepim-icons
+move kde-base/kdepim-kresources kde-apps/kdepim-kresources
+move kde-base/kdepim-l10n kde-apps/kdepim-l10n
+move kde-base/kdepim-meta kde-apps/kdepim-meta
+move kde-base/kdepim-runtime kde-apps/kdepim-runtime
+move kde-base/kdepim-wizards kde-apps/kdepim-wizards
+move kde-base/kdepimlibs kde-apps/kdepimlibs
+move kde-base/kjots kde-apps/kjots
+move kde-base/kleopatra kde-apps/kleopatra
+move kde-base/kmail kde-apps/kmail
+move kde-base/knode kde-apps/knode
+move kde-base/knotes kde-apps/knotes
+move kde-base/konsolekalendar kde-apps/konsolekalendar
+move kde-base/kontact kde-apps/kontact
+move kde-base/korganizer kde-apps/korganizer
+move kde-base/ktimetracker kde-apps/ktimetracker
+move kde-base/ktnef kde-apps/ktnef
+move kde-base/libkdepim kde-apps/libkdepim
+move kde-base/libkleo kde-apps/libkleo
+move kde-base/libkpgp kde-apps/libkpgp



[gentoo-commits] proj/kde:master commit in: kde-apps/messagecomposer/, kde-misc/basket/, kde-apps/libkleo/, ...

2015-12-29 Thread Michael Palimaka
commit: 4291d03f3d98ae1cf79788095d1932b541fa278d
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Dec 27 13:52:30 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:23:13 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4291d03f

kde-apps: Follow-up KDE PIM pkgmove in tree

Package-Manager: portage-2.2.24

 eclass/kde4-meta.eclass|  2 +-
 .../akonadi-contact/akonadi-contact-15.12.0.ebuild |  1 -
 .../akonadi-contact-15.12.49..ebuild   |  1 -
 .../akonadi-contact/akonadi-contact-.ebuild|  1 -
 kde-apps/akonadi-mime/akonadi-mime-15.12.0.ebuild  |  1 -
 .../akonadi-mime/akonadi-mime-15.12.49..ebuild |  1 -
 kde-apps/akonadi-mime/akonadi-mime-.ebuild |  1 -
 .../akonadi-notes/akonadi-notes-15.12.0.ebuild |  1 -
 .../akonadi-notes-15.12.49..ebuild |  1 -
 kde-apps/akonadi-notes/akonadi-notes-.ebuild   |  1 -
 .../akonadi-socialutils-15.12.0.ebuild |  1 -
 .../akonadi-socialutils-15.12.49..ebuild   |  1 -
 .../akonadi-socialutils-.ebuild|  1 -
 kde-apps/akonadi/akonadi-15.08.3.ebuild|  2 +-
 kde-apps/akonadi/akonadi-15.12.0.ebuild|  2 +-
 kde-apps/akonadi/akonadi-15.12.49..ebuild  |  2 +-
 kde-apps/akonadi/akonadi-.ebuild   |  2 +-
 .../calendarsupport/calendarsupport-15.12.0.ebuild |  2 +-
 .../calendarsupport-15.12.49..ebuild   |  2 +-
 .../calendarsupport/calendarsupport-.ebuild|  2 +-
 .../composereditor/composereditor-15.12.0.ebuild   |  2 +-
 .../composereditor-15.12.49..ebuild|  2 +-
 kde-apps/drkonqi/drkonqi-15.12.0.ebuild|  2 +-
 kde-apps/drkonqi/drkonqi-15.12.49..ebuild  |  2 +-
 kde-apps/drkonqi/drkonqi-.ebuild   |  2 +-
 kde-apps/eventviews/eventviews-15.12.0.ebuild  |  2 +-
 .../eventviews/eventviews-15.12.49..ebuild |  2 +-
 kde-apps/eventviews/eventviews-.ebuild |  2 +-
 .../grantleetheme/grantleetheme-15.12.0.ebuild |  2 +-
 .../grantleetheme-15.12.49..ebuild |  2 +-
 kde-apps/grantleetheme/grantleetheme-.ebuild   |  2 +-
 .../incidenceeditor/incidenceeditor-15.12.0.ebuild |  2 +-
 .../incidenceeditor-15.12.49..ebuild   |  2 +-
 .../incidenceeditor/incidenceeditor-.ebuild|  2 +-
 .../kaddressbookgrantlee-15.12.0.ebuild|  2 +-
 .../kaddressbookgrantlee-15.12.49..ebuild  |  2 +-
 kde-apps/kdepim-addons/kdepim-addons-.ebuild   |  6 +--
 .../kdepim-apps-libs/kdepim-apps-libs-.ebuild  |  4 +-
 .../kdepim-kioslaves-15.12.0.ebuild|  1 -
 .../kdepim-kioslaves-15.12.49..ebuild  |  1 -
 .../kdepim-kioslaves/kdepim-kioslaves-.ebuild  |  1 -
 .../kdepim-runtime/kdepim-runtime-15.08.3.ebuild   |  2 +-
 .../kdepim-runtime/kdepim-runtime-15.12.0.ebuild   |  2 +-
 .../kdepim-runtime-15.12.49..ebuild|  2 +-
 kde-apps/kdepim-runtime/kdepim-runtime-.ebuild |  2 +-
 kde-apps/kdepim/kdepim-15.08.3.ebuild  | 46 +++---
 kde-apps/kdepim/kdepim-15.12.0.ebuild  | 38 +-
 kde-apps/kdepim/kdepim-15.12.49..ebuild| 38 +-
 kde-apps/kdepim/kdepim-.ebuild | 38 +-
 kde-apps/kdepimlibs/kdepimlibs-15.08.3.ebuild  |  4 +-
 kde-apps/kdgantt2/kdgantt2-15.12.0.ebuild  |  2 +-
 kde-apps/kdgantt2/kdgantt2-15.12.49..ebuild|  2 +-
 kde-apps/kdgantt2/kdgantt2-.ebuild |  2 +-
 kde-apps/kget/kget-15.12.0.ebuild  |  2 +-
 kde-apps/kget/kget-15.12.49..ebuild|  2 +-
 kde-apps/kget/kget-.ebuild |  2 +-
 kde-apps/kget/metadata.xml |  2 +-
 kde-apps/kgpg/kgpg-15.12.0.ebuild  |  2 +-
 kde-apps/kgpg/kgpg-15.12.49..ebuild|  2 +-
 kde-apps/kgpg/kgpg-.ebuild |  2 +-
 kde-apps/kjots/kjots-.ebuild   |  1 -
 kde-apps/klinkstatus/klinkstatus-15.08.3.ebuild|  2 +-
 kde-apps/klinkstatus/klinkstatus-15.12.0.ebuild|  2 +-
 .../klinkstatus/klinkstatus-15.12.49..ebuild   |  2 +-
 kde-apps/klinkstatus/klinkstatus-.ebuild   |  2 +-
 kde-apps/kopete/kopete-15.12.0.ebuild  |  2 +-
 kde-apps/kopete/kopete-15.12.49..ebuild|  2 +-
 kde-apps/kopete/kopete-.ebuild |  2 +-
 kde-apps/kuser/kuser-15.12.0.ebuild|  2 +-
 kde-apps/kuser/kuser-15.12.49..ebuild  |  2 +-
 kde-apps/kuser/kuser-.ebuild   |  2 +-
 kde-apps/kwalletd/kwalletd-15.12.0.ebuild  |  2 +-
 kde-apps/kwalletd/kwalletd-15.12.49..ebuild|  2 +-
 kde-apps/kwalletd/kwalletd-.ebuild |  2 +-
 kde-apps/libakonadi/libakonadi-15.12.0-r1.ebuild   |  1 -
 .../libakonadi/libakonadi-15.12.49..ebuild |  1 -
 

[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/, Documentation/package.mask/, ...

2015-12-29 Thread Michael Palimaka
commit: 1ea92869fbb7afdff5df64adbdc1573ecb663a58
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Dec 27 14:22:16 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:23:13 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1ea92869

Documentation: regenerate-files

 .../package.accept_keywords/kde-4.14.keywords  | 48 +++---
 Documentation/package.mask/kde-4.14| 48 +++---
 Documentation/package.mask/kdepim-4.7  | 46 ++---
 Documentation/package.unmask/kde-4.14  | 48 +++---
 4 files changed, 95 insertions(+), 95 deletions(-)

diff --git a/Documentation/package.accept_keywords/kde-4.14.keywords 
b/Documentation/package.accept_keywords/kde-4.14.keywords
index d598213..e723a67 100644
--- a/Documentation/package.accept_keywords/kde-4.14.keywords
+++ b/Documentation/package.accept_keywords/kde-4.14.keywords
@@ -212,7 +212,7 @@
 =kde-base/kde-env-4.14
 >=kde-base/kdelibs-4.14
 >=kde-base/kfilemetadata-4.14
->=kde-base/kdepimlibs-4.14
+>=kde-apps/kdepimlibs-4.14
 =kde-base/katepart-4.14
 =kde-base/akonadiconsole-4.14
->=kde-base/akregator-4.14
->=kde-base/blogilo-4.14
->=kde-base/calendarjanitor-4.14
->=kde-base/kabcclient-4.14
->=kde-base/kaddressbook-4.14
->=kde-base/kalarm-4.14
->=kde-base/kdepim-common-libs-4.14
->=kde-base/kdepim-icons-4.14
->=kde-base/kdepim-kresources-4.14
->=kde-base/kdepim-l10n-4.14
->=kde-base/kdepim-meta-4.14
->=kde-base/kdepim-runtime-4.14
->=kde-base/kjots-4.14
->=kde-base/kleopatra-4.14
->=kde-base/kmail-4.14
->=kde-base/knode-4.14
->=kde-base/knotes-4.14
->=kde-base/konsolekalendar-4.14
->=kde-base/kontact-4.14
->=kde-base/korganizer-4.14
->=kde-base/ktimetracker-4.14
->=kde-base/ktnef-4.14
+>=kde-apps/akonadiconsole-4.14
+>=kde-apps/akregator-4.14
+>=kde-apps/blogilo-4.14
+>=kde-apps/calendarjanitor-4.14
+>=kde-apps/kabcclient-4.14
+>=kde-apps/kaddressbook-4.14
+>=kde-apps/kalarm-4.14
+>=kde-apps/kdepim-common-libs-4.14
+>=kde-apps/kdepim-icons-4.14
+>=kde-apps/kdepim-kresources-4.14
+>=kde-apps/kdepim-l10n-4.14
+>=kde-apps/kdepim-meta-4.14
+>=kde-apps/kdepim-runtime-4.14
+>=kde-apps/kjots-4.14
+>=kde-apps/kleopatra-4.14
+>=kde-apps/kmail-4.14
+>=kde-apps/knode-4.14
+>=kde-apps/knotes-4.14
+>=kde-apps/konsolekalendar-4.14
+>=kde-apps/kontact-4.14
+>=kde-apps/korganizer-4.14
+>=kde-apps/ktimetracker-4.14
+>=kde-apps/ktnef-4.14
 =kde-base/akonadiconsole-4.5.50
->=kde-base/akregator-4.5.50
->=kde-base/blogilo-4.5.50
->=kde-base/kabcclient-4.5.50
->=kde-base/kaddressbook-4.5.50
->=kde-base/kalarm-4.5.50
->=kde-base/kdepim-common-libs-4.5.50
->=kde-base/kdepim-icons-4.5.50
->=kde-base/kdepim-l10n-4.5.50
->=kde-base/kdepim-kresources-4.5.50
->=kde-base/kdepim-meta-4.5.50
->=kde-base/kdepim-strigi-analyzer-4.5.50
->=kde-base/kdepim-runtime-4.5.50
->=kde-base/kdepim-wizards-4.5.50
->=kde-base/kjots-4.5.50
->=kde-base/kleopatra-4.5.50
->=kde-base/kmail-4.5.50
->=kde-base/knode-4.5.50
->=kde-base/knotes-4.5.50
->=kde-base/konsolekalendar-4.5.50
->=kde-base/kontact-4.5.50
->=kde-base/korganizer-4.5.50
->=kde-base/ktimetracker-4.5.50
+>=kde-apps/akonadiconsole-4.5.50
+>=kde-apps/akregator-4.5.50
+>=kde-apps/blogilo-4.5.50
+>=kde-apps/kabcclient-4.5.50
+>=kde-apps/kaddressbook-4.5.50
+>=kde-apps/kalarm-4.5.50
+>=kde-apps/kdepim-common-libs-4.5.50
+>=kde-apps/kdepim-icons-4.5.50
+>=kde-apps/kdepim-l10n-4.5.50
+>=kde-apps/kdepim-kresources-4.5.50
+>=kde-apps/kdepim-meta-4.5.50
+>=kde-apps/kdepim-strigi-analyzer-4.5.50
+>=kde-apps/kdepim-runtime-4.5.50
+>=kde-apps/kdepim-wizards-4.5.50
+>=kde-apps/kjots-4.5.50
+>=kde-apps/kleopatra-4.5.50
+>=kde-apps/kmail-4.5.50
+>=kde-apps/knode-4.5.50
+>=kde-apps/knotes-4.5.50
+>=kde-apps/konsolekalendar-4.5.50
+>=kde-apps/kontact-4.5.50
+>=kde-apps/korganizer-4.5.50
+>=kde-apps/ktimetracker-4.5.50

diff --git a/Documentation/package.unmask/kde-4.14 
b/Documentation/package.unmask/kde-4.14
index 8da4558..7111925 100644
--- a/Documentation/package.unmask/kde-4.14
+++ b/Documentation/package.unmask/kde-4.14
@@ -211,7 +211,7 @@
 

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

2015-12-29 Thread Zac Medico
commit: 6c09ab7d6c6b2ffcf7e2641874167b0bff12ff91
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Dec 24 11:08:54 2015 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 29 16:39:57 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=6c09ab7d

template.database.__getitem__: allow missing mtime (bug 568934)

Fix __getitem__ to allow missing mtime when a suitable alternative
(such as md5) is available.

Fixes: 669d11bd8af5 ("flat_hash: enable md5 validation for /var/cache/edb/dep 
(bug 568934)")
Acked-by: Alexander Berntsen  gentoo.org>

 pym/portage/cache/template.py | 36 ++--
 1 file changed, 22 insertions(+), 14 deletions(-)

diff --git a/pym/portage/cache/template.py b/pym/portage/cache/template.py
index a942b36..a7c6de0 100644
--- a/pym/portage/cache/template.py
+++ b/pym/portage/cache/template.py
@@ -46,12 +46,13 @@ class database(object):
self.commit()
self.updates = 0
d=self._getitem(cpv)
-   if self.serialize_eclasses and "_eclasses_" in d:
-   try:
-   chf_types = self.chf_types
-   except AttributeError:
-   chf_types = (self.validation_chf,)
 
+   try:
+   chf_types = self.chf_types
+   except AttributeError:
+   chf_types = (self.validation_chf,)
+
+   if self.serialize_eclasses and "_eclasses_" in d:
for chf_type in chf_types:
try:
d["_eclasses_"] = 
reconstruct_eclasses(cpv, d["_eclasses_"],
@@ -69,16 +70,23 @@ class database(object):
# to omit it in comparisons between cache entries like
# those that egencache uses to avoid redundant writes.
d.pop("INHERITED", None)
+
+   mtime_required = not any(d.get('_%s_' % x)
+   for x in chf_types if x != 'mtime')
+
mtime = d.get('_mtime_')
-   if mtime is None:
-   raise cache_errors.CacheCorruption(cpv,
-   '_mtime_ field is missing')
-   try:
-   mtime = long(mtime)
-   except ValueError:
-   raise cache_errors.CacheCorruption(cpv,
-   '_mtime_ conversion to long failed: %s' % 
(mtime,))
-   d['_mtime_'] = mtime
+   if not mtime:
+   if mtime_required:
+   raise cache_errors.CacheCorruption(cpv,
+   '_mtime_ field is missing')
+   d.pop('_mtime_', None)
+   else:
+   try:
+   mtime = long(mtime)
+   except ValueError:
+   raise cache_errors.CacheCorruption(cpv,
+   '_mtime_ conversion to long failed: %s' 
% (mtime,))
+   d['_mtime_'] = mtime
return d
 
def _getitem(self, cpv):



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

2015-12-29 Thread Zac Medico
commit: 7e663905063ca92ad82127a797356e35bfc5bdfa
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Dec 25 05:56:18 2015 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 29 16:40:04 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=7e663905

anydbm: enable md5 validation (bug 568934)

Add forward-compatibility for cache entries containing md5 digests
instead of mtimes for validation.

X-Gentoo-Bug: 568934
X-Gentoo-Bug-url: https://bugs.gentoo.org/show_bug.cgi?id=568934
Acked-by: Alexander Berntsen  gentoo.org>

 pym/portage/cache/anydbm.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pym/portage/cache/anydbm.py b/pym/portage/cache/anydbm.py
index 1d56b14..80d24e5 100644
--- a/pym/portage/cache/anydbm.py
+++ b/pym/portage/cache/anydbm.py
@@ -36,6 +36,9 @@ from portage.cache import cache_errors
 
 class database(fs_template.FsBased):
 
+   validation_chf = 'mtime'
+   chf_types = ('mtime', 'md5')
+
autocommits = True
cleanse_keys = True
serialize_eclasses = False



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

2015-12-29 Thread Michał Górny
commit: 6ef474f148414c4ee4ece613ce68f51813ce873f
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 29 22:46:47 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 29 23:06:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ef474f1

media-sound/alsaplayer: Remove retired redhatter@ from maint, #570178

 media-sound/alsaplayer/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/media-sound/alsaplayer/metadata.xml 
b/media-sound/alsaplayer/metadata.xml
index 8882930..58f0ddd 100644
--- a/media-sound/alsaplayer/metadata.xml
+++ b/media-sound/alsaplayer/metadata.xml
@@ -5,8 +5,4 @@

Enables ID3 tagging with id3tag 
library

-   
-   redhat...@gentoo.org
-   Stuart Longland
-   
 



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

2015-12-29 Thread Michał Górny
commit: 6e41b746a78f67f6cf771b2b373c2e8848c43e68
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 29 22:55:46 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 29 23:06:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e41b746

sys-devel/clang: Copy maintainers from sys-devel/llvm

clang@ serves mostly as support address, and the actual LLVM binaries
are provided by sys-devel/llvm anyway.

 sys-devel/clang/metadata.xml | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/sys-devel/clang/metadata.xml b/sys-devel/clang/metadata.xml
index 8c2afb8..733ab07 100644
--- a/sys-devel/clang/metadata.xml
+++ b/sys-devel/clang/metadata.xml
@@ -2,8 +2,12 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   cl...@gentoo.org
-   Gentoo clang support project
+   voyag...@gentoo.org
+   Bernard Cafarelli
+   
+   
+   mgo...@gentoo.org
+   Michał Górny

The goal of the Clang project is to create a new C, 
C++, Objective C and Objective C++ front-end for the LLVM compiler.
 



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

2015-12-29 Thread Michał Górny
commit: 8e9731b3e040de8ae4de63ce354dd85746b818e2
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 29 22:30:57 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 29 23:06:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e9731b3

app-misc/tasque: Remove retired dev from maintainers, #570166

 app-misc/tasque/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/app-misc/tasque/metadata.xml b/app-misc/tasque/metadata.xml
index 0d070c9..5ba7d3c 100644
--- a/app-misc/tasque/metadata.xml
+++ b/app-misc/tasque/metadata.xml
@@ -2,10 +2,6 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
dotnet
-   
-   s...@gentoo.org
-   Andreas Proschofsky
-   


Allows you to use http://www.rememberthemilk.com/ as 
your storage backend.



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

2015-12-29 Thread Andreas Hüttel
commit: ff4274376911c840cb5183a34106e8fbad4beb05
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Dec 29 23:11:18 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Dec 29 23:18:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff427437

dev-perl/Class-XSAccessor: Remove old

Package-Manager: portage-2.2.26

 .../Class-XSAccessor-1.180.0.ebuild| 25 --
 dev-perl/Class-XSAccessor/Manifest |  1 -
 2 files changed, 26 deletions(-)

diff --git a/dev-perl/Class-XSAccessor/Class-XSAccessor-1.180.0.ebuild 
b/dev-perl/Class-XSAccessor/Class-XSAccessor-1.180.0.ebuild
deleted file mode 100644
index 473689e..000
--- a/dev-perl/Class-XSAccessor/Class-XSAccessor-1.180.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=SMUELLER
-MODULE_VERSION=1.18
-inherit perl-module
-
-DESCRIPTION="Generate fast XS accessors without runtime compilation"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~ppc-aix ~ppc-macos ~x86-solaris"
-IUSE=""
-
-DEPEND="
-   >=dev-perl/AutoXS-Header-1.01
-"
-RDEPEND="${DEPEND}
-   !dev-perl/Class-XSAccessor-Array
-"
-
-SRC_TEST=do
-mymake=( OPTIMIZE=${CFLAGS} )

diff --git a/dev-perl/Class-XSAccessor/Manifest 
b/dev-perl/Class-XSAccessor/Manifest
index cc30027..4c0d4dc 100644
--- a/dev-perl/Class-XSAccessor/Manifest
+++ b/dev-perl/Class-XSAccessor/Manifest
@@ -1,2 +1 @@
-DIST Class-XSAccessor-1.18.tar.gz 82326 SHA256 
0a3d25f5261f449e2e1711e53a659244cb314322d2d70abf37c81cd6d853c995 SHA512 
4ef49c9eb6a44a42380e8f4a440e9c0b8ae22b58e3f5fdc703420c1f195d89df574c50a33e0deba264619aaec36d2693b62f16b4cd5958b8f108da91743b233e
 WHIRLPOOL 
d70d2ef5e9bb3f360dc81bc082fa2150d0c12da4fc3b12125f814e4bf3e78276c3b8d2c7742918b2311502359c003d216bd64e6aae9b2db81acc855d0d8b1116
 DIST Class-XSAccessor-1.19.tar.gz 80786 SHA256 
99c56b395f1239af19901f2feeb125d9ecb4e351a0d80daa9529211a4700a6f2 SHA512 
58855bb2108b60cc90ae1d1c4d6a011da7bac2d063c7c953ff8610ae164ba60731a664f0fbddf148e1eabb60042913a17633a9c9a8936a23a59130b381bf63f8
 WHIRLPOOL 
cdc9c34f522ee2472a8b0eaa9588901251057577bb727636e09af5a65b1c90d7e38a545b22f040568af38cc3e4649a41af84adec828e044a81659c22cdffe4f2



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

2015-12-29 Thread Andreas Hüttel
commit: aa668f03e88797b3858a54b206eea2af04383363
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Dec 29 23:18:25 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Dec 29 23:18:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa668f03

dev-perl/common-sense: Remove old

Package-Manager: portage-2.2.26

 dev-perl/common-sense/Manifest|  1 -
 dev-perl/common-sense/common-sense-3.730.0.ebuild | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/dev-perl/common-sense/Manifest b/dev-perl/common-sense/Manifest
index 011d492..8766788 100644
--- a/dev-perl/common-sense/Manifest
+++ b/dev-perl/common-sense/Manifest
@@ -1,3 +1,2 @@
 DIST common-sense-3.72.tar.gz 10985 SHA256 
a4f92ec698cb4100da6295e9931e1cccac6944df49ba3a6c9bdeeb29332e099b SHA512 
fbcc7c6b7173c4dcd9fc23fd4ddfa91af0eb3b1d43e8c2c9e0cc4b0ded35146b716f66fd19ee8a85307677f405d12c4eda77ee726d24177bb5e959201f08b508
 WHIRLPOOL 
eec84712cebf0a89e0d442ade57fda37e47362736d2d8a9ea26143ef3d38abdd454bbbab9e3dee74dde48520d1a16ced63a4eaa8619231b332f02ea975e91797
-DIST common-sense-3.73.tar.gz 11132 SHA256 
8110c5e472641e0c218f8e023cecc1612ef66f9a1b313261fe219862efe3fd10 SHA512 
a4ee55326a2c67b782f42751487bd35a96f4cd2b4439dcf2f2117ac0f21786917377360a92ab708bf060baafe5f54105387e10d96bca7df53f6cc7d6172ea1c4
 WHIRLPOOL 
cf86df62652a0e104b2e554741d137c518439462345c1920a73f0b79c65992db72f87bb943defb886a3eb95884895246f5c3b27725836c68634c0e46aa2ce1d1
 DIST common-sense-3.74.tar.gz 13002 SHA256 
771f7d02abd1ded94d9e37d3f66e795c8d2026d04defbeb5b679ca058116bbf3 SHA512 
658ad70a2d1bbd0b26f91c4ea5d69b4cc0b632ede9532b88282987002a5e280f0475d63ee846b7bd2d38ef82f2680e20c2093803e4b62a984750ed447f318d60
 WHIRLPOOL 
5ba067e26209ad579f8ea348a51ea4e3e9959b56e8059a0233b4a28e05928ce125f74f1e75009212473b77577158c52d89efc0ebb3557da2ee702671f99ecae7

diff --git a/dev-perl/common-sense/common-sense-3.730.0.ebuild 
b/dev-perl/common-sense/common-sense-3.730.0.ebuild
deleted file mode 100644
index a0e4ccf..000
--- a/dev-perl/common-sense/common-sense-3.730.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=MLEHMANN
-MODULE_VERSION=3.73
-inherit perl-module
-
-DESCRIPTION="common::sense - save a tree AND a kitten, use common::sense!"
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-solaris"
-IUSE=""
-
-DEPEND="virtual/perl-ExtUtils-MakeMaker"
-
-SRC_TEST=do



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

2015-12-29 Thread Ian Delaney
commit: 13684a5918c3effb478830b85e1c69ecd468917e
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 29 23:29:05 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 23:29:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13684a59

Merge remote-tracking branch 'remotes/tomboy-64/idea-ultimate'

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

 dev-util/idea-ultimate/Manifest  | 2 +-
 ...3.5_pre.ebuild => idea-ultimate-16.0.0.144.2608.2_pre.ebuild} | 9 ++---
 dev-util/idea-ultimate/metadata.xml  | 3 +++
 3 files changed, 10 insertions(+), 4 deletions(-)



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

2015-12-29 Thread Ian Delaney
commit: 3c4bfbb6c333e40a763e0b09ed309e1af8fb5bb2
Author: Louis Sautier  gmail  com>
AuthorDate: Tue Dec 29 22:10:59 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 23:36:34 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c4bfbb6

dev-python/jaraco-itertools: needed as a new dep to dev-python/irc

Package-Manager: portage-2.2.26

 dev-python/jaraco-itertools/Manifest   |  1 +
 .../jaraco-itertools/jaraco-itertools-1.7.1.ebuild | 44 ++
 dev-python/jaraco-itertools/metadata.xml   | 14 +++
 3 files changed, 59 insertions(+)

diff --git a/dev-python/jaraco-itertools/Manifest 
b/dev-python/jaraco-itertools/Manifest
new file mode 100644
index 000..89a5624
--- /dev/null
+++ b/dev-python/jaraco-itertools/Manifest
@@ -0,0 +1 @@
+DIST jaraco.itertools-1.7.1.tar.gz 10224 SHA256 
bf5c7bf22c930a0c5942e0850166b10c77bbb6286117ac2c619c78c86db97d7b SHA512 
e149de3368137db4379d02858be0cbb3b6dc1e81cc06eb0f53064a55c8e25fb09b2b4387035dda29928bdf54e22d28c9d9744dfbd82a6cf4e4c90b5d42b31dfb
 WHIRLPOOL 
7377baca4411fe8acaccf4cca763d5c47aebd62acb51e4380e0565c4b72785d439e8cee51887aa4ccde9fd0bf90ab4d824cb6878b4b7436552d120d8f5e5ea50

diff --git a/dev-python/jaraco-itertools/jaraco-itertools-1.7.1.ebuild 
b/dev-python/jaraco-itertools/jaraco-itertools-1.7.1.ebuild
new file mode 100644
index 000..8a9f496
--- /dev/null
+++ b/dev-python/jaraco-itertools/jaraco-itertools-1.7.1.ebuild
@@ -0,0 +1,44 @@
+# 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_4,3_5} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+DESCRIPTION="Additional functions used by other projects by developer jaraco"
+HOMEPAGE="https://github.com/jaraco/jaraco.itertools;
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]
+dev-python/inflect[${PYTHON_USEDEP}]
+dev-python/more-itertools[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_prepare_all() {
+   if use test && has_version "${CATEGORY}/${PN}"; then
+   die "Ensure $PN is not already installed or the test suite will 
fail"
+   fi
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   PYTHONPATH=. py.test || die "tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/jaraco-itertools/metadata.xml 
b/dev-python/jaraco-itertools/metadata.xml
new file mode 100644
index 000..9961c85
--- /dev/null
+++ b/dev-python/jaraco-itertools/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   proxy-maintainers
+   
+   sautier.lo...@gmail.com
+   Louis Sautier
+   Proxied maintainer; set to assignee in all 
bugs
+   
+   
+   jaraco.itertools
+   jaraco/jaraco.itertools
+   
+



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

2015-12-29 Thread Ian Delaney
commit: af27f60f8b2d889f808706510ce2d4ba405d51cb
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 29 22:54:28 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 22:54:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af27f60f

Merge remote-tracking branch 'remotes/sbraz/backports'

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

 dev-python/backports-functools-lru-cache/Manifest  |  1 +
 .../backports-functools-lru-cache-1.2.ebuild   | 41 ++
 .../backports-functools-lru-cache/metadata.xml | 14 
 dev-python/backports-unittest-mock/Manifest|  1 +
 .../backports-unittest-mock-1.1.1.ebuild   | 38 
 dev-python/backports-unittest-mock/metadata.xml| 14 
 6 files changed, 109 insertions(+)



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

2015-12-29 Thread Victor Ostorga
commit: 44a39faf863902691c4322b92ee6faf56ff12e6e
Author: Victor Ostorga  gentoo  org>
AuthorDate: Wed Dec 30 00:05:01 2015 +
Commit: Victor Ostorga  gentoo  org>
CommitDate: Wed Dec 30 00:05:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44a39faf

Adding epatch_user bug #562298

Package-Manager: portage-2.2.24

 net-fs/samba/samba-4.2.7.ebuild | 2 ++
 net-fs/samba/samba-4.3.3.ebuild | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/net-fs/samba/samba-4.2.7.ebuild b/net-fs/samba/samba-4.2.7.ebuild
index 98b5ea7..70ac968 100644
--- a/net-fs/samba/samba-4.2.7.ebuild
+++ b/net-fs/samba/samba-4.2.7.ebuild
@@ -106,6 +106,8 @@ pkg_setup() {
 
 src_prepare() {
epatch ${PATCHES[@]}
+   # Allow user patches
+   epatch_user
 }
 
 src_configure() {

diff --git a/net-fs/samba/samba-4.3.3.ebuild b/net-fs/samba/samba-4.3.3.ebuild
index 7b14c07..a6497de 100644
--- a/net-fs/samba/samba-4.3.3.ebuild
+++ b/net-fs/samba/samba-4.3.3.ebuild
@@ -105,6 +105,8 @@ pkg_setup() {
 
 src_prepare() {
epatch ${PATCHES[@]}
+   # Allow user patches
+   epatch_user
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: games-rpg/grimrock/

2015-12-29 Thread Michael Sterrett
commit: 62eee938ce8c7951b0391f5e457d8dcfffd6f759
Author: Michael Sterrett  gentoo  org>
AuthorDate: Wed Dec 30 02:38:26 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Dec 30 02:38:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62eee938

games-rpg/grimrock: trust the user - punt media-libs/openjpeg dep (bug #540380)

Package-Manager: portage-2.2.24

 games-rpg/grimrock/grimrock-20130515.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/games-rpg/grimrock/grimrock-20130515.ebuild 
b/games-rpg/grimrock/grimrock-20130515.ebuild
index 595eaef..4e68803 100644
--- a/games-rpg/grimrock/grimrock-20130515.ebuild
+++ b/games-rpg/grimrock/grimrock-20130515.ebuild
@@ -29,7 +29,6 @@ RDEPEND="
media-libs/libraw
media-libs/jasper
media-libs/openexr
-   media-libs/openjpeg:0
media-libs/tiff
sys-libs/zlib
virtual/jpeg:62



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

2015-12-29 Thread Victor Ostorga
commit: 6150c6e30e6dfc050cdc49eb79d2d79c1fed7ef7
Author: Victor Ostorga  gentoo  org>
AuthorDate: Tue Dec 29 23:51:25 2015 +
Commit: Victor Ostorga  gentoo  org>
CommitDate: Tue Dec 29 23:51:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6150c6e3

Restricting tests, they have been broken for a long time. Bug 566700

Package-Manager: portage-2.2.24

 sys-libs/talloc/talloc-2.1.5.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-libs/talloc/talloc-2.1.5.ebuild 
b/sys-libs/talloc/talloc-2.1.5.ebuild
index fc66def..6b5e5ff 100644
--- a/sys-libs/talloc/talloc-2.1.5.ebuild
+++ b/sys-libs/talloc/talloc-2.1.5.ebuild
@@ -33,6 +33,8 @@ DEPEND="${RDEPEND}
 
 WAF_BINARY="${S}/buildtools/bin/waf"
 
+RESTRICT="test"
+
 MULTILIB_WRAPPED_HEADERS=(
# python goes only for native
/usr/include/pytalloc.h



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

2015-12-29 Thread Richard Farina
commit: df9718fde6929af47ccd6e34322172eaa1e14765
Author: Zero_Chaos  gentoo  org>
AuthorDate: Tue Dec 29 20:20:44 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Tue Dec 29 20:21:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9718fd

sys-kernel/genkernel: bumping to stable to solve releng and user issues, no 
regressions

Package-Manager: portage-2.2.26

 sys-kernel/genkernel/genkernel-3.4.52.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild 
b/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild
index 741f56b..d2b0f66 100644
--- a/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild
+++ b/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild
@@ -43,7 +43,7 @@ else
inherit bash-completion-r1 eutils
SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz
${COMMON_URI}"
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+   KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86"
 fi
 
 DESCRIPTION="Gentoo automatic kernel building scripts"



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

2015-12-29 Thread Manuel Rüger
commit: b807ab45f2fedd506f3e39d8a21196f41535c9b2
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Dec 29 22:17:13 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Dec 29 22:17:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b807ab45

dev-libs/libwacom: Version bump

Package-Manager: portage-2.2.26

 dev-libs/libwacom/Manifest |  1 +
 dev-libs/libwacom/libwacom-0.17.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/dev-libs/libwacom/Manifest b/dev-libs/libwacom/Manifest
index 1689008..c99a8b8 100644
--- a/dev-libs/libwacom/Manifest
+++ b/dev-libs/libwacom/Manifest
@@ -2,3 +2,4 @@ DIST libwacom-0.11.tar.bz2 424554 SHA256 
995f192e53f09444b79b66986227ebbac477520
 DIST libwacom-0.12.tar.bz2 441360 SHA256 
487baeb0b2067fd8ae3871e4a5971684878a35bb5f9c63d6a34fcc7612004d08 SHA512 
1dcb7fd8ac9230410f4a582d4150856845a4f4ab545dae331b25efa634161b900c39b6a379174f795b692d2ef6b3887b6e5c175b73c3cfdfc37b182ff0218872
 WHIRLPOOL 
147dc4f0d834e64e4b2dbd7848abc50a38da7b15bf7e93f76e0a109ae412b4f0cd24053f4694f2703de4d07acdbfb7cc199ebd193e3ab13b2aa9b57498d16a0a
 DIST libwacom-0.13.tar.bz2 439767 SHA256 
976b8801007ac96c6512751a0ef6903b482cd361f256965c2884196c88788176 SHA512 
8474e4da6d4d44cb4dd2db2c203e9e57c646328b25bb0009e91cc358833f64052a24b6e8f9507d3459014ffebccc4b50c99a0f5d6c97b9b5a19c135a165aeba0
 WHIRLPOOL 
2c88a953aebed3596f6172a3c76c34516fda410770bb7a815ded02ca657fe3e6cf55fdd4dd5529df9cd9ebb9325886c78228b7cb9dbf970e2858fa5d31ab5c3a
 DIST libwacom-0.15.tar.bz2 440516 SHA256 
ab65c589d5d6de176c5280ebe9cc1e807b9fa6fce7224b88f280b19464bb7713 SHA512 
10c38cb9af4f07a09c0248bff827bc9ceba99200e1298452b5a3745666ccac5ad01b6122563cddff83ec0072ff40321c053f190d4af3477967a4cb419d444aa6
 WHIRLPOOL 
a8b65d32a15cb7c5c5b3e486bae0fddebec7f917ee93d01a65a81f7d9e3525fe74df6af3edb6786eb9946c71f29f0397f8be1ab52df21ac60f0b35a3ec35994a
+DIST libwacom-0.17.tar.bz2 452943 SHA256 
89517967f7fb3b4c4774893b041b09ea3574e46beb97815a43885cc387d57525 SHA512 
8c9dc7f21fabb2e30f3b00f0c2da2b56bd3786c3bc2b4643bb0f446db325c895312a021f01685318d25d6588335f14b5725760dac7b06075892c18cfd36b89ee
 WHIRLPOOL 
80c4fa7c8f9179027410d2f13adceb3d9d64dea0494e4bcaa0707e66f24f1d0323db0d1108fcdd5f1a36c107663daf9301ff733211fe1795cadc9232e80acfbe

diff --git a/dev-libs/libwacom/libwacom-0.17.ebuild 
b/dev-libs/libwacom/libwacom-0.17.ebuild
new file mode 100644
index 000..aab4b47
--- /dev/null
+++ b/dev-libs/libwacom/libwacom-0.17.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils udev
+
+DESCRIPTION="Library for identifying Wacom tablets and their model-specific 
features"
+HOMEPAGE="http://linuxwacom.sourceforge.net/;
+SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc static-libs"
+
+RDEPEND="
+   dev-libs/glib:2
+   virtual/libgudev:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   doc? ( app-doc/doxygen )
+"
+
+src_prepare() {
+   if ! use doc; then
+   sed -e 's:^\(SUBDIRS = .* \)doc:\1:' -i Makefile.in || die
+   fi
+}
+
+src_configure() {
+   econf $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+   local udevdir="$(get_udevdir)"
+   dodir "${udevdir}/rules.d"
+   # generate-udev-rules must be run from inside tools directory
+   pushd tools > /dev/null || die
+   ./generate-udev-rules > "${ED}/${udevdir}/rules.d/65-libwacom.rules" || 
die "generating udev rules failed"
+   popd > /dev/null || die
+   use doc && dohtml -r doc/html/*
+   prune_libtool_files
+}



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

2015-12-29 Thread Manuel Rüger
commit: 978b55be02e6faf35be7d776a977f263261b0331
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Dec 29 22:17:50 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Dec 29 22:17:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978b55be

dev-libs/libwacom: Remove old

Package-Manager: portage-2.2.26

 dev-libs/libwacom/Manifest |  2 --
 dev-libs/libwacom/libwacom-0.12.ebuild | 47 --
 dev-libs/libwacom/libwacom-0.13.ebuild | 46 -
 3 files changed, 95 deletions(-)

diff --git a/dev-libs/libwacom/Manifest b/dev-libs/libwacom/Manifest
index c99a8b8..7394683 100644
--- a/dev-libs/libwacom/Manifest
+++ b/dev-libs/libwacom/Manifest
@@ -1,5 +1,3 @@
 DIST libwacom-0.11.tar.bz2 424554 SHA256 
995f192e53f09444b79b66986227ebbac477520956363dededa19af3d8746284 SHA512 
465f1ea9354bcba7d1c5d9fe146192b7ba1593973690718b2584b4786feb434f672556e7eed799761f96a37fe79bd14ae33ab7695d3ce9d5214cf9bc5b26eecc
 WHIRLPOOL 
7f29b09a9bdee0d9cb2f5712414bdbcccf1b2a31a387020de2c1f911411934a3ae61a1d430b40e3402282fbc60e0d184b82c1cd524e43c8417d678f27063f607
-DIST libwacom-0.12.tar.bz2 441360 SHA256 
487baeb0b2067fd8ae3871e4a5971684878a35bb5f9c63d6a34fcc7612004d08 SHA512 
1dcb7fd8ac9230410f4a582d4150856845a4f4ab545dae331b25efa634161b900c39b6a379174f795b692d2ef6b3887b6e5c175b73c3cfdfc37b182ff0218872
 WHIRLPOOL 
147dc4f0d834e64e4b2dbd7848abc50a38da7b15bf7e93f76e0a109ae412b4f0cd24053f4694f2703de4d07acdbfb7cc199ebd193e3ab13b2aa9b57498d16a0a
-DIST libwacom-0.13.tar.bz2 439767 SHA256 
976b8801007ac96c6512751a0ef6903b482cd361f256965c2884196c88788176 SHA512 
8474e4da6d4d44cb4dd2db2c203e9e57c646328b25bb0009e91cc358833f64052a24b6e8f9507d3459014ffebccc4b50c99a0f5d6c97b9b5a19c135a165aeba0
 WHIRLPOOL 
2c88a953aebed3596f6172a3c76c34516fda410770bb7a815ded02ca657fe3e6cf55fdd4dd5529df9cd9ebb9325886c78228b7cb9dbf970e2858fa5d31ab5c3a
 DIST libwacom-0.15.tar.bz2 440516 SHA256 
ab65c589d5d6de176c5280ebe9cc1e807b9fa6fce7224b88f280b19464bb7713 SHA512 
10c38cb9af4f07a09c0248bff827bc9ceba99200e1298452b5a3745666ccac5ad01b6122563cddff83ec0072ff40321c053f190d4af3477967a4cb419d444aa6
 WHIRLPOOL 
a8b65d32a15cb7c5c5b3e486bae0fddebec7f917ee93d01a65a81f7d9e3525fe74df6af3edb6786eb9946c71f29f0397f8be1ab52df21ac60f0b35a3ec35994a
 DIST libwacom-0.17.tar.bz2 452943 SHA256 
89517967f7fb3b4c4774893b041b09ea3574e46beb97815a43885cc387d57525 SHA512 
8c9dc7f21fabb2e30f3b00f0c2da2b56bd3786c3bc2b4643bb0f446db325c895312a021f01685318d25d6588335f14b5725760dac7b06075892c18cfd36b89ee
 WHIRLPOOL 
80c4fa7c8f9179027410d2f13adceb3d9d64dea0494e4bcaa0707e66f24f1d0323db0d1108fcdd5f1a36c107663daf9301ff733211fe1795cadc9232e80acfbe

diff --git a/dev-libs/libwacom/libwacom-0.12.ebuild 
b/dev-libs/libwacom/libwacom-0.12.ebuild
deleted file mode 100644
index 860cbc2..000
--- a/dev-libs/libwacom/libwacom-0.12.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils udev
-
-DESCRIPTION="Library for identifying Wacom tablets and their model-specific 
features"
-HOMEPAGE="http://linuxwacom.sourceforge.net/;
-SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc static-libs"
-
-RDEPEND="
-   dev-libs/glib:2
-   virtual/libgudev:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-"
-
-src_prepare() {
-   if ! use doc; then
-   sed -e 's:^\(SUBDIRS = .* \)doc:\1:' -i Makefile.in || die
-   fi
-}
-
-src_configure() {
-   econf $(use_enable static-libs static)
-}
-
-src_install() {
-   default
-   local udevdir="$(get_udevdir)"
-   dodir "${udevdir}/rules.d"
-   # generate-udev-rules must be run from inside tools directory
-   pushd tools > /dev/null
-   ./generate-udev-rules > "${ED}/${udevdir}/rules.d/65-libwacom.rules" ||
-   die "generating udev rules failed"
-   popd > /dev/null
-   use doc && dohtml -r doc/html/*
-   prune_libtool_files
-}

diff --git a/dev-libs/libwacom/libwacom-0.13.ebuild 
b/dev-libs/libwacom/libwacom-0.13.ebuild
deleted file mode 100644
index 6165dab..000
--- a/dev-libs/libwacom/libwacom-0.13.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils udev
-
-DESCRIPTION="Library for identifying Wacom tablets and their model-specific 
features"
-HOMEPAGE="http://linuxwacom.sourceforge.net/;
-SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc static-libs"
-
-RDEPEND="
-   dev-libs/glib:2
-   virtual/libgudev:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( 

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

2015-12-29 Thread Manuel Rüger
commit: 75379df2e54ae626b03169819990e40e573c08f4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Dec 29 22:13:32 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Dec 29 22:13:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75379df2

app-text/libwpg: Version bump

Package-Manager: portage-2.2.26

 app-text/libwpg/Manifest|  1 +
 app-text/libwpg/libwpg-0.3.1.ebuild | 50 +
 2 files changed, 51 insertions(+)

diff --git a/app-text/libwpg/Manifest b/app-text/libwpg/Manifest
index e95d458..ee2851f 100644
--- a/app-text/libwpg/Manifest
+++ b/app-text/libwpg/Manifest
@@ -1,2 +1,3 @@
 DIST libwpg-0.2.2.tar.xz 301000 SHA256 
b49bfd77b9447534dee0d43bbdc48b4dcb09339605be21c01726243d5069a6cd SHA512 
d60f8c0d29f7dbde2592d2afce1ccbe01ab10be4051d048fca0a2234f488a2764af2134ccf9ca150767d769d17dcd010433a3d977457b3a521be8f0dc628e65c
 WHIRLPOOL 
a52b90bd4c9aea2b72f615bcaaa43445dc72dad7e23f8f4667912ac3a95b729a7910b0c7608b3b47fd23a19399c72bb792432243e312d767d67c43b5c170e2f6
 DIST libwpg-0.3.0.tar.xz 300244 SHA256 
6f709199235f4c061c3ffe1a5112ce6430e8434e621bf7b3e3dca16114eaf224 SHA512 
5715a38f7c2b69123056288576073aa36a97f971a749cffb1b176a5c4a9f7da0b6568cdf62fc4e8ebd8204b681200c1a64e5e52cfd127af986580720914f973e
 WHIRLPOOL 
db0876540fde7533f1b73b4bd1cf08c09c9d845b822fcfa7a7d375014aee597aace4c5e4662c61449cd4c09747db4013ff225acd66c33b492d6348b7243945dc
+DIST libwpg-0.3.1.tar.xz 316576 SHA256 
620d888c10d7e1127d5123ff0065f1b62b86b91bac27d8ae10dcfbdb6bf4278f SHA512 
5222609510857d32250e25b1108ecf4c0ce1e58fba280b7c15d400bc8963112adaa9fffa3c21087d4984ec52176d69b30bfc9460ffef978d6b0d7ccc400063b2
 WHIRLPOOL 
c35c51b5098757a0de9a1288d185708775d4ecc2b69ad76e818df5308ec1cbcb870552d45edfe011f65aff141e12656bf98a8ce5207fc0f12ecbc9c705afb3e2

diff --git a/app-text/libwpg/libwpg-0.3.1.ebuild 
b/app-text/libwpg/libwpg-0.3.1.ebuild
new file mode 100644
index 000..a336154
--- /dev/null
+++ b/app-text/libwpg/libwpg-0.3.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit alternatives eutils
+
+DESCRIPTION="C++ library to read and parse graphics in WPG"
+HOMEPAGE="http://libwpg.sourceforge.net/libwpg.htm;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
+
+LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
+SLOT="0.3"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~x86"
+IUSE="doc static-libs"
+
+RDEPEND="
+   app-text/libwpd:0.10[tools]
+   dev-libs/librevenge
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   doc? ( app-doc/doxygen )"
+
+src_configure() {
+   econf \
+   --disable-werror \
+   --program-suffix=-${SLOT} \
+   --docdir="${EPREFIX%/}/usr/share/doc/${PF}" \
+   $(use_with doc docs) \
+   $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+   prune_libtool_files --all
+}
+
+pkg_postinst() {
+   alternatives_auto_makesym /usr/bin/wpg2svgbatch.pl 
"/usr/bin/wpg2svgbatch.pl-[0-9].[0-9]"
+   alternatives_auto_makesym /usr/bin/wpg2svg 
"/usr/bin/wpg2svg-[0-9].[0-9]"
+   alternatives_auto_makesym /usr/bin/wpg2raw 
"/usr/bin/wpg2raw-[0-9].[0-9]"
+}
+
+pkg_postrm() {
+   alternatives_auto_makesym /usr/bin/wpg2svgbatch.pl 
"/usr/bin/wpg2svgbatch.pl-[0-9].[0-9]"
+   alternatives_auto_makesym /usr/bin/wpg2svg 
"/usr/bin/wpg2svg-[0-9].[0-9]"
+   alternatives_auto_makesym /usr/bin/wpg2raw 
"/usr/bin/wpg2raw-[0-9].[0-9]"
+}



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

2015-12-29 Thread Michael Sterrett
commit: 7ff25518143dc0e86ba5de2c56a2df10dd7a19dd
Author: Michael Sterrett  gentoo  org>
AuthorDate: Wed Dec 30 02:43:21 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Dec 30 02:43:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ff25518

profiles: mask games-simulation/qct for removal

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

diff --git a/profiles/package.mask b/profiles/package.mask
index d9f23c2..ca18463 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Michael Sterrett  (29 Dec 2015)
+# Lacking in fun; no upstream; crashy (bug #550890)
+# Masked for removal on 20160128
+games-simulation/qct
+
 # Justin Lecher  (29 Dec 2015)
 # Fails to build and test runs
 # No reverse deps



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

2015-12-29 Thread Ian Delaney
commit: 9a7afd4ebef65289eb6750fe81d1509653318823
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 29 23:35:08 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 23:36:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a7afd4e

Merge remote-tracking branch 'remotes/sbraz/jaraco-itertools'

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

 app-accessibility/simon/metadata.xml   |   2 +-
 app-accessibility/simon/simon-0.4.1.ebuild |   2 +-
 app-misc/tasque/metadata.xml   |   4 -
 app-office/calligra/calligra-2.8.5.ebuild  |   2 +-
 app-office/calligra/calligra-2.8.7.ebuild  |   2 +-
 app-office/calligra/calligra-2.9.6.ebuild  |   2 +-
 app-office/calligra/calligra-2.9.7.ebuild  |   2 +-
 app-office/calligra/calligra-.ebuild   |   2 +-
 app-office/kmymoney/kmymoney-4.7.2.ebuild  |   2 +-
 app-office/kraft/kraft-0.58.ebuild |   2 +-
 app-office/kraft/kraft-0.59.ebuild |   2 +-
 app-office/skrooge/skrooge-1.10.0.ebuild   |   2 +-
 app-office/skrooge/skrooge-1.12.5.ebuild   |   2 +-
 app-text/libwpg/Manifest   |   1 +
 app-text/libwpg/libwpg-0.3.1.ebuild|  50 
 dev-libs/libsodium/Manifest|   3 +-
 dev-libs/libsodium/libsodium-1.0.5.ebuild  |  35 ---
 dev-libs/libsodium/libsodium-1.0.6-r1.ebuild   |  35 ---
 ...bsodium-1.0.7.ebuild => libsodium-1.0.8.ebuild} |   0
 dev-libs/libwacom/Manifest |   3 +-
 dev-libs/libwacom/libwacom-0.12.ebuild |  47 
 .../{libwacom-0.13.ebuild => libwacom-0.17.ebuild} |   4 +-
 .../Class-XSAccessor-1.180.0.ebuild|  25 --
 dev-perl/Class-XSAccessor/Manifest |   1 -
 dev-perl/common-sense/Manifest |   1 -
 dev-perl/common-sense/common-sense-3.730.0.ebuild  |  19 --
 dev-python/jaraco-itertools/Manifest   |   1 +
 .../jaraco-itertools/jaraco-itertools-1.7.1.ebuild |  44 
 dev-python/jaraco-itertools/metadata.xml   |  14 ++
 dev-util/ninja/Manifest|   2 -
 dev-util/ninja/ninja-1.5.1.ebuild  | 129 --
 dev-util/ninja/ninja-1.5.3.ebuild  | 123 -
 dev-util/ninja/ninja-1.6.0.ebuild  |   4 +-
 dev-util/ninja/ninja-.ebuild   |   6 +-
 eclass/kde4-meta.eclass|   2 +-
 games-emulation/mednafen/Manifest  |   1 +
 ...cflags.patch => mednafen-0.9.38.7-cflags.patch} |   0
 .../files/mednafen-0.9.38.7-localedir.patch| 278 +
 .../mednafen/files/mednafen-0.9.38.7-zlib.patch|  27 ++
 games-emulation/mednafen/mednafen-0.9.38.7.ebuild  |  68 +
 games-fps/imaze/Manifest   |   1 -
 games-fps/imaze/imaze-1.4.ebuild   |  55 
 games-fps/imaze/metadata.xml   |   5 -
 games-rpg/coe2/coe2-2007-r1.ebuild |   8 +-
 games-strategy/defcon-demo/defcon-demo-1.60.ebuild |   8 +-
 .../ktnef => kde-apps/akonadiconsole}/Manifest |   0
 .../akonadiconsole/akonadiconsole-4.14.10.ebuild   |   4 +-
 .../akonadiconsole/akonadiconsole-4.14.8.ebuild|   4 +-
 .../akonadiconsole}/metadata.xml   |   0
 .../ktimetracker => kde-apps/akregator}/Manifest   |   0
 .../akregator/akregator-4.14.10.ebuild |   4 +-
 .../akregator/akregator-4.14.8.ebuild  |   4 +-
 .../akregator/akregator-4.4.2015.06.ebuild |   4 +-
 .../oxygen-gtk => kde-apps/akregator}/metadata.xml |   0
 {kde-base/korganizer => kde-apps/blogilo}/Manifest |   0
 .../blogilo/blogilo-4.14.10.ebuild |   4 +-
 .../blogilo/blogilo-4.14.8.ebuild  |   4 +-
 .../blogilo/blogilo-4.4.2015.06.ebuild |   2 +-
 .../oxygen-gtk => kde-apps/blogilo}/metadata.xml   |   0
 .../calendarjanitor}/Manifest  |   0
 .../calendarjanitor/calendarjanitor-4.14.10.ebuild |   4 +-
 .../calendarjanitor/calendarjanitor-4.14.8.ebuild  |   4 +-
 .../calendarjanitor}/metadata.xml  |   0
 kde-apps/drkonqi/drkonqi-15.08.3.ebuild|   2 +-
 kde-apps/drkonqi/drkonqi-4.14.3.ebuild |   2 +-
 kde-apps/gpgmepp/gpgmepp-4.14.10.ebuild|   2 +-
 {kde-base/kontact => kde-apps/kabcclient}/Manifest |   0
 .../kabcclient/kabcclient-4.14.10.ebuild   |   2 +-
 .../kabcclient/kabcclient-4.14.8.ebuild|   2 +-
 .../kabcclient/kabcclient-4.4.2015.06.ebuild   |   2 +-
 .../kabcclient}/metadata.xml   |   0
 .../kaddressbook}/Manifest |   0
 .../kaddressbook/kaddressbook-4.14.10.ebuild   |   8 +-
 .../kaddressbook/kaddressbook-4.14.8.ebuild|   8 +-
 .../kaddressbook/kaddressbook-4.4.2015.06.ebuild   |  14 +-
 

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

2015-12-29 Thread Ian Delaney
commit: 9da6d868957b2b4d2e8fc39613223938077894ad
Author: Matthew Brewer  sina  cn>
AuthorDate: Tue Dec 29 19:24:07 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 19:24:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9da6d868

dev-util/idea-ultimate: first EAP release, version 16

 dev-util/idea-ultimate/Manifest  | 2 +-
 ...3.5_pre.ebuild => idea-ultimate-16.0.0.144.2608.2_pre.ebuild} | 9 ++---
 dev-util/idea-ultimate/metadata.xml  | 3 +++
 3 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/dev-util/idea-ultimate/Manifest b/dev-util/idea-ultimate/Manifest
index f2ffc4d..62fb289 100644
--- a/dev-util/idea-ultimate/Manifest
+++ b/dev-util/idea-ultimate/Manifest
@@ -1,4 +1,4 @@
 DIST idea-ultimate-14.1.5.141.2735.5.tar.gz 318054935 SHA256 
6912902ec97a57f5553247367d6dd5b8e3041e99faf32c48b672cd31413dab73 SHA512 
7ab3a45593c2324957455b254ae0257a36e8ecbc63014e18feba813413432dccb25d18971840f43cf22174c3338738eec44304091eb30c6ba2d0119b73cc6fa0
 WHIRLPOOL 
44a4bef99fdb638cf3cb0f24559b7765b7a4c7cb94aed5c3b8e503cbdf9fa1354f6d6026a9650fc58faec037b95482190891681f41219c61fc7d67a40e71f168
 DIST ideaIU-143.1184.17.tar.gz 390459277 SHA256 
5a3f6d8ba6d5ce8c505f13564c04cf2f674f1c022b9a33871013acb0ebe10fe5 SHA512 
bc42244554ed0e533c95b65b1518ffb20ad1407fab22afff0ff3711245d15d97456599bebfcf654553b91a24dcf9042ac769041be3bfc14af76fa48b70f29d94
 WHIRLPOOL 
48ba83f0254e027a8f78d070dd55a63d97225ae763107149db8820d22ceb4dc72d080704bb6ea2ccf0673af77ec9cda9fa13b226c0c885f7336f2e7d50b52ae2
-DIST ideaIU-143.1453.5.tar.gz 391976664 SHA256 
44cec195e78e65e79c8b609a6cb3ada75ef632fe3a73b8d0ad40610a5e95dfbf SHA512 
77e229f08b840ee0b572f5d8036d508ea609f0355a84c64e2bca4dcb8bbe9a2262a1ed46cdd966e9cfd7c8a24a48a3ba3578e229860b27e34a82af57712811a6
 WHIRLPOOL 
90cc48a9a6bbef67a1c607e73f80aacb70a1f290acfa684775da44eb50e6ec9d6dfed1cf55ce76762afe96e5046cc9cb74d392ce6f3eb644944a2b9e06d14917
 DIST ideaIU-143.382.35.tar.gz 379524583 SHA256 
1f4c6f55eeb0ce08f697008935c5b7356e74a85dfaad00f6521670b8f5c6862f SHA512 
cd3fe075be726695144a70b8f6477a7d547ca6c67bfacdf91d64f352066305d18ad0696608ac54d316adb95b3ae7d4d1218d34b28875a084de35dc03da77b91f
 WHIRLPOOL 
99ba3fb796f40bd8cf22c42302fec7e279dc749b681952066d49f6a079ca06e532cc10274bc19a6b12a81cb6f15ebcde8450f774109a6d21a9a8c9b9ea235710
+DIST ideaIU-144.2608.2.tar.gz 442803534 SHA256 
4407049fe9b38d72dcd3540de237aef5528a5e52724d123c7392cefff685ee71 SHA512 
f73db0f68b4570faa879f7a411349b21fdf12e4306e81d439bdfe34c0fb8e1baa9f2789c1f6223ca9588a3de6fedb7a52fc89ddbfc2445e1a041db393999a1c4
 WHIRLPOOL 
1c3da7ff4a85d63f15daed4d8f7e6a7ae52ebc3a42ec8b776312b19c17c7bab2ff1d383734430b105247ed62d998874fd7496c0378d59ff99c17b769b75ed712

diff --git a/dev-util/idea-ultimate/idea-ultimate-15.0.3.143.1453.5_pre.ebuild 
b/dev-util/idea-ultimate/idea-ultimate-16.0.0.144.2608.2_pre.ebuild
similarity index 89%
rename from dev-util/idea-ultimate/idea-ultimate-15.0.3.143.1453.5_pre.ebuild
rename to dev-util/idea-ultimate/idea-ultimate-16.0.0.144.2608.2_pre.ebuild
index ef380e4..ea272d8 100644
--- a/dev-util/idea-ultimate/idea-ultimate-15.0.3.143.1453.5_pre.ebuild
+++ b/dev-util/idea-ultimate/idea-ultimate-16.0.0.144.2608.2_pre.ebuild
@@ -15,7 +15,7 @@ if [[ "$(get_version_component_range 7)x" = "prex" ]]
 then
# upstream EAP
KEYWORDS="~amd64 ~x86"
-   MY_FILENAME="${MY_PN}IU-${PV_STRING}.tar.gz"
+   MY_FILENAME="${MY_PN}IU-${PV_STRING}-custom-jdk-linux.tar.gz"
 else
# upstream stable
KEYWORDS="amd64 x86"
@@ -24,11 +24,11 @@ fi
 
 DESCRIPTION="A complete toolset for web, mobile and enterprise development"
 HOMEPAGE="http://www.jetbrains.com/idea;
-SRC_URI="http://download-cf.jetbrains.com/idea/${MY_FILENAME} -> 
${MY_PN}IU-${PV_STRING}.tar.gz"
+SRC_URI="http://download.jetbrains.com/idea/${MY_FILENAME} -> 
${MY_PN}IU-${PV_STRING}.tar.gz"
 
 LICENSE="IDEA
|| ( IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )"
-IUSE=""
+IUSE="-custom-jdk"
 
 DEPEND="!dev-util/${PN}:14
!dev-util/${PN}:15"
@@ -54,6 +54,9 @@ src_prepare() {
fi
rm -r plugins/tfsIntegration/lib/native/solaris || die
rm -r plugins/tfsIntegration/lib/native/hpux || die
+   if ! use custom-jdk; then
+   rm -r jre || die
+   fi
 }
 
 src_install() {

diff --git a/dev-util/idea-ultimate/metadata.xml 
b/dev-util/idea-ultimate/metadata.xml
index 78f5550..e787117 100644
--- a/dev-util/idea-ultimate/metadata.xml
+++ b/dev-util/idea-ultimate/metadata.xml
@@ -14,4 +14,7 @@
 
 Excel at enterprise, mobile and web development with Java, Scala and Groovy, 
with all the latest modern technologies and frameworks available out of the box.
 
+   
+   Install and use IntelliJ's custom 
JRE.
+   
 



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

2015-12-29 Thread Ian Delaney
commit: c74a603ae11d18544b47127070a1ccc4277b34a2
Author: Louis Sautier  gmail  com>
AuthorDate: Tue Dec 29 15:28:37 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 15:28:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c74a603a

dev-python/backports-unittest-mock: needed as a new dep to test dev-python/irc

Package-Manager: portage-2.2.26

 dev-python/backports-unittest-mock/Manifest|  1 +
 .../backports-unittest-mock-1.1.1.ebuild   | 38 ++
 dev-python/backports-unittest-mock/metadata.xml| 14 
 3 files changed, 53 insertions(+)

diff --git a/dev-python/backports-unittest-mock/Manifest 
b/dev-python/backports-unittest-mock/Manifest
new file mode 100644
index 000..1ccc06c
--- /dev/null
+++ b/dev-python/backports-unittest-mock/Manifest
@@ -0,0 +1 @@
+DIST backports.unittest_mock-1.1.1.tar.gz 3255 SHA256 
641bd99befaa09834df2aa5f01a0db27c782758e06d46831bfae6ff91dc5d1be SHA512 
82872d9ada74b7e64792b29cd49177d5c54ffd64260ce17628df7df08e9e16ee1456d9f80eacacebb43a5e51ad93868cd49bee84209cf6682385e746bcfc90c4
 WHIRLPOOL 
e1c1728a6a2aa0a2ec58a57b23874deb1167d2e3599a20d5e1331ab97e34798519956cb5b20bed735c7a714b6d258944f32144997a9763462c3d373e28a68267

diff --git 
a/dev-python/backports-unittest-mock/backports-unittest-mock-1.1.1.ebuild 
b/dev-python/backports-unittest-mock/backports-unittest-mock-1.1.1.ebuild
new file mode 100644
index 000..98be0c6
--- /dev/null
+++ b/dev-python/backports-unittest-mock/backports-unittest-mock-1.1.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# It is the developer's intention that backports.unittest_mock will be
+# used even for Python 3: https://github.com/jaraco/jaraco.timing/pull/1
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+MY_PN="${MY_PN//-/_}"
+DESCRIPTION="Backport of unittest.mock"
+HOMEPAGE="https://github.com/jaraco/backports.unittest_mock;
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/mock[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_test() {
+   py.test || die "tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/backports-unittest-mock/metadata.xml 
b/dev-python/backports-unittest-mock/metadata.xml
new file mode 100644
index 000..2a913a1
--- /dev/null
+++ b/dev-python/backports-unittest-mock/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   proxy-maintainers
+   
+   sautier.lo...@gmail.com
+   Louis Sautier
+   Proxied maintainer; set to assignee in all 
bugs
+   
+   
+   backports.unittest_mock
+   jaraco/backports.unittest_mock
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-python/backports-functools-lru-cache/

2015-12-29 Thread Ian Delaney
commit: c517ae70f013dfc01107e68bd5e8b78a5db4d33c
Author: Louis Sautier  gmail  com>
AuthorDate: Tue Dec 29 15:32:40 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 29 15:32:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c517ae70

dev-python/backports-functools-lru-cache: needed as a new dep to dev-python/irc

Package-Manager: portage-2.2.26

 dev-python/backports-functools-lru-cache/Manifest  |  1 +
 .../backports-functools-lru-cache-1.2.ebuild   | 41 ++
 .../backports-functools-lru-cache/metadata.xml | 14 
 3 files changed, 56 insertions(+)

diff --git a/dev-python/backports-functools-lru-cache/Manifest 
b/dev-python/backports-functools-lru-cache/Manifest
new file mode 100644
index 000..6fb6571
--- /dev/null
+++ b/dev-python/backports-functools-lru-cache/Manifest
@@ -0,0 +1 @@
+DIST backports.functools_lru_cache-1.2.tar.gz 5325 SHA256 
c2dab0234ef7b0cddfebc46a4c61e9fdbd87d824f356c24a355f6b4446068da4 SHA512 
4f537fa2c61b9e2e77148fa0eb1c4ce49c4238a032d6009c66e71d1a41a2ec0cf187902ff448d3fc4603e03c35fed52513546fac08184ad5a806e518a98d58ac
 WHIRLPOOL 
af26a7edc20bc7ea8d38fbcabe7b418cff4ac1b7f33607513e0db9f0537a26f5ebac7521eda50481b964f2cae9f4e53bc57e51d76f633f0806e95c1a72d9dc76

diff --git 
a/dev-python/backports-functools-lru-cache/backports-functools-lru-cache-1.2.ebuild
 
b/dev-python/backports-functools-lru-cache/backports-functools-lru-cache-1.2.ebuild
new file mode 100644
index 000..edcd64a
--- /dev/null
+++ 
b/dev-python/backports-functools-lru-cache/backports-functools-lru-cache-1.2.ebuild
@@ -0,0 +1,41 @@
+# 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
+
+MY_PN="${PN/-/.}"
+MY_PN="${MY_PN//-/_}"
+DESCRIPTION="Backport of functools.lru_cache from Python 3.3"
+HOMEPAGE="https://github.com/jaraco/backports.functools_lru_cache;
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_prepare_all() {
+   if use test && has_version "${CATEGORY}/${PN}"; then
+   die "Ensure $PN is not already installed or the test suite will 
fail"
+   fi
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   PYTHONPATH=. py.test || die "tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/backports-functools-lru-cache/metadata.xml 
b/dev-python/backports-functools-lru-cache/metadata.xml
new file mode 100644
index 000..1b0a4e9
--- /dev/null
+++ b/dev-python/backports-functools-lru-cache/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   proxy-maintainers
+   
+   sautier.lo...@gmail.com
+   Louis Sautier
+   Proxied maintainer; set to assignee in all 
bugs
+   
+   
+   backports.functools_lru_cache
+   jaraco/backports.functools_lru_cache
+   
+



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

2015-12-29 Thread Ian Delaney
commit: aa0ab88320d855bc69d0ce9f3420d037491393e6
Author: Ian Delaney  gentoo  org>
AuthorDate: Wed Dec 30 02:31:38 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Wed Dec 30 02:32:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0ab883

Merge remote-tracking branch 'remotes/sbraz/jaraco-functools'

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

 dev-python/jaraco-functools/Manifest   |  1 +
 .../jaraco-functools/jaraco-functools-1.8.1.ebuild | 46 ++
 dev-python/jaraco-functools/metadata.xml   | 14 +++
 3 files changed, 61 insertions(+)



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

2015-12-29 Thread Ian Delaney
commit: 184f7d4400bae7ef56f1262daa00dc9e11f2a1d6
Author: Louis Sautier  gmail  com>
AuthorDate: Wed Dec 30 00:06:58 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Wed Dec 30 02:32:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=184f7d44

dev-python/jaraco-functools: needed as a new dep to dev-python/irc

Package-Manager: portage-2.2.26

 dev-python/jaraco-functools/Manifest   |  1 +
 .../jaraco-functools/jaraco-functools-1.8.1.ebuild | 46 ++
 dev-python/jaraco-functools/metadata.xml   | 14 +++
 3 files changed, 61 insertions(+)

diff --git a/dev-python/jaraco-functools/Manifest 
b/dev-python/jaraco-functools/Manifest
new file mode 100644
index 000..2bef306
--- /dev/null
+++ b/dev-python/jaraco-functools/Manifest
@@ -0,0 +1 @@
+DIST jaraco.functools-1.8.1.tar.gz 6125 SHA256 
766cd9caed0c18dfbf744dcd05d1f171f03e64ab8f7363d5b2521ba200383c5a SHA512 
d67795340238bd646bea450e8bb37fb64bca66a41a4b8f385f4a986b880578edfa2dad23b820a1a9cce7460dc530a2de2a219362e9cd0ced851040e86fb70f21
 WHIRLPOOL 
bd050b7daa52f2f5043ca2209562472b96d9ec5d417edf96bf686eb0f60a4bde6b69890557140f7f0b278e8d612c702b01a5b72ccae5b894b3646d37582a1da5

diff --git a/dev-python/jaraco-functools/jaraco-functools-1.8.1.ebuild 
b/dev-python/jaraco-functools/jaraco-functools-1.8.1.ebuild
new file mode 100644
index 000..9914b72
--- /dev/null
+++ b/dev-python/jaraco-functools/jaraco-functools-1.8.1.ebuild
@@ -0,0 +1,46 @@
+# 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_4,3_5} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+DESCRIPTION="Additional functions used by other projects by developer jaraco"
+HOMEPAGE="https://github.com/jaraco/jaraco.functools;
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+# https://github.com/jaraco/jaraco.functools/issues/3
+RESTRICT="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'dev-python/backports-functools-lru-cache[${PYTHON_USEDEP}]' python2_7)
+"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_prepare_all() {
+   if use test && has_version "${CATEGORY}/${PN}"; then
+   die "Ensure $PN is not already installed or the test suite will 
fail"
+   fi
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   PYTHONPATH=. py.test || die "tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/jaraco-functools/metadata.xml 
b/dev-python/jaraco-functools/metadata.xml
new file mode 100644
index 000..811c8d1
--- /dev/null
+++ b/dev-python/jaraco-functools/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   proxy-maintainers
+   
+   sautier.lo...@gmail.com
+   Louis Sautier
+   Proxied maintainer; set to assignee in all 
bugs
+   
+   
+   jaraco.functools
+   jaraco/jaraco.functools
+   
+



[gentoo-commits] proj/releng: New branch: wip-cloud-kconfig

2015-12-29 Thread Robin H. Johnson
commit: 
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Dec 29 21:44:45 2015 +

New branch: wip-cloud-kconfig




[gentoo-commits] repo/gentoo:master commit in: media-video/libav/files/, media-video/libav/

2015-12-29 Thread Sergei Trofimovich
commit: 4e0515713cdef6345aeb04bc57df0468df492bed
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Dec 29 19:51:00 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Dec 29 19:51:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e051571

media-video/libav: fix for libvpx-1.5.0, bug #565696

Pulled upstream patch as is.

Reported-by: Peter Levine
Bug: https://bugs.gentoo.org/565696

Package-Manager: portage-2.2.26

 .../libav/files/libav-11.3-libvpx-1.5.0.patch  | 47 ++
 media-video/libav/libav-11.3-r1.ebuild |  1 +
 2 files changed, 48 insertions(+)

diff --git a/media-video/libav/files/libav-11.3-libvpx-1.5.0.patch 
b/media-video/libav/files/libav-11.3-libvpx-1.5.0.patch
new file mode 100644
index 000..6844a15
--- /dev/null
+++ b/media-video/libav/files/libav-11.3-libvpx-1.5.0.patch
@@ -0,0 +1,47 @@
+https://bugs.gentoo.org/565696
+
+commit 4d05e9392f84702e3c833efa86e84c7f1cf5f612
+Author: James Zern 
+Date:   Mon Oct 19 22:44:11 2015 -0700
+
+libvpxenc: remove some unused ctrl id mappings
+
+VP8E_UPD_ENTROPY, VP8E_UPD_REFERENCE, VP8E_USE_REFERENCE were removed
+from libvpx and the remaining values were never used here
+
+Reviewed-by: Michael Niedermayer 
+Signed-off-by: James Zern 
+Signed-off-by: Luca Barbato 
+
+diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c
+index 563117f..d1e2523 100644
+--- a/libavcodec/libvpxenc.c
 b/libavcodec/libvpxenc.c
+@@ -71,23 +71,15 @@ typedef struct VP8EncoderContext {
+ 
+ /** String mappings for enum vp8e_enc_control_id */
+ static const char *const ctlidstr[] = {
+-[VP8E_UPD_ENTROPY]   = "VP8E_UPD_ENTROPY",
+-[VP8E_UPD_REFERENCE] = "VP8E_UPD_REFERENCE",
+-[VP8E_USE_REFERENCE] = "VP8E_USE_REFERENCE",
+-[VP8E_SET_ROI_MAP]   = "VP8E_SET_ROI_MAP",
+-[VP8E_SET_ACTIVEMAP] = "VP8E_SET_ACTIVEMAP",
+-[VP8E_SET_SCALEMODE] = "VP8E_SET_SCALEMODE",
++[VP8E_SET_ARNR_MAXFRAMES]= "VP8E_SET_ARNR_MAXFRAMES",
++[VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH",
++[VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE",
+ [VP8E_SET_CPUUSED]   = "VP8E_SET_CPUUSED",
++[VP8E_SET_CQ_LEVEL]  = "VP8E_SET_CQ_LEVEL",
+ [VP8E_SET_ENABLEAUTOALTREF]  = "VP8E_SET_ENABLEAUTOALTREF",
+ [VP8E_SET_NOISE_SENSITIVITY] = "VP8E_SET_NOISE_SENSITIVITY",
+-[VP8E_SET_SHARPNESS] = "VP8E_SET_SHARPNESS",
+ [VP8E_SET_STATIC_THRESHOLD]  = "VP8E_SET_STATIC_THRESHOLD",
+ [VP8E_SET_TOKEN_PARTITIONS]  = "VP8E_SET_TOKEN_PARTITIONS",
+-[VP8E_GET_LAST_QUANTIZER]= "VP8E_GET_LAST_QUANTIZER",
+-[VP8E_SET_ARNR_MAXFRAMES]= "VP8E_SET_ARNR_MAXFRAMES",
+-[VP8E_SET_ARNR_STRENGTH] = "VP8E_SET_ARNR_STRENGTH",
+-[VP8E_SET_ARNR_TYPE] = "VP8E_SET_ARNR_TYPE",
+-[VP8E_SET_CQ_LEVEL]  = "VP8E_SET_CQ_LEVEL",
+ };
+ 
+ static av_cold void log_encoder_error(AVCodecContext *avctx, const char *desc)

diff --git a/media-video/libav/libav-11.3-r1.ebuild 
b/media-video/libav/libav-11.3-r1.ebuild
index 4034d60..ef74325 100644
--- a/media-video/libav/libav-11.3-r1.ebuild
+++ b/media-video/libav/libav-11.3-r1.ebuild
@@ -155,6 +155,7 @@ src_prepare() {
epatch_user
 
epatch "${WORKDIR}/0001-x86-Put-COPY3_IF_LT-under-HAVE_6REGS.patch"
+   epatch "${FILESDIR}"/${P}-libvpx-1.5.0.patch #565696
 
# if we have snapshot then we need to hardcode the version
if [[ ${PV%_p*} != ${PV} ]]; then



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

2015-12-29 Thread Zac Medico
commit: 87e32d4863f3f72ace3fc123b04a0e6f5ff96799
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Dec 28 02:09:34 2015 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 29 20:27:41 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=87e32d48

repoman: fix KeyError triggered by fetch failure during manifest generation 
(bug 569942)

Fix Scanner not to override portdbapi._aux_cache_keys when generating
manifests, since spawn_nofetch requires additional keys.

Fixes: 39d81c514c33 ("[...]config.__getitem__(): Partially drop backward 
compatibility for nonexistent keys.")
X-Gentoo-Bug: 569942
X-Gentoo-Bug-url: https://bugs.gentoo.org/show_bug.cgi?id=569942
Acked-by: Brian Dolbec  gentoo.org>

 pym/repoman/scanner.py | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/pym/repoman/scanner.py b/pym/repoman/scanner.py
index 9a87f65..d1c10d7 100644
--- a/pym/repoman/scanner.py
+++ b/pym/repoman/scanner.py
@@ -93,9 +93,13 @@ class Scanner(object):
self.portdb.settings = self.repo_settings.repoman_settings
# We really only need to cache the metadata that's necessary 
for visibility
# filtering. Anything else can be discarded to reduce memory 
consumption.
-   self.portdb._aux_cache_keys.clear()
-   self.portdb._aux_cache_keys.update(
-   ["EAPI", "IUSE", "KEYWORDS", "repository", "SLOT"])
+   if self.options.mode != "manifest" and self.options.digest != 
"y":
+   # Don't do this when generating manifests, since that 
uses
+   # additional keys if spawn_nofetch is called (RESTRICT 
and
+   # DEFINED_PHASES).
+   self.portdb._aux_cache_keys.clear()
+   self.portdb._aux_cache_keys.update(
+   ["EAPI", "IUSE", "KEYWORDS", "repository", 
"SLOT"])
 
self.reposplit = myreporoot.split(os.path.sep)
self.repolevel = len(self.reposplit)



[gentoo-commits] proj/portage:master commit in: pym/portage/emaint/modules/merges/

2015-12-29 Thread Brian Dolbec
commit: bff7a405f648ee1fbaad46933558f31bcd3c15fa
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Dec 29 21:14:13 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Dec 29 21:18:27 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=bff7a405

emaint/.../merges: Rename --purge-tracker option due to bug 562652

Renaming the long option back  to --purge, fixes it to work correctly.
Due to the structure of the plugin-system, it may need some re-wrok to handle 
hyphenated long options correctly.

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

 pym/portage/emaint/modules/merges/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/portage/emaint/modules/merges/__init__.py 
b/pym/portage/emaint/modules/merges/__init__.py
index bcb2ac8..211b7eb 100644
--- a/pym/portage/emaint/modules/merges/__init__.py
+++ b/pym/portage/emaint/modules/merges/__init__.py
@@ -16,7 +16,7 @@ module_spec = {
'functions': ['check', 'fix', 'purge'],
'func_desc': {
'purge': {
-   'short': '-P', 'long': 
'--purge-tracker',
+   'short': '-P', 'long': '--purge',
'help': 'Removes the list of previously 
failed merges.' +
' WARNING: Only use 
this option if you plan on' +
' manually fixing them 
or do not want them'



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

2015-12-29 Thread Manuel Rüger
commit: b7deb22eca38e3223e5fbc6f2eec12b49a82625a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Dec 29 21:58:21 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Dec 29 21:58:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7deb22e

dev-libs/libsodium: Version bump

Package-Manager: portage-2.2.26

 dev-libs/libsodium/Manifest   |  1 +
 dev-libs/libsodium/libsodium-1.0.8.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/dev-libs/libsodium/Manifest b/dev-libs/libsodium/Manifest
index b501933..5bf866b 100644
--- a/dev-libs/libsodium/Manifest
+++ b/dev-libs/libsodium/Manifest
@@ -2,3 +2,4 @@ DIST libsodium-1.0.2.tar.gz 1673394 SHA256 
961d8f10047f545ae658bcc73b8ab0bf2c312
 DIST libsodium-1.0.5.tar.gz 1787478 SHA256 
bfcafc678c7dac87866c50f9b99aa821750762edcf8e56fc6d13ba0ffbef8bab SHA512 
978867f7499ec07817a95213baea79fd45d3cdd48c343723490471f79a1b0df2fa0638a91c46a08717fe03a1d8b68789445cb34be969d91023ba7edc8750835c
 WHIRLPOOL 
a46f6ca3eb98151cbc230aa1fd344b4038415f717382fa912f1750c83ed73bcc778fd634cdb7ae9c81b79c94b2d3e949a63d10adaf1ec822ba4be4e4b6fd7620
 DIST libsodium-1.0.6.tar.gz 1791565 SHA256 
940d03ea7d2caa7940e24564bf6d9f66d6edd1df1e0111ff8e3655f3b864fb59 SHA512 
f1232bfd31f8ba60650f594af469e48797924de0d2ce1e9bd0be75614e19b77727b3bcaa9a553cd5613db92738caea79edca5f2ff77ab392b1dff570dcd6be7d
 WHIRLPOOL 
e29abdc4ee4687b0bf53f8fcc5f2f276b00d0fd3045faeac5469ba70a54611ea633e3cd9bb9347c467c05c8b0bdd4094683491b31a50d7ab664a8e903e31a529
 DIST libsodium-1.0.7.tar.gz 1808032 SHA256 
7ad1e78763510c163ca48f05133057726a825cf97386c581bf12b01d7654204a SHA512 
21a2991010bc4e6e03d42c6df5443049c99f7622dc68a7bdc3d6d082621a165faab32612280526509d310ad1faefc00aa21c594a384a7fa8b05f4666e82e5e1d
 WHIRLPOOL 
a8fe262217365f348c36c6a789fdd7fe479e72c88a8314804b3d7b6154a8cad0ab8517ee9d517fdf407d7d5b6a789868a4a5ac66d9ecf2575917c42bbc3eb49c
+DIST libsodium-1.0.8.tar.gz 1794750 SHA256 
c0f191d2527852641e0a996b7b106d2e04cbc76ea50731b2d0babd3409301926 SHA512 
8f85e85e699c2b45674befd466e018c9f2ff1333c8fa806da49d9674068c33929bd3463e8908ffcd9c6154d430737e08e0522ac8ed4219e4fffe2e0a7a611c65
 WHIRLPOOL 
379addb00b366d2de887749fa72b17c003fa583728788e416e363a64196ade3ead9b5e12691f7693f0554323b88dc3c0cb6038c7abaf7f1291d60b97cc24daf6

diff --git a/dev-libs/libsodium/libsodium-1.0.8.ebuild 
b/dev-libs/libsodium/libsodium-1.0.8.ebuild
new file mode 100644
index 000..dda09ab
--- /dev/null
+++ b/dev-libs/libsodium/libsodium-1.0.8.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="A portable fork of NaCl, a higher-level cryptographic library"
+HOMEPAGE="https://github.com/jedisct1/libsodium;
+SRC_URI="http://download.libsodium.org/${PN}/releases/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0/18"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+IUSE="+asm minimal static-libs +urandom"
+
+src_configure() {
+   local myconf
+
+   # --disable-pie needed on x86, bug #512734
+   use x86 && myconf="${myconf} --disable-pie"
+
+   econf \
+   $(use_enable asm) \
+   $(use_enable minimal) \
+   $(use_enable !urandom blocking-random) \
+   $(use_enable static-libs static) \
+   ${myconf}
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



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

2015-12-29 Thread Manuel Rüger
commit: 4689200a63d2488399fc8c6c79485a894954ce29
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Dec 29 21:59:38 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Dec 29 21:59:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4689200a

dev-libs/libsodium: Remove old

Package-Manager: portage-2.2.26

 dev-libs/libsodium/Manifest  |  2 --
 dev-libs/libsodium/libsodium-1.0.5.ebuild| 35 
 dev-libs/libsodium/libsodium-1.0.6-r1.ebuild | 35 
 3 files changed, 72 deletions(-)

diff --git a/dev-libs/libsodium/Manifest b/dev-libs/libsodium/Manifest
index 5bf866b..977c690 100644
--- a/dev-libs/libsodium/Manifest
+++ b/dev-libs/libsodium/Manifest
@@ -1,5 +1,3 @@
 DIST libsodium-1.0.2.tar.gz 1673394 SHA256 
961d8f10047f545ae658bcc73b8ab0bf2c312ac945968dd579d87c768e5baa19 SHA512 
15fc47516f0e35906c1c304205fa991e74a273e4e6fc2186b6c16f0e41523de24493e149262b97ef03e4adc221232372ef1f283c4c23f96e4c5d99023d361e14
 WHIRLPOOL 
18509d9911c1d0ec6e8b9a8735abfeb2c1623669d31045abc6d9dd1289571fbe3a055f960f42a86779e7c03967532d71d7b9d0597ecfe457672e69b27b577e48
-DIST libsodium-1.0.5.tar.gz 1787478 SHA256 
bfcafc678c7dac87866c50f9b99aa821750762edcf8e56fc6d13ba0ffbef8bab SHA512 
978867f7499ec07817a95213baea79fd45d3cdd48c343723490471f79a1b0df2fa0638a91c46a08717fe03a1d8b68789445cb34be969d91023ba7edc8750835c
 WHIRLPOOL 
a46f6ca3eb98151cbc230aa1fd344b4038415f717382fa912f1750c83ed73bcc778fd634cdb7ae9c81b79c94b2d3e949a63d10adaf1ec822ba4be4e4b6fd7620
-DIST libsodium-1.0.6.tar.gz 1791565 SHA256 
940d03ea7d2caa7940e24564bf6d9f66d6edd1df1e0111ff8e3655f3b864fb59 SHA512 
f1232bfd31f8ba60650f594af469e48797924de0d2ce1e9bd0be75614e19b77727b3bcaa9a553cd5613db92738caea79edca5f2ff77ab392b1dff570dcd6be7d
 WHIRLPOOL 
e29abdc4ee4687b0bf53f8fcc5f2f276b00d0fd3045faeac5469ba70a54611ea633e3cd9bb9347c467c05c8b0bdd4094683491b31a50d7ab664a8e903e31a529
 DIST libsodium-1.0.7.tar.gz 1808032 SHA256 
7ad1e78763510c163ca48f05133057726a825cf97386c581bf12b01d7654204a SHA512 
21a2991010bc4e6e03d42c6df5443049c99f7622dc68a7bdc3d6d082621a165faab32612280526509d310ad1faefc00aa21c594a384a7fa8b05f4666e82e5e1d
 WHIRLPOOL 
a8fe262217365f348c36c6a789fdd7fe479e72c88a8314804b3d7b6154a8cad0ab8517ee9d517fdf407d7d5b6a789868a4a5ac66d9ecf2575917c42bbc3eb49c
 DIST libsodium-1.0.8.tar.gz 1794750 SHA256 
c0f191d2527852641e0a996b7b106d2e04cbc76ea50731b2d0babd3409301926 SHA512 
8f85e85e699c2b45674befd466e018c9f2ff1333c8fa806da49d9674068c33929bd3463e8908ffcd9c6154d430737e08e0522ac8ed4219e4fffe2e0a7a611c65
 WHIRLPOOL 
379addb00b366d2de887749fa72b17c003fa583728788e416e363a64196ade3ead9b5e12691f7693f0554323b88dc3c0cb6038c7abaf7f1291d60b97cc24daf6

diff --git a/dev-libs/libsodium/libsodium-1.0.5.ebuild 
b/dev-libs/libsodium/libsodium-1.0.5.ebuild
deleted file mode 100644
index a87bde8..000
--- a/dev-libs/libsodium/libsodium-1.0.5.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="A portable fork of NaCl, a higher-level cryptographic library"
-HOMEPAGE="https://github.com/jedisct1/libsodium;
-SRC_URI="http://download.libsodium.org/${PN}/releases/${P}.tar.gz;
-
-LICENSE="ISC"
-SLOT="0/13"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
-IUSE="+asm minimal static-libs +urandom"
-
-src_configure() {
-   local myconf
-
-   # --disable-pie needed on x86, bug #512734
-   use x86 && myconf="${myconf} --disable-pie"
-
-   econf \
-   $(use_enable asm) \
-   $(use_enable minimal) \
-   $(use_enable !urandom blocking-random) \
-   $(use_enable static-libs static) \
-   ${myconf}
-}
-
-src_install() {
-   default
-   prune_libtool_files
-}

diff --git a/dev-libs/libsodium/libsodium-1.0.6-r1.ebuild 
b/dev-libs/libsodium/libsodium-1.0.6-r1.ebuild
deleted file mode 100644
index 54f4c49..000
--- a/dev-libs/libsodium/libsodium-1.0.6-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="A portable fork of NaCl, a higher-level cryptographic library"
-HOMEPAGE="https://github.com/jedisct1/libsodium;
-SRC_URI="http://download.libsodium.org/${PN}/releases/${P}.tar.gz;
-
-LICENSE="ISC"
-SLOT="0/17"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
-IUSE="+asm minimal static-libs +urandom"
-
-src_configure() {
-   local myconf
-
-   # --disable-pie needed on x86, bug #512734
-   use x86 && myconf="${myconf} --disable-pie"
-
-   econf \
-   $(use_enable asm) \
-   $(use_enable minimal) \
-   $(use_enable !urandom blocking-random) \
-   $(use_enable 

[gentoo-commits] repo/gentoo:master commit in: games-strategy/defcon-demo/

2015-12-29 Thread Michael Sterrett
commit: 778a2190f783058901a615d9483438fa41834443
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Dec 29 18:50:43 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Tue Dec 29 20:31:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778a2190

games-strategy/defcon-demo: add libsdl use deps; tidy

Package-Manager: portage-2.2.24

 games-strategy/defcon-demo/defcon-demo-1.60.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/games-strategy/defcon-demo/defcon-demo-1.60.ebuild 
b/games-strategy/defcon-demo/defcon-demo-1.60.ebuild
index 174b6fc..811ba4a 100644
--- a/games-strategy/defcon-demo/defcon-demo-1.60.ebuild
+++ b/games-strategy/defcon-demo/defcon-demo-1.60.ebuild
@@ -31,7 +31,7 @@ RDEPEND="
x11-libs/libXau
x11-libs/libXext
x11-libs/libXdmcp
-   system-libs? ( media-libs/libsdl )"
+   system-libs? ( media-libs/libsdl[sound,video] )"
 DEPEND=""
 
 QA_PREBUILT="${GAMES_PREFIX_OPT:1}/${PN}/lib/${MY_PN}.bin.x86"
@@ -55,10 +55,8 @@ src_prepare() {
fi
sed \
-e "s:GAMEDIR:${GAMES_PREFIX_OPT}/${PN}:g" \
-   "${FILESDIR}"/${MY_PN} > "${T}"/${MY_PN} \
-   || die "sed failed"
-   echo "int chdir(const char *d) { return 0; }" > chdir.c \
-   || die "echo failed"
+   "${FILESDIR}"/${MY_PN} > "${T}"/${MY_PN} || die
+   echo "int chdir(const char *d) { return 0; }" > chdir.c || die
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: games-rpg/coe2/

2015-12-29 Thread Michael Sterrett
commit: cb91080b900eb6671562eb4e27027dd9ba78d86a
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Dec 29 20:12:43 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Tue Dec 29 20:31:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb91080b

games-rpg/coe2: add libsdl use deps; fix save file symlink creation

Package-Manager: portage-2.2.24

 games-rpg/coe2/coe2-2007-r1.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/games-rpg/coe2/coe2-2007-r1.ebuild 
b/games-rpg/coe2/coe2-2007-r1.ebuild
index 8d8aefe..906453a 100644
--- a/games-rpg/coe2/coe2-2007-r1.ebuild
+++ b/games-rpg/coe2/coe2-2007-r1.ebuild
@@ -15,14 +15,14 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 RESTRICT="mirror bindist"
 
-RDEPEND="media-libs/libsdl"
+RDEPEND="media-libs/libsdl[sound,video]"
 DEPEND="${RDEPEND}
app-arch/unzip"
 
 S=${WORKDIR}/coe
 
 # bug #430026
-QA_PREBUILT="/opt/coe2/coe_linux"
+QA_PREBUILT="${GAMES_PREFIX_OPT}/coe2/coe_linux"
 
 src_prepare() {
rm -r *.{dll,exe} old || die
@@ -47,8 +47,8 @@ src_install() {
dodir "${state_dir}"
for slot in {0..4} ; do
f=save${slot}
-   dosym "${state_dir}/save${slot}" "${dir}/${f}"
-   echo "empty slot ${slot}" > "${D}${state_dir}/${f}" || die 
"echo"
+   dosym "${state_dir}/save${slot}" 
"${GAMES_PREFIX_OPT}/${PN}/${f}"
+   echo "empty slot ${slot}" > "${D}${state_dir}/${f}" || die
fperms 660 "${state_dir}/${f}"
done
 



[gentoo-commits] repo/gentoo:master commit in: games-fps/imaze/

2015-12-29 Thread Michael Sterrett
commit: d5a33303bcbc877c8faa459ab2817f19ceacb1ac
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Dec 29 20:32:38 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Tue Dec 29 20:32:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a33303

games-fps/imaze: games-fps/imaze is gone

 games-fps/imaze/Manifest |  1 -
 games-fps/imaze/imaze-1.4.ebuild | 55 
 games-fps/imaze/metadata.xml |  5 
 3 files changed, 61 deletions(-)

diff --git a/games-fps/imaze/Manifest b/games-fps/imaze/Manifest
deleted file mode 100644
index 6a1009d..000
--- a/games-fps/imaze/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST imaze-1.4.tar.gz 649705 SHA256 
2057b607d0a2872384d8a742fa9fac884fd9a03492733eb771cb1f85ff20528b SHA512 
3319a4745926b409ee9ebf2b54cfecc2ce4a8b3adf63b69219d021295ab4a6452284f86c696b434742e381aceb175ab6f17ee2b78ae96ad0df5e00cf9b19dfe2
 WHIRLPOOL 
48c3c04c3d2623988ad7b242212174467dcf3de82ee0622702a621f19499014b84ebd965b0023961f3918eee74dc7aa0817c862b01550d3afc048898c7c28e22

diff --git a/games-fps/imaze/imaze-1.4.ebuild b/games-fps/imaze/imaze-1.4.ebuild
deleted file mode 100644
index b50877f..000
--- a/games-fps/imaze/imaze-1.4.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit games
-
-DESCRIPTION="Multi player, real time, 3D, labyrinth, run & shoot game"
-HOMEPAGE="http://home.tu-clausthal.de/student/iMaze/;
-SRC_URI="http://home.tu-clausthal.de/student/iMaze/files/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~ppc x86"
-IUSE="joystick"
-
-RDEPEND="x11-libs/libXmu
-   x11-libs/libX11
-   x11-libs/libXaw
-   x11-libs/libXt
-   x11-libs/libXaw3d"
-DEPEND="${RDEPEND}
-   x11-proto/xproto"
-
-S=${WORKDIR}/${P}/source
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   sed -i \
-   -e s:'DEFINES=-DDEFAULT_SOUND_DIR=\\"`pwd`/../sounds\\"':\
-'DEFINES=-DDEFAULT_SERVER=\\"localhost\\" 
-DDEFAULT_SOUND_DIR=\\"${GAMES_DATADIR}/${PN}/sounds\\"': Makefile.in \
-   || die "sed failed"
-}
-
-src_compile() {
-   local myconf="audio athena"
-
-   use joystick \
-   && myconf="${myconf} joystick" \
-   || myconf="${myconf} nojoystick"
-
-   # not an autoconf script.
-   ./configure ${myconf} || die "configure failed"
-   emake || die "emake failed"
-}
-
-src_install() {
-   dogamesbin genlab imaze imazesrv imazestat ninja xlabed \
-   || die "dogamesbin failed"
-   dodoc ../README
-   doman ../man6/*6
-   insinto "${GAMES_DATADIR}/${PN}"
-   doins -r ../labs/ ../sounds/ || die "doins failed"
-   prepgamesdirs
-}

diff --git a/games-fps/imaze/metadata.xml b/games-fps/imaze/metadata.xml
deleted file mode 100644
index d3c2cc9..000
--- a/games-fps/imaze/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-games
-



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

2015-12-29 Thread Michael Sterrett
commit: 7fcefbc14fd44781f86225e200d1506dd419e0b1
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Dec 29 20:33:43 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Tue Dec 29 20:33:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fcefbc1

profiles: games-fps/imaze is gone

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 4ab1b0e..d9f23c2 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -205,11 +205,6 @@ net-p2p/bittorrent
 # for removal in 30 days.
 dev-perl/TextToHTML
 
-# Michael Sterrett  (22 Nov 2015)
-# Upstream is gone and doesn't build on modern systems.
-# Masked for removal on 20151222
-games-fps/imaze
-
 # Patrice Clement  (21 Nov 2015)
 # Upstream dead + superseded by app-text/tidy-html5.
 # Masked for removal in 30 days. See bug #564884.



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

2015-12-29 Thread Manuel Rüger
commit: 1248e9c109765dc489283129850b453947bdee2c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Dec 29 22:04:22 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Dec 29 22:04:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1248e9c1

x11-libs/libdrm: Version bump

Package-Manager: portage-2.2.26

 x11-libs/libdrm/Manifest |  1 +
 x11-libs/libdrm/libdrm-2.4.66.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/x11-libs/libdrm/Manifest b/x11-libs/libdrm/Manifest
index 098826a..7bcee90 100644
--- a/x11-libs/libdrm/Manifest
+++ b/x11-libs/libdrm/Manifest
@@ -1,3 +1,4 @@
 DIST libdrm-2.4.59.tar.bz2 592722 SHA256 
68d26e1fd85582f4243d66864f9b43ca4ee93662825de32b5506fc8e181ea41b SHA512 
b9f61cfd47cf4a02c10e7fe79b0e9c5701383c76425cf4985a9b91d909f905334ca1ace7334aa0a4ab400694ad84a1a3bc1c3f29842d808026702b35fa9f87c3
 WHIRLPOOL 
6b0e1be70164db86152503e4b72373736f0462ff97ffac2c79a6c1fce83d658e6030d5435be5a61c1f6ca50728db4c7e3a5d8f5e48073fc74169696ff1b7c5be
 DIST libdrm-2.4.64.tar.bz2 640440 SHA256 
b60786fe7d6e42adb3966ce1a658f63fec528d537396381cbda93bcc99a934b6 SHA512 
f4fae23b981c761622b6170ae1f5bc805fc9fe2c5f3531dd45b3e3fcb65c4c4f08d39744c30e2d7f9c14ce6f13dac4a655c0b0ca9785965c59917a4e594e507b
 WHIRLPOOL 
49a96a5d2795f2a9c9fca5cc5808cbfa5e06717d7f4b8221cee55288e16cee503a109321aea04680900fb0bc80e56482a6c8cd15e887eee3d327f0af52706fac
 DIST libdrm-2.4.65.tar.bz2 645877 SHA256 
71960ac8bde7d710992b1bc8879935e8300a870c36bd06f22412d0447e3d96c4 SHA512 
fabbb3ba163aa1307288472c11c6ce8f1e412cbd67ba3135a614f0e05bf4f881bf6ccc581e9cf05a7e2e965817bb71c0b5335263b5c0b0cb85829a0f29a6029d
 WHIRLPOOL 
b00d7aed0437ee0f64f60ed59becf41d165c101725cab700345203b2108a2adc9ed95d17acc0dff5706df86c87c13d058991417f42db40dfc523279cc5eb8547
+DIST libdrm-2.4.66.tar.bz2 694574 SHA256 
79cb8e988749794edfb2d777b298d5292eff35371ed813589e61d2bc2d76 SHA512 
e0e3cea490389271690a79b5be8acd5e7c892a0646285617bd00d85f7c56ac163580c8c62d9fa79ed99e89468e35eaed6ac8be6ea870ce5ab09589f3e2d7f506
 WHIRLPOOL 
6f691c8f7444b70461896f2b91a5256c655124c12cb51b25163859db2f556692d182e43b79a851cbc8d565fde1cbe146133d177dbabe442289ab051170b6a695

diff --git a/x11-libs/libdrm/libdrm-2.4.66.ebuild 
b/x11-libs/libdrm/libdrm-2.4.66.ebuild
new file mode 100644
index 000..8ec9f11
--- /dev/null
+++ b/x11-libs/libdrm/libdrm-2.4.66.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+XORG_MULTILIB=yes
+inherit xorg-2
+
+DESCRIPTION="X.Org libdrm library"
+HOMEPAGE="http://dri.freedesktop.org/;
+if [[ ${PV} = * ]]; then
+   EGIT_REPO_URI="git://anongit.freedesktop.org/git/mesa/drm"
+else
+   SRC_URI="http://dri.freedesktop.org/${PN}/${P}.tar.bz2;
+fi
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux"
+VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS} libkms valgrind"
+RESTRICT="test" # see bug #236845
+
+RDEPEND=">=dev-libs/libpthread-stubs-0.3-r1:=[${MULTILIB_USEDEP}]
+   video_cards_intel? ( 
>=x11-libs/libpciaccess-0.13.1-r1:=[${MULTILIB_USEDEP}] )
+   abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )"
+DEPEND="${RDEPEND}
+   valgrind? ( dev-util/valgrind )"
+
+src_prepare() {
+   if [[ ${PV} = * ]]; then
+   # tests are restricted, no point in building them
+   sed -ie 's/tests //' "${S}"/Makefile.am
+   fi
+   xorg-2_src_prepare
+}
+
+src_configure() {
+   XORG_CONFIGURE_OPTIONS=(
+   # Udev is only used by tests now.
+   --disable-udev
+   --disable-cairo-tests
+   $(use_enable video_cards_amdgpu amdgpu)
+   $(use_enable video_cards_exynos exynos-experimental-api)
+   $(use_enable video_cards_freedreno freedreno)
+   $(use_enable video_cards_intel intel)
+   $(use_enable video_cards_nouveau nouveau)
+   $(use_enable video_cards_omap omap-experimental-api)
+   $(use_enable video_cards_radeon radeon)
+   $(use_enable video_cards_tegra tegra-experimental-api)
+   $(use_enable video_cards_vmware vmwgfx)
+   $(use_enable libkms)
+   # valgrind installs its .pc file to the pkgconfig for the 
primary arch
+   --enable-valgrind=$(usex valgrind auto no)
+   )
+
+   xorg-2_src_configure
+}



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

2015-12-29 Thread Manuel Rüger
commit: 59c6073d5bf81288da9859eee462cdced4237f71
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Dec 29 22:05:00 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Dec 29 22:05:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59c6073d

x11-libs/libdrm: Remove old

Package-Manager: portage-2.2.26

 x11-libs/libdrm/Manifest |  1 -
 x11-libs/libdrm/libdrm-2.4.64.ebuild | 61 
 2 files changed, 62 deletions(-)

diff --git a/x11-libs/libdrm/Manifest b/x11-libs/libdrm/Manifest
index 7bcee90..d4c60d6 100644
--- a/x11-libs/libdrm/Manifest
+++ b/x11-libs/libdrm/Manifest
@@ -1,4 +1,3 @@
 DIST libdrm-2.4.59.tar.bz2 592722 SHA256 
68d26e1fd85582f4243d66864f9b43ca4ee93662825de32b5506fc8e181ea41b SHA512 
b9f61cfd47cf4a02c10e7fe79b0e9c5701383c76425cf4985a9b91d909f905334ca1ace7334aa0a4ab400694ad84a1a3bc1c3f29842d808026702b35fa9f87c3
 WHIRLPOOL 
6b0e1be70164db86152503e4b72373736f0462ff97ffac2c79a6c1fce83d658e6030d5435be5a61c1f6ca50728db4c7e3a5d8f5e48073fc74169696ff1b7c5be
-DIST libdrm-2.4.64.tar.bz2 640440 SHA256 
b60786fe7d6e42adb3966ce1a658f63fec528d537396381cbda93bcc99a934b6 SHA512 
f4fae23b981c761622b6170ae1f5bc805fc9fe2c5f3531dd45b3e3fcb65c4c4f08d39744c30e2d7f9c14ce6f13dac4a655c0b0ca9785965c59917a4e594e507b
 WHIRLPOOL 
49a96a5d2795f2a9c9fca5cc5808cbfa5e06717d7f4b8221cee55288e16cee503a109321aea04680900fb0bc80e56482a6c8cd15e887eee3d327f0af52706fac
 DIST libdrm-2.4.65.tar.bz2 645877 SHA256 
71960ac8bde7d710992b1bc8879935e8300a870c36bd06f22412d0447e3d96c4 SHA512 
fabbb3ba163aa1307288472c11c6ce8f1e412cbd67ba3135a614f0e05bf4f881bf6ccc581e9cf05a7e2e965817bb71c0b5335263b5c0b0cb85829a0f29a6029d
 WHIRLPOOL 
b00d7aed0437ee0f64f60ed59becf41d165c101725cab700345203b2108a2adc9ed95d17acc0dff5706df86c87c13d058991417f42db40dfc523279cc5eb8547
 DIST libdrm-2.4.66.tar.bz2 694574 SHA256 
79cb8e988749794edfb2d777b298d5292eff35371ed813589e61d2bc2d76 SHA512 
e0e3cea490389271690a79b5be8acd5e7c892a0646285617bd00d85f7c56ac163580c8c62d9fa79ed99e89468e35eaed6ac8be6ea870ce5ab09589f3e2d7f506
 WHIRLPOOL 
6f691c8f7444b70461896f2b91a5256c655124c12cb51b25163859db2f556692d182e43b79a851cbc8d565fde1cbe146133d177dbabe442289ab051170b6a695

diff --git a/x11-libs/libdrm/libdrm-2.4.64.ebuild 
b/x11-libs/libdrm/libdrm-2.4.64.ebuild
deleted file mode 100644
index 8ec9f11..000
--- a/x11-libs/libdrm/libdrm-2.4.64.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-XORG_MULTILIB=yes
-inherit xorg-2
-
-DESCRIPTION="X.Org libdrm library"
-HOMEPAGE="http://dri.freedesktop.org/;
-if [[ ${PV} = * ]]; then
-   EGIT_REPO_URI="git://anongit.freedesktop.org/git/mesa/drm"
-else
-   SRC_URI="http://dri.freedesktop.org/${PN}/${P}.tar.bz2;
-fi
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux"
-VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vmware"
-for card in ${VIDEO_CARDS}; do
-   IUSE_VIDEO_CARDS+=" video_cards_${card}"
-done
-
-IUSE="${IUSE_VIDEO_CARDS} libkms valgrind"
-RESTRICT="test" # see bug #236845
-
-RDEPEND=">=dev-libs/libpthread-stubs-0.3-r1:=[${MULTILIB_USEDEP}]
-   video_cards_intel? ( 
>=x11-libs/libpciaccess-0.13.1-r1:=[${MULTILIB_USEDEP}] )
-   abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )"
-DEPEND="${RDEPEND}
-   valgrind? ( dev-util/valgrind )"
-
-src_prepare() {
-   if [[ ${PV} = * ]]; then
-   # tests are restricted, no point in building them
-   sed -ie 's/tests //' "${S}"/Makefile.am
-   fi
-   xorg-2_src_prepare
-}
-
-src_configure() {
-   XORG_CONFIGURE_OPTIONS=(
-   # Udev is only used by tests now.
-   --disable-udev
-   --disable-cairo-tests
-   $(use_enable video_cards_amdgpu amdgpu)
-   $(use_enable video_cards_exynos exynos-experimental-api)
-   $(use_enable video_cards_freedreno freedreno)
-   $(use_enable video_cards_intel intel)
-   $(use_enable video_cards_nouveau nouveau)
-   $(use_enable video_cards_omap omap-experimental-api)
-   $(use_enable video_cards_radeon radeon)
-   $(use_enable video_cards_tegra tegra-experimental-api)
-   $(use_enable video_cards_vmware vmwgfx)
-   $(use_enable libkms)
-   # valgrind installs its .pc file to the pkgconfig for the 
primary arch
-   --enable-valgrind=$(usex valgrind auto no)
-   )
-
-   xorg-2_src_configure
-}



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

2015-12-29 Thread Michael Sterrett
commit: 1c0817bda9a7f4edb452cd3548d87ebb6cf0ad53
Author: Michael Sterrett  gentoo  org>
AuthorDate: Wed Dec 30 02:58:48 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Dec 30 02:58:48 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c0817bd

profiles: mask games-strategy/revenge-of-the-titans for removal

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

diff --git a/profiles/package.mask b/profiles/package.mask
index ca18463..484c6df 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -31,6 +31,11 @@
 #--- END OF EXAMPLES ---
 
 # Michael Sterrett  (29 Dec 2015)
+# Fetch fails since it looks like it's distributed via stream now (bug #553728)
+# Masked for removal on 20160128
+games-strategy/revenge-of-the-titans
+
+# Michael Sterrett  (29 Dec 2015)
 # Lacking in fun; no upstream; crashy (bug #550890)
 # Masked for removal on 20160128
 games-simulation/qct



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2015-12-29 Thread Jory Pratt
commit: 60c55b0adb6be639c86176fca521c08cf1729cd3
Author: Francisco Blas Izquierdo Riera (klondike)  gentoo 
 org>
AuthorDate: Wed Dec 30 02:52:53 2015 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Wed Dec 30 03:03:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60c55b0a

Fix the paxmarking of the xpcshell binary as it is no longer in the mozilla 
directory.

This makes the install phase work again on hardened systems.

Signed-off-by: Jory A. Pratt  gentoo.org>

 mail-client/thunderbird/thunderbird-38.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/thunderbird/thunderbird-38.5.0.ebuild 
b/mail-client/thunderbird/thunderbird-38.5.0.ebuild
index b1ef18a..544dae6 100644
--- a/mail-client/thunderbird/thunderbird-38.5.0.ebuild
+++ b/mail-client/thunderbird/thunderbird-38.5.0.ebuild
@@ -284,7 +284,7 @@ src_install() {
|| die
 
# Pax mark xpcshell for hardened support, only used for startupcache 
creation.
-   pax-mark m "${BUILD_OBJ_DIR}"/mozilla/dist/bin/xpcshell
+   pax-mark m "${BUILD_OBJ_DIR}"/dist/bin/xpcshell
 
MOZ_MAKE_FLAGS="${MAKEOPTS}" \
emake DESTDIR="${D}" install



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

2015-12-29 Thread Matt Thode
commit: 23c069b214527c010df46a997950890f3691bfe8
Author: Matthew Thode  mthode  org>
AuthorDate: Wed Dec 30 03:29:10 2015 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Dec 30 03:29:10 2015 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=23c069b2

remove kernel sources once built

 releases/weekly/scripts/cloud-prep.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/releases/weekly/scripts/cloud-prep.sh 
b/releases/weekly/scripts/cloud-prep.sh
index e4ace89..1905f11 100644
--- a/releases/weekly/scripts/cloud-prep.sh
+++ b/releases/weekly/scripts/cloud-prep.sh
@@ -75,5 +75,6 @@ rm -f /root/.nano_history
 rm -f /root/.lesshst
 rm -f /root/.ssh/known_hosts
 rm -rf /usr/src/linux
+rm -rf /usr/src/linux*
 for i in $(find /var/log -type f); do echo > $i; done
 for i in $(find /tmp -type f); do rm -f $i; done



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

2015-12-29 Thread Hans de Graaff
commit: cf67e146f11f2c50ec944aa026ff7b14c9e4cbf9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 30 06:54:22 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 30 06:54:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf67e146

dev-ruby/ruby-ole: add 1.2.12

Package-Manager: portage-2.2.24

 dev-ruby/ruby-ole/Manifest   |  1 +
 dev-ruby/ruby-ole/ruby-ole-1.2.12.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-ruby/ruby-ole/Manifest b/dev-ruby/ruby-ole/Manifest
index 3368429..b7395fc 100644
--- a/dev-ruby/ruby-ole/Manifest
+++ b/dev-ruby/ruby-ole/Manifest
@@ -1 +1,2 @@
 DIST ruby-ole-1.2.11.8.gem 56832 SHA256 
e999b1d6be00a55181fb29162c685ad3e950025a4b8ef0e99eda173087f8cd31 SHA512 
61a54256dd9805f0adcdd0559e36e78d3f0d030515f16e38d209ecd1f92ed6a25d639863eb8d56afa71ee5e0367f2b29dddc0b72537d7e2c098e83bcb7174ea8
 WHIRLPOOL 
b2b3701da5ea6d34bb2b86bfaa56d0bc8e7b94ea3eb4a9cc5548e7103f4bec8c4489ca600b15fec2f9363f64e647da5184579b54cbbb85a3b14ad3684456
+DIST ruby-ole-1.2.12.gem 56320 SHA256 
134b717dd16beacaad2ab1399f14b773fce37865391ab7c6f19891ff3f5d8181 SHA512 
297c94a52501b752a788f7fb40538bead6340d979f140fd7e36ab58849af857bae02fd8f334738270168943963d013d9b6226322926320d67a529c99d86f85c1
 WHIRLPOOL 
3f3fdac39bb4bbc94540c4798b5a98ca01360c4c9c0739d6415c4aaea718762f2e2190de24312de2c1844928a91da3de8156e0c0ebd408d91cbf7ab621a24133

diff --git a/dev-ruby/ruby-ole/ruby-ole-1.2.12.ebuild 
b/dev-ruby/ruby-ole/ruby-ole-1.2.12.ebuild
new file mode 100644
index 000..f95babd
--- /dev/null
+++ b/dev-ruby/ruby-ole/ruby-ole-1.2.12.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+# Avoid the complexity of the "rake" recipe and run testrb-2 manually.
+RUBY_FAKEGEM_RECIPE_TEST=none
+
+# Same thing for the docs whose rake target just calls rdoc.
+RUBY_FAKEGEM_RECIPE_DOC=rdoc
+RUBY_FAKEGEM_EXTRADOC="ChangeLog README.rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby library for easy read/write access to OLE compound documents"
+HOMEPAGE="https://github.com/aquasync/ruby-ole;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
+
+each_ruby_test() {
+   ruby-ng_testrb-2 --pattern='test.*\.rb' test/
+}



[gentoo-commits] proj/releng:master commit in: releases/weekly/kconfig/amd64/

2015-12-29 Thread Matt Thode
commit: 3577f5508d24c3b41d811463e012f419d51f3fad
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Dec 29 20:42:28 2015 +
Commit: Matt Thode  gentoo  org>
CommitDate: Tue Dec 29 20:42:28 2015 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=3577f550

Update cloud kernel config for 4.1.12.

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

 .../weekly/kconfig/amd64/cloud-amd64-gentoo.config | 125 +
 1 file changed, 81 insertions(+), 44 deletions(-)

diff --git a/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config 
b/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config
index 6251528..93d49c5 100644
--- a/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config
+++ b/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 3.19.6-gentoo Kernel Configuration
+# Linux/x86 4.1.12-gentoo-openstack Kernel Configuration
 #
 
 #
@@ -8,7 +8,6 @@
 #
 CONFIG_GENTOO_LINUX=y
 CONFIG_GENTOO_LINUX_UDEV=y
-CONFIG_GENTOO_LINUX_PORTAGE=y
 
 #
 # Support for init systems, system and service managers
@@ -54,6 +53,7 @@ CONFIG_X86_HT=y
 CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx 
-fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 
-fcall-saved-r11"
 CONFIG_ARCH_SUPPORTS_UPROBES=y
 CONFIG_FIX_EARLYCON_MEM=y
+CONFIG_PGTABLE_LEVELS=4
 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
 CONFIG_IRQ_WORK=y
 CONFIG_BUILDTIME_EXTABLE_SORT=y
@@ -109,7 +109,6 @@ CONFIG_ARCH_CLOCKSOURCE_DATA=y
 CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
 CONFIG_GENERIC_TIME_VSYSCALL=y
 CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
 CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
 CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
 CONFIG_GENERIC_CMOS_UPDATE=y
@@ -142,6 +141,7 @@ CONFIG_TASK_DELAY_ACCT=y
 # RCU Subsystem
 #
 CONFIG_TREE_RCU=y
+CONFIG_SRCU=y
 CONFIG_TASKS_RCU=y
 CONFIG_RCU_STALL_COMMON=y
 CONFIG_CONTEXT_TRACKING=y
@@ -152,7 +152,9 @@ CONFIG_RCU_FANOUT_LEAF=16
 # CONFIG_RCU_FANOUT_EXACT is not set
 # CONFIG_RCU_FAST_NO_HZ is not set
 # CONFIG_TREE_RCU_TRACE is not set
+CONFIG_RCU_KTHREAD_PRIO=0
 # CONFIG_RCU_NOCB_CPU is not set
+# CONFIG_RCU_EXPEDITE_BOOT is not set
 CONFIG_BUILD_BIN2C=y
 CONFIG_IKCONFIG=y
 CONFIG_IKCONFIG_PROC=y
@@ -199,7 +201,6 @@ CONFIG_RD_LZMA=y
 CONFIG_RD_XZ=y
 CONFIG_RD_LZO=y
 CONFIG_RD_LZ4=y
-CONFIG_INIT_FALLBACK=y
 CONFIG_CC_OPTIMIZE_FOR_SIZE=y
 CONFIG_SYSCTL=y
 CONFIG_ANON_INODES=y
@@ -209,6 +210,7 @@ CONFIG_HAVE_PCSPKR_PLATFORM=y
 CONFIG_BPF=y
 CONFIG_EXPERT=y
 CONFIG_UID16=y
+CONFIG_MULTIUSER=y
 CONFIG_SGETMASK_SYSCALL=y
 CONFIG_SYSFS_SYSCALL=y
 # CONFIG_SYSCTL_SYSCALL is not set
@@ -287,9 +289,11 @@ CONFIG_HAVE_CONTEXT_TRACKING=y
 CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
 CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
 CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
+CONFIG_HAVE_ARCH_HUGE_VMAP=y
 CONFIG_HAVE_ARCH_SOFT_DIRTY=y
 CONFIG_MODULES_USE_ELF_RELA=y
 CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
+CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
 CONFIG_OLD_SIGSUSPEND3=y
 CONFIG_COMPAT_OLD_SIGACTION=y
 
@@ -372,6 +376,7 @@ CONFIG_INLINE_WRITE_UNLOCK=y
 CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
 CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
 CONFIG_RWSEM_SPIN_ON_OWNER=y
+CONFIG_LOCK_SPIN_ON_OWNER=y
 CONFIG_ARCH_USE_QUEUE_RWLOCK=y
 CONFIG_QUEUE_RWLOCK=y
 CONFIG_FREEZER=y
@@ -388,12 +393,12 @@ CONFIG_X86_EXTENDED_PLATFORM=y
 # CONFIG_X86_VSMP is not set
 # CONFIG_X86_GOLDFISH is not set
 # CONFIG_X86_INTEL_LPSS is not set
+# CONFIG_X86_AMD_PLATFORM_DEVICE is not set
 # CONFIG_IOSF_MBI is not set
 CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
 CONFIG_SCHED_OMIT_FRAME_POINTER=y
 # CONFIG_HYPERVISOR_GUEST is not set
 CONFIG_NO_BOOTMEM=y
-# CONFIG_MEMTEST is not set
 # CONFIG_MK8 is not set
 # CONFIG_MPSC is not set
 # CONFIG_MCORE2 is not set
@@ -425,7 +430,6 @@ CONFIG_SCHED_MC=y
 CONFIG_PREEMPT_NONE=y
 # CONFIG_PREEMPT_VOLUNTARY is not set
 # CONFIG_PREEMPT is not set
-CONFIG_X86_UP_APIC_MSI=y
 CONFIG_X86_LOCAL_APIC=y
 CONFIG_X86_IO_APIC=y
 # CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set
@@ -444,13 +448,12 @@ CONFIG_MICROCODE_INTEL=y
 # CONFIG_MICROCODE_AMD is not set
 CONFIG_MICROCODE_OLD_INTERFACE=y
 CONFIG_MICROCODE_INTEL_EARLY=y
-# CONFIG_MICROCODE_AMD_EARLY is not set
 CONFIG_MICROCODE_EARLY=y
 CONFIG_X86_MSR=m
 CONFIG_X86_CPUID=m
 CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
 CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_DIRECT_GBPAGES=y
+CONFIG_X86_DIRECT_GBPAGES=y
 CONFIG_NUMA=y
 CONFIG_AMD_NUMA=y
 CONFIG_X86_64_ACPI_NUMA=y
@@ -505,6 +508,7 @@ CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
 # CONFIG_ZBUD is not set
 # CONFIG_ZSMALLOC is not set
 CONFIG_GENERIC_EARLY_IOREMAP=y
+# CONFIG_X86_PMEM_LEGACY is not set
 # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set
 CONFIG_X86_RESERVE_LOW=64
 CONFIG_MTRR=y
@@ -535,6 +539,7 @@ CONFIG_HOTPLUG_CPU=y
 # CONFIG_DEBUG_HOTPLUG_CPU0 is not set
 # CONFIG_COMPAT_VDSO is not set
 # CONFIG_CMDLINE_BOOL is not set
+CONFIG_HAVE_LIVEPATCH=y
 CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
 

[gentoo-commits] proj/releng:master commit in: releases/weekly/kconfig/amd64/

2015-12-29 Thread Matt Thode
commit: 4943ec9531ae0634d2e045739745cff2ce5443fc
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Dec 29 21:10:51 2015 +
Commit: Matt Thode  gentoo  org>
CommitDate: Tue Dec 29 21:44:28 2015 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=4943ec95

Update cloud kernel config features/options.

- Include all features for systemd instances
- Compress modules with XZ
- Support throttled block devices
- Support HYPERVISOR_GUEST options (paravirt, xen, kvm)
- Max CPUs is now 64
- Memory hotplug/balloon support
- Compressed memory support
- EFI support
- Kexec support for fast reboot
- Networking:
-- IPsec (XFRM, GRE, etc)
-- Tunneling of more forms (FOU, GENEVE, VTI, ...)
-- IP virtual server (for load balancers VMs)
-- More network schedulers (incl IFB)
-- PPP for tunnels
- Network block devices: DRBD, NBD
- Disk controllers: MegaRAID (qemu), HyperV, VMWare, Xen
- Block misc: bcache, multiqueue, DM-*
- Filesystems: reiserfs, OCFS2, 9P
- Misc: HPET, RAW, more TPM

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

 .../weekly/kconfig/amd64/cloud-amd64-gentoo.config | 462 ++---
 1 file changed, 317 insertions(+), 145 deletions(-)

diff --git a/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config 
b/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config
index 93d49c5..0b3a20d 100644
--- a/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config
+++ b/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config
@@ -13,7 +13,7 @@ CONFIG_GENTOO_LINUX_UDEV=y
 # Support for init systems, system and service managers
 #
 CONFIG_GENTOO_LINUX_INIT_SCRIPT=y
-# CONFIG_GENTOO_LINUX_INIT_SYSTEMD is not set
+CONFIG_GENTOO_LINUX_INIT_SYSTEMD=y
 CONFIG_64BIT=y
 CONFIG_X86_64=y
 CONFIG_X86=y
@@ -85,7 +85,7 @@ CONFIG_SYSVIPC_SYSCTL=y
 CONFIG_POSIX_MQUEUE=y
 CONFIG_POSIX_MQUEUE_SYSCTL=y
 CONFIG_CROSS_MEMORY_ATTACH=y
-# CONFIG_FHANDLE is not set
+CONFIG_FHANDLE=y
 CONFIG_USELIB=y
 CONFIG_AUDIT=y
 CONFIG_HAVE_ARCH_AUDITSYSCALL=y
@@ -176,6 +176,7 @@ CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
 CONFIG_MEMCG_SWAP_ENABLED=y
 CONFIG_MEMCG_KMEM=y
+# CONFIG_CGROUP_HUGETLB is not set
 CONFIG_CGROUP_PERF=y
 CONFIG_CGROUP_SCHED=y
 CONFIG_FAIR_GROUP_SCHED=y
@@ -190,9 +191,9 @@ CONFIG_IPC_NS=y
 CONFIG_USER_NS=y
 CONFIG_PID_NS=y
 CONFIG_NET_NS=y
-# CONFIG_SCHED_AUTOGROUP is not set
+CONFIG_SCHED_AUTOGROUP=y
 # CONFIG_SYSFS_DEPRECATED is not set
-# CONFIG_RELAY is not set
+CONFIG_RELAY=y
 CONFIG_BLK_DEV_INITRD=y
 CONFIG_INITRAMFS_SOURCE=""
 CONFIG_RD_GZIP=y
@@ -226,7 +227,7 @@ CONFIG_EPOLL=y
 CONFIG_SIGNALFD=y
 CONFIG_TIMERFD=y
 CONFIG_EVENTFD=y
-# CONFIG_BPF_SYSCALL is not set
+CONFIG_BPF_SYSCALL=y
 CONFIG_SHMEM=y
 CONFIG_AIO=y
 CONFIG_ADVISE_SYSCALLS=y
@@ -240,7 +241,7 @@ CONFIG_HAVE_PERF_EVENTS=y
 CONFIG_PERF_EVENTS=y
 # CONFIG_DEBUG_PERF_USE_VMALLOC is not set
 CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_COMPAT_BRK=y
+# CONFIG_COMPAT_BRK is not set
 CONFIG_SLAB=y
 # CONFIG_SLUB is not set
 # CONFIG_SLOB is not set
@@ -320,13 +321,15 @@ CONFIG_MODULE_SIG_ALL=y
 # CONFIG_MODULE_SIG_SHA384 is not set
 CONFIG_MODULE_SIG_SHA512=y
 CONFIG_MODULE_SIG_HASH="sha512"
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+# CONFIG_MODULE_COMPRESS_GZIP is not set
+CONFIG_MODULE_COMPRESS_XZ=y
 CONFIG_STOP_MACHINE=y
 CONFIG_BLOCK=y
 CONFIG_BLK_DEV_BSG=y
 CONFIG_BLK_DEV_BSGLIB=y
 CONFIG_BLK_DEV_INTEGRITY=y
-# CONFIG_BLK_DEV_THROTTLING is not set
+CONFIG_BLK_DEV_THROTTLING=y
 # CONFIG_BLK_CMDLINE_PARSER is not set
 
 #
@@ -349,9 +352,9 @@ CONFIG_LDM_PARTITION=y
 # CONFIG_SGI_PARTITION is not set
 # CONFIG_ULTRIX_PARTITION is not set
 # CONFIG_SUN_PARTITION is not set
-CONFIG_KARMA_PARTITION=y
+# CONFIG_KARMA_PARTITION is not set
 CONFIG_EFI_PARTITION=y
-CONFIG_SYSV68_PARTITION=y
+# CONFIG_SYSV68_PARTITION is not set
 # CONFIG_CMDLINE_PARTITION is not set
 CONFIG_BLOCK_COMPAT=y
 
@@ -361,7 +364,7 @@ CONFIG_BLOCK_COMPAT=y
 CONFIG_IOSCHED_NOOP=y
 CONFIG_IOSCHED_DEADLINE=y
 CONFIG_IOSCHED_CFQ=y
-# CONFIG_CFQ_GROUP_IOSCHED is not set
+CONFIG_CFQ_GROUP_IOSCHED=y
 # CONFIG_DEFAULT_DEADLINE is not set
 CONFIG_DEFAULT_CFQ=y
 # CONFIG_DEFAULT_NOOP is not set
@@ -369,6 +372,7 @@ CONFIG_DEFAULT_IOSCHED="cfq"
 CONFIG_PREEMPT_NOTIFIERS=y
 CONFIG_PADATA=y
 CONFIG_ASN1=y
+CONFIG_UNINLINE_SPIN_UNLOCK=y
 CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
 CONFIG_INLINE_READ_UNLOCK=y
 CONFIG_INLINE_READ_UNLOCK_IRQ=y
@@ -397,7 +401,19 @@ CONFIG_X86_EXTENDED_PLATFORM=y
 # CONFIG_IOSF_MBI is not set
 CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
 CONFIG_SCHED_OMIT_FRAME_POINTER=y
-# CONFIG_HYPERVISOR_GUEST is not set
+CONFIG_HYPERVISOR_GUEST=y
+CONFIG_PARAVIRT=y
+# CONFIG_PARAVIRT_DEBUG is not set
+CONFIG_PARAVIRT_SPINLOCKS=y
+CONFIG_XEN=y
+CONFIG_XEN_DOM0=y
+CONFIG_XEN_PVHVM=y
+CONFIG_XEN_MAX_DOMAIN_MEMORY=500
+CONFIG_XEN_SAVE_RESTORE=y
+CONFIG_XEN_PVH=y
+CONFIG_KVM_GUEST=y
+CONFIG_PARAVIRT_TIME_ACCOUNTING=y
+CONFIG_PARAVIRT_CLOCK=y
 CONFIG_NO_BOOTMEM=y
 # CONFIG_MK8 is not set
 # CONFIG_MPSC is not set
@@ -419,12 +435,11 @@ CONFIG_HPET_TIMER=y
 

[gentoo-commits] proj/genkernel:master commit in: defaults/

2015-12-29 Thread Richard Farina
commit: c7a2fbef56b808b97135307621dc43b4fe970a44
Author: Rick Farina (Zero_Chaos)  gentoo  org>
AuthorDate: Wed Dec 30 04:36:30 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Wed Dec 30 04:36:30 2015 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=c7a2fbef

Revert "run startVolumes after opening luks"

This reverts commit 33c3c90cce2a242a7d6e45effa48ebbd91f63cff.

As correctly pointed out by Whissi on bug #390079 users should be using
CRYPT_ROOT and REAL_ROOT which work properly, this commit causes a double
lvm scan which isn't needed.

 defaults/linuxrc | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/defaults/linuxrc b/defaults/linuxrc
index 877d845..35f39bc 100644
--- a/defaults/linuxrc
+++ b/defaults/linuxrc
@@ -434,9 +434,6 @@ then
fi
 fi
 
-#scan for volumes again in case of lvm inside luks
-startVolumes
-
 mkdir -p "${NEW_ROOT}"
 CHROOT="${NEW_ROOT}"
 



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

2015-12-29 Thread Hans de Graaff
commit: 7dbeb2f69894ddb8f6d00d3bd1cbea3e599be381
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 30 06:51:53 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 30 06:51:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dbeb2f6

dev-ruby/ruby-gettext: add 3.1.9

Package-Manager: portage-2.2.24

 dev-ruby/ruby-gettext/Manifest  |  1 +
 dev-ruby/ruby-gettext/ruby-gettext-3.1.9.ebuild | 66 +
 2 files changed, 67 insertions(+)

diff --git a/dev-ruby/ruby-gettext/Manifest b/dev-ruby/ruby-gettext/Manifest
index be5d89c..ae29ff8 100644
--- a/dev-ruby/ruby-gettext/Manifest
+++ b/dev-ruby/ruby-gettext/Manifest
@@ -2,3 +2,4 @@ DIST gettext-3.1.1.gem 221184 SHA256 
323a1b07db0863e032436f6935a0e63a5ab7475ac8c
 DIST gettext-3.1.2.gem 224768 SHA256 
1ed987d0a46448cfc76617b486ad9a991e0d48501855e49eacb781aa531df6eb SHA512 
14fbccf1d853bd58ae3ecbda3188294147404fb8473a54caeac505b93ffa25f96098786bd1171449aa1f0f74c4116e93b5d2f7c0705930dd014b210720667479
 WHIRLPOOL 
5a31bf87b38370276bf4c61886025f8721a7cb297012fbe6d1947abf82d1d35d779838506f5e56adbdda090a0ae20d4e5c74b9c4a08a4c782998d78b3a7c1768
 DIST gettext-3.1.6.gem 282112 SHA256 
b3b0d6cd779e3f99b3bd541300fd5ae8f5425f90d0314209b6eb70a7772c8a81 SHA512 
8bf0f8203eef8b181400dfca8c67376b6dd64c7fc00177c20ced840791883c3988f12eefe55bb6b487473d8875f86ea8143feb15e814c83e29dcd0133dc2f73c
 WHIRLPOOL 
5976fba52e84da77aa92aa61e498537ae8ee6294cdd64a0b18257b9df52e803e7ad3233a3964bdac9048cc4e78fc7a372b31cdbc117b2e164a84385419cc0f57
 DIST gettext-3.1.7.gem 283136 SHA256 
383ab62cfef66247e6907fb735aac53048a79e0bea93a6c9aa448c3aa98ee9c1 SHA512 
e7cd1674b0e40ac8593d398a874355216544cba9e5aa082dab4aecd8ab8ee5a30ba3003bda4f097db2ac10bd3861ff8fa6a0c389f68b4467f22d90b88120cad5
 WHIRLPOOL 
8945141b1d9534b2bcc177f3711bfd4b9e24560e4f704f6c3d7640aef207547e000287a25f6f6e895abf75702af1d26b9af424a0183763a2a62b3a3726c56c2f
+DIST gettext-3.1.9.gem 283136 SHA256 
68901981aa98cfebb1b1d65c800aafba73ad82b82047c060b51ab52470a25f61 SHA512 
b06da799bde3d2d704283387d5bd79bb6a88cfd74200d7a566408b5c6078e23fb10aad72135feeece05b77b76f90a282ead7482ff0436d3615a13729aa7945a5
 WHIRLPOOL 
42602b14eaf7c9a37f933695314b9f317d869a6168b072ae278204c7d79c0f2c0277acfc9d47902ab8bb7c1118979fe3967eb029413eb2f3519501e03776fb97

diff --git a/dev-ruby/ruby-gettext/ruby-gettext-3.1.9.ebuild 
b/dev-ruby/ruby-gettext/ruby-gettext-3.1.9.ebuild
new file mode 100644
index 000..fb25ab3
--- /dev/null
+++ b/dev-ruby/ruby-gettext/ruby-gettext-3.1.9.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_NAME="${PN/ruby-/}"
+RUBY_FAKEGEM_VERSION="${PV%_*}"
+
+RUBY_FAKEGEM_RECIPE_DOC="yard"
+RUBY_FAKEGEM_EXTRADOC="README.md doc/text/news.md"
+
+RUBY_FAKEGEM_TASK_TEST="none"
+
+RUBY_FAKEGEM_EXTRAINSTALL="locale po"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby GetText Package is Native Language Support Library and Tools 
modeled after GNU gettext package"
+HOMEPAGE="http://ruby-gettext.github.io/;
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc test"
+SLOT="0"
+LICENSE="|| ( Ruby LGPL-3+ )"
+
+ruby_add_rdepend ">=dev-ruby/locale-2.0.5 >=dev-ruby/text-1.3.0"
+
+ruby_add_bdepend "doc? ( dev-ruby/yard )
+   dev-ruby/racc"
+ruby_add_bdepend "test? (
+   dev-ruby/test-unit:2
+   dev-ruby/test-unit-rr )"
+
+RDEPEND+=" sys-devel/gettext"
+DEPEND+=" sys-devel/gettext"
+
+all_ruby_prepare() {
+   # Fix broken racc invocation
+   sed -i -e '/command_line/ s/#{racc}/-S racc/' Rakefile || die
+
+   # Avoid bundler dependency
+   sed -i -e '/bundler/,/helper.install/ s:^:#:' \
+   -e 's/helper.gemspec/Gem::Specification.new/' Rakefile || die
+
+   # Avoid dependency on developer-specific tools.
+   sed -i -e '/notify/ s:^:#:' test/run-test.rb || die
+
+   # Avoid tests failing due to a missing test file.
+   sed -i -e '/test_invalid_charset/,/end/ s:^:#:' test/test_mo.rb || die
+}
+
+each_ruby_test() {
+   # Upstream tries to daisy-chain rake calls but they fail badly
+   # with our setup, so run it manually.
+   ${RUBY} test/run-test.rb || die "tests failed"
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   insinto /usr/share/doc/${PF}
+   doins -r samples
+}



[gentoo-commits] proj/mozilla:master commit in: mail-client/thunderbird/

2015-12-29 Thread Jory Pratt
commit: b8bf7a5b9b6f749da6ea5531e035bf46e482f01c
Author: Francisco Blas Izquierdo Riera (klondike)  gentoo 
 org>
AuthorDate: Wed Dec 30 02:52:53 2015 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Wed Dec 30 02:59:35 2015 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=b8bf7a5b

Fix the paxmarking of the xpcshell binary as it is no longer in the mozilla 
directory.

This makes the install phase work again on hardened systems.

Signed-off-by: Jory A. Pratt  gentoo.org>

 mail-client/thunderbird/thunderbird-38.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/thunderbird/thunderbird-38.5.0.ebuild 
b/mail-client/thunderbird/thunderbird-38.5.0.ebuild
index a3fbfee..cae727e 100644
--- a/mail-client/thunderbird/thunderbird-38.5.0.ebuild
+++ b/mail-client/thunderbird/thunderbird-38.5.0.ebuild
@@ -284,7 +284,7 @@ src_install() {
|| die
 
# Pax mark xpcshell for hardened support, only used for startupcache 
creation.
-   pax-mark m "${BUILD_OBJ_DIR}"/mozilla/dist/bin/xpcshell
+   pax-mark m "${BUILD_OBJ_DIR}"/dist/bin/xpcshell
 
MOZ_MAKE_FLAGS="${MAKEOPTS}" \
emake DESTDIR="${D}" install



[gentoo-commits] repo/gentoo:master commit in: dev-games/ode/

2015-12-29 Thread Michael Sterrett
commit: 6dbff770e17c03003e107acfcbcd99b68b442826
Author: Michael Sterrett  gentoo  org>
AuthorDate: Wed Dec 30 07:51:26 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Dec 30 07:51:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dbff770

dev-games/ode: correct example install (bug #568920)

Package-Manager: portage-2.2.24

 dev-games/ode/ode-0.13.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-games/ode/ode-0.13.ebuild b/dev-games/ode/ode-0.13.ebuild
index b123af8..2f22678 100644
--- a/dev-games/ode/ode-0.13.ebuild
+++ b/dev-games/ode/ode-0.13.ebuild
@@ -59,14 +59,14 @@ src_install() {
fi
if use examples; then
docompress -x "${MY_EXAMPLES_DIR}"
-   doexe drawstuff/dstest/dstest
insinto "${MY_EXAMPLES_DIR}"
+   exeinto "${MY_EXAMPLES_DIR}"
+   doexe drawstuff/dstest/dstest
doins ode/demo/*.{c,cpp,h} \
drawstuff/textures/*.ppm \
drawstuff/dstest/dstest.cpp \
drawstuff/src/{drawstuff.cpp,internal.h,x11.cpp}
cd ode/demo
-   exeinto "${MY_EXAMPLES_DIR}"
local f
for f in *.c* ; do
doexe .libs/${f%.*}



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

2015-12-29 Thread Hans de Graaff
commit: d4e0bee3998b72d55b9528a67a536a87bd7b388e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 29 08:58:42 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 29 09:00:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e0bee3

dev-ruby/celluloid-fsm: add celluloid 0.17.2

Package-Manager: portage-2.2.24

 dev-ruby/celluloid-fsm/Manifest|  1 +
 dev-ruby/celluloid-fsm/celluloid-fsm-0.20.5.ebuild | 38 ++
 dev-ruby/celluloid-fsm/metadata.xml|  8 +
 3 files changed, 47 insertions(+)

diff --git a/dev-ruby/celluloid-fsm/Manifest b/dev-ruby/celluloid-fsm/Manifest
new file mode 100644
index 000..b6ee047
--- /dev/null
+++ b/dev-ruby/celluloid-fsm/Manifest
@@ -0,0 +1 @@
+DIST celluloid-fsm-0.20.5.tar.gz 8500 SHA256 
e62f33da443abf6991c6578201cd392cc5f99b77ccee1c29de5834365a39d12e SHA512 
b5d622a1192332dc84f9cd074e143da731304d2640f37a4123e6905f91cdb0ad238663254a4de05ecd2071519b12eb3ac44e608aac8d968b9a9d32726d88ba07
 WHIRLPOOL 
b45f2bba9d7fc5727383321ef5a2a93203ede7d0d233b4f93411e0f8e10c6a946cce27307c78b60da481df7bb83cf747655b297cc5cb9e2d51053bf8a0d027c0

diff --git a/dev-ruby/celluloid-fsm/celluloid-fsm-0.20.5.ebuild 
b/dev-ruby/celluloid-fsm/celluloid-fsm-0.20.5.ebuild
new file mode 100644
index 000..39eb453
--- /dev/null
+++ b/dev-ruby/celluloid-fsm/celluloid-fsm-0.20.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a simple and natural way to build fault-tolerant 
concurrent programs"
+HOMEPAGE="https://github.com/celluloid/celluloid;
+SRC_URI="https://github.com/celluloid/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+IUSE=""
+SLOT="0"
+
+LICENSE="MIT"
+KEYWORDS="~amd64"
+
+ruby_add_rdepend "
+   >=dev-ruby/timers-4.1.1"
+
+ruby_add_bdepend "test? (
+   >=dev-ruby/celluloid-0.17.2
+   dev-ruby/dotenv
+   dev-ruby/nenv
+   dev-ruby/rspec-retry
+)"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' -e '/coveralls/I s:^:#:' spec/spec_helper.rb 
|| die
+
+   sed -i -e '1irequire "pathname"' spec/spec_helper.rb || die
+   sed -i -e "s:log/test.log:${TMPDIR}/test.log:" .env-dev || die
+}

diff --git a/dev-ruby/celluloid-fsm/metadata.xml 
b/dev-ruby/celluloid-fsm/metadata.xml
new file mode 100644
index 000..50d7110
--- /dev/null
+++ b/dev-ruby/celluloid-fsm/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  ruby
+  
+celluloid/celluloid-fsm
+  
+



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

2015-12-29 Thread Hans de Graaff
commit: e41e3c7312060fe3a8ead89469bc6d7ad061ddbe
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 29 08:58:39 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 29 09:00:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e41e3c73

dev-ruby/celluloid-extras: add celluloid 0.17.2

Package-Manager: portage-2.2.24

 dev-ruby/celluloid-extras/Manifest |  1 +
 .../celluloid-extras-0.20.5.ebuild | 35 ++
 dev-ruby/celluloid-extras/metadata.xml |  8 +
 3 files changed, 44 insertions(+)

diff --git a/dev-ruby/celluloid-extras/Manifest 
b/dev-ruby/celluloid-extras/Manifest
new file mode 100644
index 000..b239909
--- /dev/null
+++ b/dev-ruby/celluloid-extras/Manifest
@@ -0,0 +1 @@
+DIST celluloid-extras-0.20.5.tar.gz 3632 SHA256 
ce4c2e5b5e49272b96213bf33804412db984d4bab5b6853440b849100d5d6e52 SHA512 
99f78a8f5761d205acc5ec1a2e9eca59b7c4c979e959f691c60e7700dd06ad72afa88d785451bbf0ec554f6fdb2e7f2fae5870020ad0a6676522832f6767
 WHIRLPOOL 
0eea8cb5c821d6e29c88d0c8bc64c35a2c3699e53cf2d680c30a97c2e2ccf4fcc870cbfea166b2afb9e027acb13181780f5b33fdcb9d327358917d3fffb84f73

diff --git a/dev-ruby/celluloid-extras/celluloid-extras-0.20.5.ebuild 
b/dev-ruby/celluloid-extras/celluloid-extras-0.20.5.ebuild
new file mode 100644
index 000..5790584
--- /dev/null
+++ b/dev-ruby/celluloid-extras/celluloid-extras-0.20.5.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a simple and natural way to build fault-tolerant 
concurrent programs"
+HOMEPAGE="https://github.com/celluloid/celluloid;
+SRC_URI="https://github.com/celluloid/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+IUSE=""
+SLOT="0"
+
+LICENSE="MIT"
+KEYWORDS="~amd64"
+
+ruby_add_rdepend "
+   >=dev-ruby/timers-4.1.1"
+
+ruby_add_bdepend "test? (
+   dev-ruby/celluloid
+   dev-ruby/dotenv
+   dev-ruby/nenv
+   dev-ruby/rspec-retry
+)"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' -e '/coveralls/I s:^:#:' spec/spec_helper.rb 
|| die
+}

diff --git a/dev-ruby/celluloid-extras/metadata.xml 
b/dev-ruby/celluloid-extras/metadata.xml
new file mode 100644
index 000..2020011
--- /dev/null
+++ b/dev-ruby/celluloid-extras/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  ruby
+  
+celluloid/celluloid-extras
+  
+



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

2015-12-29 Thread Hans de Graaff
commit: 6944659b117ba269e82185a079d106a9959f3c4f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 29 08:48:59 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 29 09:00:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6944659b

dev-ruby/timers: add ~arm also to latest versions

Package-Manager: portage-2.2.24

 dev-ruby/timers/timers-4.1.0.ebuild | 2 +-
 dev-ruby/timers/timers-4.1.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/timers/timers-4.1.0.ebuild 
b/dev-ruby/timers/timers-4.1.0.ebuild
index 33b904b..477fb12 100644
--- a/dev-ruby/timers/timers-4.1.0.ebuild
+++ b/dev-ruby/timers/timers-4.1.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/tarcieri/timers;
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/hitimes"

diff --git a/dev-ruby/timers/timers-4.1.1.ebuild 
b/dev-ruby/timers/timers-4.1.1.ebuild
index 33b904b..477fb12 100644
--- a/dev-ruby/timers/timers-4.1.1.ebuild
+++ b/dev-ruby/timers/timers-4.1.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/tarcieri/timers;
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/hitimes"



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

2015-12-29 Thread Hans de Graaff
commit: 40052f16f41e99fca8f10f6e2fc0d47ddbdd47a4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 29 08:58:50 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 29 09:00:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40052f16

dev-ruby/celluloid-pool: add celluloid 0.17.2

Package-Manager: portage-2.2.24

 dev-ruby/celluloid-pool/Manifest   |  1 +
 .../celluloid-pool/celluloid-pool-0.20.5.ebuild| 38 ++
 dev-ruby/celluloid-pool/metadata.xml   |  8 +
 3 files changed, 47 insertions(+)

diff --git a/dev-ruby/celluloid-pool/Manifest b/dev-ruby/celluloid-pool/Manifest
new file mode 100644
index 000..7766954
--- /dev/null
+++ b/dev-ruby/celluloid-pool/Manifest
@@ -0,0 +1 @@
+DIST celluloid-pool-0.20.5.tar.gz 8796 SHA256 
9ced0aab473b73044e0d8eccb7524e5865d92a2add9db917585792a721c80f76 SHA512 
6bded1ee7bfeaebddd49af9c5d72d078da9ebd6817cebd6124f95c0303e20ea31417930e71680e9d75bd0ce21689e7b409cd13132d8f802d51b9eced67a79ae5
 WHIRLPOOL 
b5309229f8667ee747ad5c07438b22460ebd87b525a154ad05239f87cd500c7f8d6c0f1dd5922fd396e946c78082c348b337256ac3e2de5f4bf2d0cc318191cc

diff --git a/dev-ruby/celluloid-pool/celluloid-pool-0.20.5.ebuild 
b/dev-ruby/celluloid-pool/celluloid-pool-0.20.5.ebuild
new file mode 100644
index 000..39eb453
--- /dev/null
+++ b/dev-ruby/celluloid-pool/celluloid-pool-0.20.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a simple and natural way to build fault-tolerant 
concurrent programs"
+HOMEPAGE="https://github.com/celluloid/celluloid;
+SRC_URI="https://github.com/celluloid/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+IUSE=""
+SLOT="0"
+
+LICENSE="MIT"
+KEYWORDS="~amd64"
+
+ruby_add_rdepend "
+   >=dev-ruby/timers-4.1.1"
+
+ruby_add_bdepend "test? (
+   >=dev-ruby/celluloid-0.17.2
+   dev-ruby/dotenv
+   dev-ruby/nenv
+   dev-ruby/rspec-retry
+)"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' -e '/coveralls/I s:^:#:' spec/spec_helper.rb 
|| die
+
+   sed -i -e '1irequire "pathname"' spec/spec_helper.rb || die
+   sed -i -e "s:log/test.log:${TMPDIR}/test.log:" .env-dev || die
+}

diff --git a/dev-ruby/celluloid-pool/metadata.xml 
b/dev-ruby/celluloid-pool/metadata.xml
new file mode 100644
index 000..8f11e10
--- /dev/null
+++ b/dev-ruby/celluloid-pool/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  ruby
+  
+celluloid/celluloid-pool
+  
+



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

2015-12-29 Thread Hans de Graaff
commit: b242d24e7c1701acaa1ed389eb913cb7d234333d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 29 08:56:48 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 29 09:00:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b242d24e

dev-ruby/celluloid: add celluloid 0.17.2

Package-Manager: portage-2.2.24

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

diff --git a/dev-ruby/celluloid/Manifest b/dev-ruby/celluloid/Manifest
index c966cb2..552175d 100644
--- a/dev-ruby/celluloid/Manifest
+++ b/dev-ruby/celluloid/Manifest
@@ -1 +1,2 @@
 DIST celluloid-0.16.0-git.tgz 63859 SHA256 
3f5d5be010c97b9a0a3a21008a0ad9880729e23cfda100b5df174279d427f338 SHA512 
b1acc0daf35b16c086d720fccec93519de609e6c9e8f411ed70c48f3cfcb0c88f5ee665ac41e4a535e00eef112cae26ca2e8ab6b6de4738e13ed50579098d8ed
 WHIRLPOOL 
a9d583ff8495c978e3d042df781ae5ced30a97eea8b401bd8c763aa75c7f72cf0de49e1a131345ff1e991f4303745c58b491cd413e7cb6b287d8a5df85de254d
+DIST celluloid-0.17.2.gem 61440 SHA256 
3de97f755dcd890a8b5a923d237c6730c20200159fb0940508c50d8714d128ad SHA512 
9203cadbcae2b1d5f7e197e9aa682d0077e007ab9d2140ed4d65657c3d63e27382f0c53dff3de6dc4fb6afec592b3a093b9aaa53c27a69cafc093c713ffde771
 WHIRLPOOL 
adf6ff49a4d10e7123c530878608c87aa0c0de58c892bd616ac1402e1c95d3f7549a2d8b5b35a5c3a657fc2162ae1decc8f4faf48dfa6110f793d53d5c418994

diff --git a/dev-ruby/celluloid/celluloid-0.17.2.ebuild 
b/dev-ruby/celluloid/celluloid-0.17.2.ebuild
new file mode 100644
index 000..e892470
--- /dev/null
+++ b/dev-ruby/celluloid/celluloid-0.17.2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+# Needed by packages writing specs for celluloid
+RUBY_FAKEGEM_EXTRAINSTALL="spec"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a simple and natural way to build fault-tolerant 
concurrent programs"
+HOMEPAGE="https://github.com/celluloid/celluloid;
+IUSE=""
+SLOT="0"
+
+LICENSE="MIT"
+KEYWORDS="~amd64"
+
+ruby_add_rdepend "
+   dev-ruby/celluloid-essentials
+   dev-ruby/celluloid-extras
+   dev-ruby/celluloid-fsm
+   dev-ruby/celluloid-pool
+   dev-ruby/celluloid-supervision
+   >=dev-ruby/timers-4.1.1"
+
+ruby_add_bdepend "test? (
+   dev-ruby/dotenv
+   dev-ruby/nenv
+   dev-ruby/rspec-retry
+)"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' -e '/coveralls/I s:^:#:' spec/spec_helper.rb 
|| die
+
+   sed -i -e '1irequire "spec_helper"' spec/celluloid/actor/system_spec.rb 
|| die
+
+   sed -i -e '1irequire "pathname"' spec/spec_helper.rb || die
+   mkdir log || die
+}



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

2015-12-29 Thread Hans de Graaff
commit: ae3a818d7a406beeea77608d50019080c66d488c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 29 08:58:24 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 29 09:00:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae3a818d

dev-ruby/celluloid-essentials: add celluloid 0.17.2

Package-Manager: portage-2.2.24

 dev-ruby/celluloid-essentials/Manifest |  1 +
 .../celluloid-essentials-0.20.5.ebuild | 38 ++
 dev-ruby/celluloid-essentials/metadata.xml |  8 +
 3 files changed, 47 insertions(+)

diff --git a/dev-ruby/celluloid-essentials/Manifest 
b/dev-ruby/celluloid-essentials/Manifest
new file mode 100644
index 000..3e90916
--- /dev/null
+++ b/dev-ruby/celluloid-essentials/Manifest
@@ -0,0 +1 @@
+DIST celluloid-essentials-0.20.5.tar.gz 20403 SHA256 
48711f0ee47d81e7642114e07c9432e3d616368e3d692bd7ff93340794e0a685 SHA512 
66b03babcc5b0795147140e9a1d5552b6f8232c0ad3b444db04f397b919da57d7b4a0fa1427d2d0aa1904c6eefb78ddc7b0a607b8df9e7291d3a1732e6303d33
 WHIRLPOOL 
0cf735b8040444ac10a38cfd134a53edce3f54ddb6a00f379d0133d1f502ad324f6b86c86421ef4eeb0309bfdbfb401aa73a8257e63fd3d1306def40df1e293e

diff --git a/dev-ruby/celluloid-essentials/celluloid-essentials-0.20.5.ebuild 
b/dev-ruby/celluloid-essentials/celluloid-essentials-0.20.5.ebuild
new file mode 100644
index 000..f3cff20
--- /dev/null
+++ b/dev-ruby/celluloid-essentials/celluloid-essentials-0.20.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a simple and natural way to build fault-tolerant 
concurrent programs"
+HOMEPAGE="https://github.com/celluloid/celluloid;
+SRC_URI="https://github.com/celluloid/celluloid-essentials/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
+IUSE=""
+SLOT="0"
+
+LICENSE="MIT"
+KEYWORDS="~amd64"
+
+ruby_add_rdepend "
+   >=dev-ruby/timers-4.1.1"
+
+ruby_add_bdepend "test? (
+   dev-ruby/celluloid
+   dev-ruby/dotenv
+   dev-ruby/nenv
+   dev-ruby/rspec-retry
+)"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' -e '/coveralls/I s:^:#:' spec/spec_helper.rb 
|| die
+
+   sed -i -e '1irequire "pathname"' spec/spec_helper.rb || die
+   sed -i -e "s:log/test.log:${TMPDIR}/test.log:" .env-dev || die
+}

diff --git a/dev-ruby/celluloid-essentials/metadata.xml 
b/dev-ruby/celluloid-essentials/metadata.xml
new file mode 100644
index 000..38e154f
--- /dev/null
+++ b/dev-ruby/celluloid-essentials/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  ruby
+  
+celluloid/celluloid-essentials
+  
+



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

2015-12-29 Thread Hans de Graaff
commit: 250f6ca4cd37a4f545dd0807f1a8827916925e90
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 29 07:08:47 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 29 09:00:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=250f6ca4

dev-ruby/dotenv: cleanup

Package-Manager: portage-2.2.24

 dev-ruby/dotenv/Manifest|  1 -
 dev-ruby/dotenv/dotenv-2.0.1.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/dev-ruby/dotenv/Manifest b/dev-ruby/dotenv/Manifest
index 9e8bfd8..ecbeac8 100644
--- a/dev-ruby/dotenv/Manifest
+++ b/dev-ruby/dotenv/Manifest
@@ -1,2 +1 @@
-DIST dotenv-2.0.1.tar.gz 12848 SHA256 
8c77f85b5c676a3fc7703c45cdcced11b093b173c3e9a8d0edd8d3bf088b635f SHA512 
03700400a7158807967bb4a8c61a041f598f07b76733bcbafc4996c6f0d492f456e1dbe5ff3d93ecec419959c7342e419890147f3adb9b9254e4e6a20e048652
 WHIRLPOOL 
874b468f7811a0ecbf1a36bf3457ad2dd38b1856767c90e17d827f068ec88bc9540b37b1dde6e30b0a9df6bd53771ff91a34a44195fb057acc528342041fd9d8
 DIST dotenv-2.0.2.tar.gz 13269 SHA256 
fb6c65a0f5a2eef7b0f45f2356ad1ff71d2504555667ce83ae0d61ca2050d1d1 SHA512 
3b932a71b1156b70240ff372c8ff58a3fc8037fec958910951195091ac518b6971f8d9480a00f43da1be006d9fdb86ad2bfda62937a129da92d30f05991dd067
 WHIRLPOOL 
bb1ea40548abe88837d20912eee5bbe3e3702d2cf57ad4df11104b53b726c8d7c6982699ce00f14e47ce12bdb2cd23b9b9913b4e5135507485b14b66c54d78c1

diff --git a/dev-ruby/dotenv/dotenv-2.0.1.ebuild 
b/dev-ruby/dotenv/dotenv-2.0.1.ebuild
deleted file mode 100644
index 5160c05..000
--- a/dev-ruby/dotenv/dotenv-2.0.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_EXTRADOC="README.md Changelog.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Loads environment variables from .env into ENV"
-HOMEPAGE="https://github.com/bkeepers/dotenv;
-SRC_URI="https://github.com/bkeepers/dotenv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-
-KEYWORDS="~amd64"
-SLOT="2"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/spring dev-ruby/rails )"
-
-each_ruby_prepare() {
-   sed -i -e "s:ruby -v:${RUBY} -v:g" spec/dotenv/parser_spec.rb || die
-}



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

2015-12-29 Thread Hans de Graaff
commit: c5a80dde8c63296268ba4033e60db65d80fadcd8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 29 08:58:34 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 29 09:00:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a80dde

dev-ruby/celluloid-supervision: add celluloid 0.17.2

Package-Manager: portage-2.2.24

 dev-ruby/celluloid-supervision/Manifest|  1 +
 .../celluloid-supervision-0.20.5.ebuild| 38 ++
 dev-ruby/celluloid-supervision/metadata.xml|  8 +
 3 files changed, 47 insertions(+)

diff --git a/dev-ruby/celluloid-supervision/Manifest 
b/dev-ruby/celluloid-supervision/Manifest
new file mode 100644
index 000..716d71c
--- /dev/null
+++ b/dev-ruby/celluloid-supervision/Manifest
@@ -0,0 +1 @@
+DIST celluloid-supervision-0.20.5.tar.gz 16404 SHA256 
503dad4bbda90f8c6d0a092f128fa68f48ab24b8fc7707baa38bd208b65af5ea SHA512 
0fca953b6ade756574040b8e34e8ac4ea3d392628a9fb14a8d52f39ca3f92371e335520b673dec8fc9a4a44a208b38f51c9c23e2218510078ded64c903533bc8
 WHIRLPOOL 
665a4594e1cb063d7895cb1abd428518cb8b63d4127571854a372ddbd4955957ee04a838e1d1622197e109bb23a268b75a040b559240df7c25261324e2f2199f

diff --git a/dev-ruby/celluloid-supervision/celluloid-supervision-0.20.5.ebuild 
b/dev-ruby/celluloid-supervision/celluloid-supervision-0.20.5.ebuild
new file mode 100644
index 000..39eb453
--- /dev/null
+++ b/dev-ruby/celluloid-supervision/celluloid-supervision-0.20.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a simple and natural way to build fault-tolerant 
concurrent programs"
+HOMEPAGE="https://github.com/celluloid/celluloid;
+SRC_URI="https://github.com/celluloid/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+IUSE=""
+SLOT="0"
+
+LICENSE="MIT"
+KEYWORDS="~amd64"
+
+ruby_add_rdepend "
+   >=dev-ruby/timers-4.1.1"
+
+ruby_add_bdepend "test? (
+   >=dev-ruby/celluloid-0.17.2
+   dev-ruby/dotenv
+   dev-ruby/nenv
+   dev-ruby/rspec-retry
+)"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' -e '/coveralls/I s:^:#:' spec/spec_helper.rb 
|| die
+
+   sed -i -e '1irequire "pathname"' spec/spec_helper.rb || die
+   sed -i -e "s:log/test.log:${TMPDIR}/test.log:" .env-dev || die
+}

diff --git a/dev-ruby/celluloid-supervision/metadata.xml 
b/dev-ruby/celluloid-supervision/metadata.xml
new file mode 100644
index 000..c996e6b
--- /dev/null
+++ b/dev-ruby/celluloid-supervision/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  ruby
+  
+celluloid/celluloid-supervision
+  
+



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

2015-12-29 Thread Hans de Graaff
commit: 99a8384a95603995ca8de0666ffd00e310fdb26c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 29 08:01:53 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 29 09:00:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99a8384a

dev-ruby/rspec-retry: initial import of 0.4.5

New test dependency for dev-ruby/celluloid

Package-Manager: portage-2.2.24

 dev-ruby/rspec-retry/Manifest |  1 +
 dev-ruby/rspec-retry/metadata.xml |  8 
 dev-ruby/rspec-retry/rspec-retry-0.4.5.ebuild | 24 
 3 files changed, 33 insertions(+)

diff --git a/dev-ruby/rspec-retry/Manifest b/dev-ruby/rspec-retry/Manifest
new file mode 100644
index 000..1b62e45
--- /dev/null
+++ b/dev-ruby/rspec-retry/Manifest
@@ -0,0 +1 @@
+DIST rspec-retry-0.4.5.gem 10752 SHA256 
262b89cb68f15254697f0b9ccac68d017aa9953811cc7cd52c626e7996eafb47 SHA512 
21d4aef1f5912d86f599f4c2dca97ccc85a242231bf5a437530c9f7fde3fc77d2bb1389c99a1e5954fa779e377c1b0fbb70edaf6dbe7e23fdf339f7f06f5afb5
 WHIRLPOOL 
7b4fbae696ed0bdf8fe8be73cba751f2661aa9ce8d5b46e053c14e064ad0ded1d83508625c9b891b60176724ca6c5d02c9ce63619dd9218b27e7262073abf055

diff --git a/dev-ruby/rspec-retry/metadata.xml 
b/dev-ruby/rspec-retry/metadata.xml
new file mode 100644
index 000..3465d97
--- /dev/null
+++ b/dev-ruby/rspec-retry/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  ruby
+  
+NoRedInk/rspec-retry
+  
+

diff --git a/dev-ruby/rspec-retry/rspec-retry-0.4.5.ebuild 
b/dev-ruby/rspec-retry/rspec-retry-0.4.5.ebuild
new file mode 100644
index 000..10b386f
--- /dev/null
+++ b/dev-ruby/rspec-retry/rspec-retry-0.4.5.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Retry intermittently failing rspec examples"
+HOMEPAGE="https://github.com/NoRedInk/rspec-retry;
+IUSE=""
+SLOT="0"
+
+LICENSE="MIT"
+KEYWORDS="~amd64"
+
+all_ruby_prepare() {
+   sed -i -e '/pry/ s:^:#:' spec/spec_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_perl/, www-apache/mod_perl/files/

2015-12-29 Thread Tobias Klausmann
commit: ff626b3e8835f83406c28bdfee3f213b75d192ab
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Dec 29 09:08:13 2015 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Dec 29 09:09:48 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff626b3e

www-apache/mod_perl Fix Perl initialization

Newer (>=5.22) versions of Perl require initialization to be handled
differently. The added patch comes from mod_perl's SVN, commit #1717474,
plus a few adaptations to apply cleanly.

Gentoo-Bug: 554794

Package-Manager: portage-2.2.26

 .../mod_perl/files/mod_perl_init_b554794.patch | 241 +
 www-apache/mod_perl/mod_perl-2.0.8-r3.ebuild   | 165 ++
 2 files changed, 406 insertions(+)

diff --git a/www-apache/mod_perl/files/mod_perl_init_b554794.patch 
b/www-apache/mod_perl/files/mod_perl_init_b554794.patch
new file mode 100644
index 000..b33a34a
--- /dev/null
+++ b/www-apache/mod_perl/files/mod_perl_init_b554794.patch
@@ -0,0 +1,241 @@
+--- a/src/modules/perl/modperl_env.c.orig  2015-12-28 11:42:26.604632457 
+0100
 b/src/modules/perl/modperl_env.c   2015-12-28 12:36:35.305228288 +0100
+@@ -120,6 +120,7 @@
+ const apr_array_header_t *array;
+ apr_table_entry_t *elts;
+ 
++modperl_env_init(aTHX);
+ modperl_env_untie(mg_flags);
+ 
+ array = apr_table_elts(table);
+@@ -431,13 +432,11 @@
+ }
+ 
+ /* to store the original virtual tables
+- * these are global, not per-interpreter
++ * handy access to perl's original virtual tables
+  */
+-static MGVTBL MP_PERL_vtbl_env;
+-static MGVTBL MP_PERL_vtbl_envelem;
+ 
+ #define MP_PL_vtbl_call(name, meth) \
+-MP_PERL_vtbl_##name.svt_##meth(aTHX_ sv, mg)
++PL_vtbl_##name.svt_##meth(aTHX_ sv, mg)
+ 
+ #define MP_dENV_KEY \
+ STRLEN klen; \
+@@ -534,6 +533,26 @@
+ return 0;
+ }
+ 
++static int modperl_env_magic_copy(pTHX_ SV *sv, MAGIC *mg, SV *nsv, const 
char *name, I32 namlen)
++{
++MP_TRACE_e(MP_FUNC, "setting up %%ENV element magic");
++sv_magicext(nsv, mg->mg_obj, toLOWER(mg->mg_type), _vtbl_envelem, 
name, namlen);
++
++return 1;
++}
++
++static int modperl_env_magic_local_all(pTHX_ SV *nsv, MAGIC *mg)
++{
++MAGIC *nmg;
++MP_TRACE_e(MP_FUNC, "localizing %%ENV");
++nmg = sv_magicext(nsv, mg->mg_obj, mg->mg_type, _vtbl_env, 
(char*)NULL, 0);
++nmg->mg_ptr = mg->mg_ptr;
++nmg->mg_flags |= MGf_COPY;
++nmg->mg_flags |= MGf_LOCAL;
++
++return 1;
++}
++
+ static int modperl_env_magic_set(pTHX_ SV *sv, MAGIC *mg)
+ {
+ request_rec *r = (request_rec *)EnvMgObj;
+@@ -625,15 +644,18 @@
+ #endif
+ 
+ /* override %ENV virtual tables with our own */
+-static MGVTBL MP_vtbl_env = {
++MGVTBL MP_vtbl_env = {
+ 0,
+ modperl_env_magic_set_all,
+ 0,
+ modperl_env_magic_clear_all,
+-0
++0,
++modperl_env_magic_copy,
++0,
++modperl_env_magic_local_all
+ };
+ 
+-static MGVTBL MP_vtbl_envelem = {
++MGVTBL MP_vtbl_envelem = {
+ 0,
+ modperl_env_magic_set,
+ 0,
+@@ -641,20 +663,62 @@
+ 0
+ };
+ 
+-void modperl_env_init(void)
++void modperl_env_init(pTHX)
+ {
+-/* save originals */
+-StructCopy(_vtbl_env, _PERL_vtbl_env, MGVTBL);
+-StructCopy(_vtbl_envelem, _PERL_vtbl_envelem, MGVTBL);
++MAGIC *mg;
+ 
+-/* replace with our versions */
+-StructCopy(_vtbl_env, _vtbl_env, MGVTBL);
+-StructCopy(_vtbl_envelem, _vtbl_envelem, MGVTBL);
++/* Find the 'E' magic on %ENV */
++if (!my_perl)
++return;
++if (!PL_envgv)
++return;
++if (!SvRMAGICAL(ENVHV))
++return;
++mg = mg_find((const SV *)ENVHV, PERL_MAGIC_env);
++if (!mg)
++return;
++   
++/* Ignore it if it isn't perl's original version */
++if (mg->mg_virtual != _vtbl_env)
++return;
++
++MP_TRACE_e(MP_FUNC, "env_init - ptr: %x obj: %x flags: %x",
++   mg->mg_ptr, mg->mg_obj, mg->mg_flags);
++
++/* Remove it */
++mg_free_type((SV*)ENVHV, PERL_MAGIC_env);
++
++/* Add our version instead */
++mg = sv_magicext((SV*)ENVHV, (SV*)NULL, PERL_MAGIC_env, _vtbl_env, 
(char*)NULL, 0);
++mg->mg_flags |= MGf_COPY;
++mg->mg_flags |= MGf_LOCAL;
+ }
+ 
+-void modperl_env_unload(void)
++void modperl_env_unload(pTHX)
+ {
+-/* restore originals */
+-StructCopy(_PERL_vtbl_env, _vtbl_env, MGVTBL);
+-StructCopy(_PERL_vtbl_envelem, _vtbl_envelem, MGVTBL);
++ MAGIC *mg;
++
++/* Find the 'E' magic on %ENV */
++if (!my_perl)
++return;
++if (!PL_envgv)
++return;
++if (!SvRMAGICAL(ENVHV))
++return;
++mg = mg_find((const SV *)ENVHV, PERL_MAGIC_env);
++if (!mg)
++return;
++
++/* Ignore it if it isn't our version */
++if (mg->mg_virtual != _vtbl_env)
++return;
++
++MP_TRACE_e(MP_FUNC, "env_unload - ptr: %x obj: %x flags: %x",
++   mg->mg_ptr, mg->mg_obj, mg->mg_flags);
++
++/* Remove it */
++

[gentoo-commits] repo/gentoo:master commit in: www-plugins/adobe-flash/

2015-12-29 Thread Agostino Sarubbo
commit: b65d9e9380ee528fcb35f581dbf7b47fbfce6590
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Dec 29 09:17:28 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Dec 29 09:17:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b65d9e93

www-plugins/adobe-flash: x86 stable wrt bug #570040

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild 
b/www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild
index 9987be2..a77fb11 100644
--- a/www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild
+++ b/www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild
@@ -33,7 +33,7 @@ REQUIRED_USE="
 "
 SLOT="0"
 
-KEYWORDS="-* amd64 ~x86"
+KEYWORDS="-* amd64 x86"
 LICENSE="AdobeFlash-11.x"
 RESTRICT="strip mirror"
 



[gentoo-commits] repo/gentoo:master commit in: www-plugins/adobe-flash/

2015-12-29 Thread Agostino Sarubbo
commit: 01cc679d28eb1dda87abb873a1c9ef000b8473e8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Dec 29 09:17:04 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Dec 29 09:17:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01cc679d

www-plugins/adobe-flash: amd64 stable wrt bug #570040

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild 
b/www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild
index 162eb06..9987be2 100644
--- a/www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild
+++ b/www-plugins/adobe-flash/adobe-flash-11.2.202.559.ebuild
@@ -33,7 +33,7 @@ REQUIRED_USE="
 "
 SLOT="0"
 
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* amd64 ~x86"
 LICENSE="AdobeFlash-11.x"
 RESTRICT="strip mirror"
 



[gentoo-commits] repo/gentoo:master commit in: mail-client/roundcube/

2015-12-29 Thread Jeroen Roovers
commit: 45454ed3ac591b501f27f02cdca69c6e2af23c2e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Dec 29 09:41:43 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Dec 29 09:41:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45454ed3

mail-client/roundcube: Mark ~ppc64 (bug #567996).

Package-Manager: portage-2.2.26
RepoMan-Options: --ignore-arches

 mail-client/roundcube/roundcube-1.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/roundcube/roundcube-1.1.3.ebuild 
b/mail-client/roundcube/roundcube-1.1.3.ebuild
index c112276..2adcdae 100644
--- a/mail-client/roundcube/roundcube-1.1.3.ebuild
+++ b/mail-client/roundcube/roundcube-1.1.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz"
 # roundcube is GPL-licensed, the rest of the licenses here are
 # for bundled PEAR components, googiespell and utf8.class.php
 LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
-KEYWORDS="amd64 ~hppa ppc ~sparc x86"
+KEYWORDS="amd64 ~hppa ppc ~ppc64 ~sparc x86"
 
 IUSE="enigma ldap managesieve mysql postgres sqlite ssl spell"
 REQUIRED_USE="|| ( mysql postgres sqlite )"



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

2015-12-29 Thread Jeroen Roovers
commit: 26f22e3005b0be8ceb9b3ff85e2af514bf704b22
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Dec 29 09:39:11 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Dec 29 09:39:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26f22e30

dev-php/PEAR-Net_LDAP2: Mark ~ppc64 (bug #567996).

Package-Manager: portage-2.2.26
RepoMan-Options: --ignore-arches

 dev-php/PEAR-Net_LDAP2/PEAR-Net_LDAP2-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Net_LDAP2/PEAR-Net_LDAP2-2.1.0.ebuild 
b/dev-php/PEAR-Net_LDAP2/PEAR-Net_LDAP2-2.1.0.ebuild
index e916419..7a6ac4c 100644
--- a/dev-php/PEAR-Net_LDAP2/PEAR-Net_LDAP2-2.1.0.ebuild
+++ b/dev-php/PEAR-Net_LDAP2/PEAR-Net_LDAP2-2.1.0.ebuild
@@ -6,7 +6,7 @@ EAPI="5"
 
 inherit php-pear-r1
 
-KEYWORDS="alpha amd64 hppa ppc sparc x86"
+KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86"
 
 DESCRIPTION="OO interface for searching and manipulating LDAP-entries"
 LICENSE="LGPL-2.1"



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

2015-12-29 Thread Patrick Lauer
commit: 02e5d2bc2465f3afd180316546764712599666c9
Author: Patrick Lauer  gentoo  org>
AuthorDate: Tue Dec 29 08:02:23 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Tue Dec 29 08:03:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02e5d2bc

Whitespace

Package-Manager: portage-2.2.26

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

diff --git a/dev-libs/gom/gom-0.3.2.ebuild b/dev-libs/gom/gom-0.3.2.ebuild
index 5c7c94b..718bd30 100644
--- a/dev-libs/gom/gom-0.3.2.ebuild
+++ b/dev-libs/gom/gom-0.3.2.ebuild
@@ -54,7 +54,7 @@ src_configure() {
gnome2_src_configure \
${myconf[@]} \
--disable-python \
-   $(use_enable introspection) \
+   $(use_enable introspection)
 
if use python ; then
python_foreach_impl run_in_build_dir \



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/avogadro2/, sci-chemistry/avogadro2/files/

2015-12-29 Thread Justin Lecher
commit: 1a15a5bde69114333976660b2c9d7dbb2d1e53e1
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Dec 29 10:59:01 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Dec 29 11:00:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a15a5bd

sci-chemistry/avogadro2: Import from science overlay

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

 sci-chemistry/avogadro2/Manifest   |   2 +
 sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild |  48 +++
 sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild |  58 +
 .../avogadro2/files/avogadro2-0.8.0-desktop.patch  |  16 +++
 .../avogadro2/files/avogadro2-0.8.0-vtk.patch  | 142 +
 sci-chemistry/avogadro2/metadata.xml   |  15 +++
 6 files changed, 281 insertions(+)

diff --git a/sci-chemistry/avogadro2/Manifest b/sci-chemistry/avogadro2/Manifest
new file mode 100644
index 000..96307cd
--- /dev/null
+++ b/sci-chemistry/avogadro2/Manifest
@@ -0,0 +1,2 @@
+DIST avogadroapp-0.7.2.tar.gz 523935 SHA256 
f29db2f04aea8d9dfa0ab73bfa0c45fba18f45fba968a249f618024e8ab8fe63 SHA512 
fb798931b66827b0b0e27295b528483d258e15612dba729219874b6171be3e981bd18337add41eb93613d90653286d8d8aa0dbe5fb11577c5ee22ba25b65443b
 WHIRLPOOL 
bce0a6c8e0e10bedb332b68c08935ecaf2abe8fbc53cfb7eb53f206da89014f99e0f9ccd95c2ad6c876bb97090939b0807e0d10c7e62f58ebb3a3cc3254fd2a6
+DIST avogadroapp-0.8.0.tar.gz 1105596 SHA256 
d79840f0395c11c2081262ba9c1bc6d944c089bac162b434b94a3080bc90c221 SHA512 
cc8c6c1620f603b3ed48a45c13968dc451382d3c3947b743fc65c547d6af92ae1f7f1764ffba84e602a2b54a5be075473e58cb49b8061b9e41b728eadba1a5de
 WHIRLPOOL 
dc04714b0f830bf826b5253ceb1738500f48aed5e1c922bd2096d2273c88264bbcf27a796418eec80c4483c5905d6c46e8ad4af22e011ab1b451c70d0c087a38

diff --git a/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild 
b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
new file mode 100644
index 000..b3f00f8
--- /dev/null
+++ b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils
+
+MY_PN=avogadroapp
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Advanced molecule editor and visualizer 2"
+HOMEPAGE="http://www.openchemistry.org/;
+SRC_URI="mirror://sourceforge/project/avogadro/avogadro2/${PV}/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD GPL-2+"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc rpc test"
+
+RDEPEND="
+   >=dev-cpp/eigen-3.2.0-r1
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtopengl:4
+   ~sci-libs/avogadrolibs-${PV}[qt4,opengl]
+   sci-libs/hdf5
+   rpc? ( sci-chemistry/molequeue )
+"
+DEPEND="${DEPEND}"
+
+RESTRICT=test
+
+S="${WORKDIR}"/${MY_P}
+
+src_prepare() {
+   sed '/COPYING/d' -i CMakeLists.txt || die
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_build doc DOCUMENTATION)
+   $(cmake-utils_use rpc Avogadro_ENABLE_RPC)
+   $(cmake-utils_use_enable test TESTING)
+   )
+   cmake-utils_src_configure
+}

diff --git a/sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild 
b/sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild
new file mode 100644
index 000..815f0e0
--- /dev/null
+++ b/sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils
+
+MY_PN=avogadroapp
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Advanced molecule editor and visualizer 2"
+HOMEPAGE="http://www.openchemistry.org/;
+SRC_URI="mirror://sourceforge/project/avogadro/avogadro2/${PV}/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD GPL-2+"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc rpc test vtk"
+
+RDEPEND="
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtopengl:5
+   dev-qt/qtwidgets:5
+   ~sci-libs/avogadrolibs-${PV}[qt5,opengl]
+   sci-libs/hdf5
+   rpc? ( sci-chemistry/molequeue )
+"
+DEPEND="${DEPEND}
+   >=dev-cpp/eigen-3.2.0-r1
+   test? ( dev-qt/qttest:5 )"
+
+RESTRICT=test
+
+S="${WORKDIR}"/${MY_P}
+
+PATCHES=(
+   "${FILESDIR}"/${P}-desktop.patch
+   "${FILESDIR}"/${P}-vtk.patch
+)
+
+src_prepare() {
+   sed '/COPYING/d' -i CMakeLists.txt || die
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_build doc DOCUMENTATION)
+   $(cmake-utils_use rpc Avogadro_ENABLE_RPC)
+   $(cmake-utils_use_enable test TESTING)
+   $(cmake-utils_use_use vtk)
+   )
+   cmake-utils_src_configure
+}

diff --git a/sci-chemistry/avogadro2/files/avogadro2-0.8.0-desktop.patch 

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

2015-12-29 Thread Pacho Ramos
commit: 1dd950e93c65069e5d483cd25428f5d9295f4f4f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 29 12:26:25 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 29 12:26:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dd950e9

net-misc/sparkleshare: Move to maintainer-needed

Package-Manager: portage-2.2.26

 net-misc/sparkleshare/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/sparkleshare/metadata.xml 
b/net-misc/sparkleshare/metadata.xml
index f58e21d..e9f1667 100644
--- a/net-misc/sparkleshare/metadata.xml
+++ b/net-misc/sparkleshare/metadata.xml
@@ -1,7 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   gnome
+maintainer-nee...@gentoo.org

hbons/sparkleshare




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

2015-12-29 Thread Michael Palimaka
commit: 6688a113964607e2b67dcd49993775e41025c29d
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon Dec 28 17:55:37 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 12:48:26 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6688a113

kde-apps/kdepim-runtime: Raise libkgapi version depend

Package-Manager: portage-2.2.24

 kde-apps/kdepim-runtime/kdepim-runtime-15.12.0.ebuild   | 2 +-
 kde-apps/kdepim-runtime/kdepim-runtime-15.12.49..ebuild | 2 +-
 kde-apps/kdepim-runtime/kdepim-runtime-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-15.12.0.ebuild 
b/kde-apps/kdepim-runtime/kdepim-runtime-15.12.0.ebuild
index 29889cf..9ce8adf 100644
--- a/kde-apps/kdepim-runtime/kdepim-runtime-15.12.0.ebuild
+++ b/kde-apps/kdepim-runtime/kdepim-runtime-15.12.0.ebuild
@@ -65,7 +65,7 @@ DEPEND="${CDEPEND}
dev-libs/libxslt
sys-devel/gettext
x11-misc/shared-mime-info
-   google? ( net-libs/libkgapi:5 )
+   google? ( >=net-libs/libkgapi-5.1.0:5 )
 "
 RDEPEND="${CDEPEND}
!kde-base/kdepim-runtime:4

diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-15.12.49..ebuild 
b/kde-apps/kdepim-runtime/kdepim-runtime-15.12.49..ebuild
index b01275a..11b6452 100644
--- a/kde-apps/kdepim-runtime/kdepim-runtime-15.12.49..ebuild
+++ b/kde-apps/kdepim-runtime/kdepim-runtime-15.12.49..ebuild
@@ -65,7 +65,7 @@ DEPEND="${CDEPEND}
dev-libs/libxslt
sys-devel/gettext
x11-misc/shared-mime-info
-   google? ( net-libs/libkgapi:5 )
+   google? ( >=net-libs/libkgapi-5.1.0:5 )
 "
 RDEPEND="${CDEPEND}
!kde-base/kdepim-runtime:4

diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild 
b/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild
index b01275a..11b6452 100644
--- a/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild
+++ b/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild
@@ -65,7 +65,7 @@ DEPEND="${CDEPEND}
dev-libs/libxslt
sys-devel/gettext
x11-misc/shared-mime-info
-   google? ( net-libs/libkgapi:5 )
+   google? ( >=net-libs/libkgapi-5.1.0:5 )
 "
 RDEPEND="${CDEPEND}
!kde-base/kdepim-runtime:4



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/, net-libs/libkgapi/

2015-12-29 Thread Michael Palimaka
commit: d677faafd8f141c137b03ecec2af5e324ac3fc7d
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon Dec 28 17:47:37 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 12:48:26 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d677faaf

net-libs/libkgapi: Version bump

Package-Manager: portage-2.2.24

 net-libs/libkgapi/{libkgapi-.ebuild => libkgapi-5.1.0.ebuild} | 8 +++-
 net-libs/libkgapi/libkgapi-.ebuild| 5 +
 profiles/package.mask/misc| 1 +
 3 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/net-libs/libkgapi/libkgapi-.ebuild 
b/net-libs/libkgapi/libkgapi-5.1.0.ebuild
similarity index 80%
copy from net-libs/libkgapi/libkgapi-.ebuild
copy to net-libs/libkgapi/libkgapi-5.1.0.ebuild
index 0a6a8dc..dcd5a65 100644
--- a/net-libs/libkgapi/libkgapi-.ebuild
+++ b/net-libs/libkgapi/libkgapi-5.1.0.ebuild
@@ -4,13 +4,17 @@
 
 EAPI=5
 
+KDE_DOXYGEN="true"
+KDE_TEST="true"
+VIRTUALX_REQUIRED="test"
 inherit kde5
 
 DESCRIPTION="Library for accessing Google calendar and contact resources"
 HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libkgapi;
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
 
 LICENSE="GPL-2"
-KEYWORDS=""
+KEYWORDS="~amd64"
 IUSE=""
 
 DEPEND="
@@ -27,3 +31,5 @@ DEPEND="
dev-qt/qtxml:5
 "
 RDEPEND="${DEPEND}"
+
+RESTRICT="test"

diff --git a/net-libs/libkgapi/libkgapi-.ebuild 
b/net-libs/libkgapi/libkgapi-.ebuild
index 0a6a8dc..f4cd537 100644
--- a/net-libs/libkgapi/libkgapi-.ebuild
+++ b/net-libs/libkgapi/libkgapi-.ebuild
@@ -4,6 +4,9 @@
 
 EAPI=5
 
+KDE_DOXYGEN="true"
+KDE_TEST="true"
+VIRTUALX_REQUIRED="test"
 inherit kde5
 
 DESCRIPTION="Library for accessing Google calendar and contact resources"
@@ -27,3 +30,5 @@ DEPEND="
dev-qt/qtxml:5
 "
 RDEPEND="${DEPEND}"
+
+RESTRICT="test"

diff --git a/profiles/package.mask/misc b/profiles/package.mask/misc
index 7b76bf3..aaba575 100644
--- a/profiles/package.mask/misc
+++ b/profiles/package.mask/misc
@@ -1,2 +1,3 @@
 =kde-misc/openofficeorg-thumbnail-1.0.0-r500
 =net-libs/libkgapi-5.0.0
+=net-libs/libkgapi-5.1.0



  1   2   >