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

2015-12-21 Thread Michał Górny
commit: e4ab6c84892f68c08abffcd5e0904a196d65d1d9
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Dec 21 19:00:41 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Dec 21 19:01:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4ab6c84

sys-libs/ncurses: Fix slot in blocker in 5.9-r4

 sys-libs/ncurses/ncurses-5.9-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/ncurses/ncurses-5.9-r4.ebuild 
b/sys-libs/ncurses/ncurses-5.9-r4.ebuild
index 006c932..78abd87 100644
--- a/sys-libs/ncurses/ncurses-5.9-r4.ebuild
+++ b/sys-libs/ncurses/ncurses-5.9-r4.ebuild
@@ -21,7 +21,7 @@ DEPEND="gpm? ( sys-libs/gpm )"
 #  berkdb? ( sys-libs/db )"
 # Block the older ncurses that installed all files w/SLOT=5. #557472
 RDEPEND="${DEPEND}
-   !<=sys-libs/ncurses-5.9-r4:0
+   !<=sys-libs/ncurses-5.9-r4:5
!

[gentoo-commits] dev/bicatali:master commit in: sci-libs/ceres-solver/

2015-12-21 Thread Sebastien Fabbro
commit: ab35a992bc0847175cd9becd7f409a082727907f
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Dec 21 19:56:31 2015 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Mon Dec 21 19:56:31 2015 +
URL:https://gitweb.gentoo.org/dev/bicatali.git/commit/?id=ab35a992

sci-libs/ceres-solver: version bump

 sci-libs/ceres-solver/Manifest   |  1 +
 sci-libs/ceres-solver/ceres-solver-1.11.0.ebuild | 92 
 sci-libs/ceres-solver/metadata.xml   | 32 +
 3 files changed, 125 insertions(+)

diff --git a/sci-libs/ceres-solver/Manifest b/sci-libs/ceres-solver/Manifest
new file mode 100644
index 000..20fdcf1
--- /dev/null
+++ b/sci-libs/ceres-solver/Manifest
@@ -0,0 +1 @@
+DIST ceres-solver-1.11.0.tar.gz 3944965 SHA256 
4d666cc33296b4c5cd77bad18ffc487b3223d4bbb7d1dfb342ed9a87dc9af844 SHA512 
4941538e6ec31e2ee56a24446748dc5d6dd02ba9c151e4320a2db943fd1a377455b0ee23d56780e1f05322b30e25057145c540fde901d7fd2244ec630a73527c
 WHIRLPOOL 
82e8c9f8fcf66f20dea28c5ddcfc4ac030a20d86c498eda487899b090fb67e7e44e3e1a76d3b689a409860c83713005e4f889814707d25cf298892ae9ea78890

diff --git a/sci-libs/ceres-solver/ceres-solver-1.11.0.ebuild 
b/sci-libs/ceres-solver/ceres-solver-1.11.0.ebuild
new file mode 100644
index 000..9621886
--- /dev/null
+++ b/sci-libs/ceres-solver/ceres-solver-1.11.0.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+
+inherit cmake-multilib eutils python-any-r1 toolchain-funcs
+
+DESCRIPTION="Nonlinear least-squares minimizer"
+HOMEPAGE="http://ceres-solver.org/;
+SRC_URI="${HOMEPAGE}/${P}.tar.gz"
+
+LICENSE="sparse? ( BSD ) !sparse? ( LGPL-2.1 ) cxsparse? ( BSD )"
+SLOT="0/1"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+IUSE="cxsparse c++11 doc examples gflags lapack openmp +schur sparse test"
+REQUIRED_USE="test? ( gflags ) sparse? ( lapack ) doc? ( 
${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   dev-cpp/glog[gflags?]
+   cxsparse? ( sci-libs/cxsparse:0= )
+   lapack? ( virtual/lapack )
+   sparse? (
+   sci-libs/amd:0=
+   sci-libs/camd:0=
+   sci-libs/ccolamd:0=
+   sci-libs/cholmod:0=
+   sci-libs/colamd:0=
+   sci-libs/spqr:0= )"
+
+DEPEND="${RDEPEND}
+   dev-cpp/eigen:3
+   doc? ( dev-python/sphinx dev-python/sphinx_rtd_theme )
+   lapack? ( virtual/pkgconfig )"
+
+pkg_setup() {
+   if [[ ${MERGE_TYPE} != binary ]] && use openmp; then
+   if [[ $(tc-getCXX) == *g++* ]] && ! tc-has-openmp; then
+   ewarn "OpenMP is not available in your current selected 
gcc"
+   die "need openmp capable gcc"
+   fi
+   fi
+   use doc && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   # search paths work for prefix
+   sed -e "s:/usr:${EPREFIX}/usr:g" \
+   -i cmake/*.cmake || die
+
+   # remove Werror
+   sed -e 's/-Werror=(all|extra)//g' \
+   -i CMakeLists.txt || die
+
+   # respect gentoo doc install directory
+   sed -e "s:share/doc/ceres:share/doc/${PF}:" \
+   -i docs/source/CMakeLists.txt || die
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   # CUSTOM_BLAS=OFF EIGENSPARSE=OFF MINIGLOG=OFF CXX11=OFF
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=ON
+   -DBUILD_EXAMPLES=OFF
+   $(cmake-utils_use_enable test TESTING)
+   $(cmake-utils_use c++11 CXX11)
+   $(cmake-utils_use doc BUILD_DOCUMENTATION)
+   $(cmake-utils_use gflags GFLAGS)
+   $(cmake-utils_use lapack LAPACK)
+   $(cmake-utils_use openmp OPENMP)
+   $(cmake-utils_use schur SCHUR_SPECIALIZATIONS)
+   $(cmake-utils_use cxsparse CXSPARSE)
+   $(cmake-utils_use sparse SUITESPARSE)
+   )
+   use sparse || use cxsparse || mycmakeargs+=( -DEIGENSPARSE=ON )
+   cmake-multilib_src_configure
+}
+
+src_install() {
+   cmake-multilib_src_install
+   dodoc README.md VERSION
+
+   if use examples; then
+   insinto /usr/share/doc/${PF}
+   docompress -x /usr/share/doc/${PF}/examples
+   doins -r examples data
+   fi
+}

diff --git a/sci-libs/ceres-solver/metadata.xml 
b/sci-libs/ceres-solver/metadata.xml
new file mode 100644
index 000..882a4e4
--- /dev/null
+++ b/sci-libs/ceres-solver/metadata.xml
@@ -0,0 +1,32 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+sci
+
+  Ceres Solver is a portable C++ library that allows for
+  modeling and solving large complicated nonlinear least squares
+  problems. It features:
+* automatic differentiation
+* robust loss functions
+* local parameterizations
+* threaded Jacobian evaluators and linear solvers
+* 

[gentoo-commits] dev/bicatali:master commit in: sci-libs/armadillo/

2015-12-21 Thread Sebastien Fabbro
commit: 0904bab625120f042f343f13fe7d5606f941322b
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Dec 21 20:07:26 2015 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Mon Dec 21 20:07:26 2015 +
URL:https://gitweb.gentoo.org/dev/bicatali.git/commit/?id=0904bab6

sci-libs/armadillo: version bump

 sci-libs/armadillo/Manifest | 2 +-
 .../armadillo/{armadillo-6.200.4.ebuild => armadillo-6.400.3.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/armadillo/Manifest b/sci-libs/armadillo/Manifest
index c204c54..852134a 100644
--- a/sci-libs/armadillo/Manifest
+++ b/sci-libs/armadillo/Manifest
@@ -1 +1 @@
-DIST armadillo-6.200.4.tar.gz 5442156 SHA256 
346ecb98cadafcf13493f09c970a2843af58d47a7a801ebce0b5df5b5a39f416 SHA512 
9fe261a9b7634f4b1a1adcfab0f4cd850163648a5ead187a978ff2d6ecdc47a73c541e446e96560ea509e7d0fabb8441140b4e95793e332eaf735f2f11154679
 WHIRLPOOL 
a27c097caabadb7d69c93d126f49adb6e36f7a5375f325d8bf72a92affce2dac0fb46e1c3ce15aea83f6f74f0508820103abea69c471443fa9b17eb97445ddb9
+DIST armadillo-6.400.3.tar.gz 5453832 SHA256 
019ce442a1bcad4c5da0bc01ee35333c9a0783ec6a58237ae1e774da68cd4f2f SHA512 
cead2ebac1bad8f7baa30bd4eb2c3f68d1a548d65584181d00f14cc9e9316ed37d1392f8503c9718629d6e994b5074f608d677b76dd8b7a371f08a517f4baba2
 WHIRLPOOL 
df659abc8183379f6f1977af4ceaa7c8463fb2be3cadf42a9f2749883cbf542fdd9431b8f86f68614341bde3b9ac61a6f2379f1c1a59c9bb6d13e82f4028daf3

diff --git a/sci-libs/armadillo/armadillo-6.200.4.ebuild 
b/sci-libs/armadillo/armadillo-6.400.3.ebuild
similarity index 100%
rename from sci-libs/armadillo/armadillo-6.200.4.ebuild
rename to sci-libs/armadillo/armadillo-6.400.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/maxima/, sci-mathematics/maxima/files/

2015-12-21 Thread Ulrich Müller
commit: 71971e5abe53b50b83e1617634cd79fe8a49842b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Dec 21 21:04:13 2015 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Dec 21 21:08:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71971e5a

sci-mathematics/maxima: Rename emacs site-init file.

Use similar naming scheme as for the patch files.

Package-Manager: portage-2.2.26

 .../maxima/files/{50maxima-gentoo.el => 50maxima-gentoo-0.el}  | 3 ---
 sci-mathematics/maxima/maxima-5.34.1.ebuild| 2 +-
 sci-mathematics/maxima/maxima-5.37.3-r1.ebuild | 2 +-
 3 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/sci-mathematics/maxima/files/50maxima-gentoo.el 
b/sci-mathematics/maxima/files/50maxima-gentoo-0.el
similarity index 91%
rename from sci-mathematics/maxima/files/50maxima-gentoo.el
rename to sci-mathematics/maxima/files/50maxima-gentoo-0.el
index 20c7399..ace2f4f 100644
--- a/sci-mathematics/maxima/files/50maxima-gentoo.el
+++ b/sci-mathematics/maxima/files/50maxima-gentoo-0.el
@@ -1,6 +1,3 @@
-
-;;; maxima site-lisp configuration
-
 (add-to-list 'load-path "@SITELISP@")
 (autoload 'maxima-mode "maxima" "Maxima mode" t)
 (autoload 'maxima "maxima" "Maxima interactive" t)

diff --git a/sci-mathematics/maxima/maxima-5.34.1.ebuild 
b/sci-mathematics/maxima/maxima-5.34.1.ebuild
index b679a8a..fa91b3d 100644
--- a/sci-mathematics/maxima/maxima-5.34.1.ebuild
+++ b/sci-mathematics/maxima/maxima-5.34.1.ebuild
@@ -168,7 +168,7 @@ src_install() {
dosym ../${PN}/${PV}/doc /usr/share/doc/${PF} || die
 
if use emacs; then
-   elisp-site-file-install "${FILESDIR}"/50maxima-gentoo.el || die
+   elisp-site-file-install "${FILESDIR}"/50maxima-gentoo-0.el || 
die
fi
 
# if we use ecls, build an ecls library for maxima

diff --git a/sci-mathematics/maxima/maxima-5.37.3-r1.ebuild 
b/sci-mathematics/maxima/maxima-5.37.3-r1.ebuild
index 85e2150..e71ebf0 100644
--- a/sci-mathematics/maxima/maxima-5.37.3-r1.ebuild
+++ b/sci-mathematics/maxima/maxima-5.37.3-r1.ebuild
@@ -162,7 +162,7 @@ src_install() {
dosym ../${PN}/${PV}/doc /usr/share/doc/${PF} || die
 
if use emacs; then
-   elisp-site-file-install "${FILESDIR}"/50maxima-gentoo.el || die
+   elisp-site-file-install "${FILESDIR}"/50maxima-gentoo-0.el || 
die
fi
 
# if we use ecls, build an ecls library for maxima



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/maxima/, sci-mathematics/maxima/files/

2015-12-21 Thread Ulrich Müller
commit: 727022b39e84bcb80ee0b63a1fd3424c83b90b79
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Dec 21 21:00:34 2015 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Dec 21 21:08:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=727022b3

sci-mathematics/maxima: Install imaxima.

With USE=emacs, install imaxima and byte-compile the elisp files.
This obsoletes app-emacs/imaxima, so block against it.
With USE=-emacs, remove any emacs files installed by the build system.

Bug: 448242

Package-Manager: portage-2.2.26

 sci-mathematics/maxima/files/50maxima-gentoo-1.el |  13 ++
 sci-mathematics/maxima/maxima-5.37.3-r2.ebuild| 200 ++
 2 files changed, 213 insertions(+)

diff --git a/sci-mathematics/maxima/files/50maxima-gentoo-1.el 
b/sci-mathematics/maxima/files/50maxima-gentoo-1.el
new file mode 100644
index 000..be14dbf
--- /dev/null
+++ b/sci-mathematics/maxima/files/50maxima-gentoo-1.el
@@ -0,0 +1,13 @@
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'maxima-mode "maxima" "Maxima mode" t)
+(autoload 'maxima "maxima" "Maxima interactive" t)
+(autoload 'dbl "dbl" "Make a debugger to run lisp, maxima and or gdb in" t)
+(add-to-list 'auto-mode-alist '("\\.ma?[cx]\\'" . maxima-mode))
+
+;; emaxima mode
+(autoload 'emaxima-mode "emaxima" "EMaxima" t)
+(add-hook 'emaxima-mode-hook 'emaxima-mark-file-as-emaxima)
+
+;; imaxima
+(autoload 'imaxima "imaxima" "Image support for Maxima." t)
+(autoload 'imath-mode "imath" "Interactive Math minor mode." t)

diff --git a/sci-mathematics/maxima/maxima-5.37.3-r2.ebuild 
b/sci-mathematics/maxima/maxima-5.37.3-r2.ebuild
new file mode 100644
index 000..3afffbf
--- /dev/null
+++ b/sci-mathematics/maxima/maxima-5.37.3-r2.ebuild
@@ -0,0 +1,200 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools elisp-common eutils
+
+DESCRIPTION="Free computer algebra environment based on Macsyma"
+HOMEPAGE="http://maxima.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2 GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+
+# Supported lisps
+LISPS=( sbcl cmucl gcl ecls clozurecl clisp )
+#  supports readline: . - no, y - yes
+SUPP_RL=(   .. y   .. y )
+# . - just --enable-,  - --enable-
+CONF_FLAG=( .. .   ecl  ccl   . )
+# patch file version; . - no patch
+PATCH_V=(   11 .   22 1 )
+
+IUSE="latex emacs tk nls unicode xemacs X ${LISPS[*]}"
+
+# Languages
+LANGS="es pt pt_BR"
+for lang in ${LANGS}; do
+   IUSE="${IUSE} linguas_${lang}"
+done
+
+# texlive-latexrecommended needed by imaxima for breqn.sty
+RDEPEND="!app-emacs/imaxima
+   X? ( x11-misc/xdg-utils
+sci-visualization/gnuplot[gd]
+tk? ( dev-lang/tk:0 ) )
+   latex? ( virtual/latex-base )
+   emacs? ( virtual/emacs
+   latex? ( app-emacs/auctex
+   app-text/ghostscript-gpl
+   dev-texlive/texlive-latexrecommended ) )
+   xemacs? ( app-editors/xemacs
+   latex? ( app-xemacs/auctex ) )"
+
+# generating lisp dependencies
+depends() {
+   local LISP DEP
+   LISP=${LISPS[$1]}
+   DEP="dev-lisp/${LISP}:="
+   if [ "${SUPP_RL[$1]}" = "." ]; then
+   DEP="${DEP} app-misc/rlwrap"
+   fi
+   echo ${DEP}
+}
+
+n=${#LISPS[*]}
+for ((n--; n >= 0; n--)); do
+   LISP=${LISPS[${n}]}
+   RDEPEND="${RDEPEND} ${LISP}? ( $(depends ${n}) )"
+   DEF_DEP="${DEF_DEP} !${LISP}? ( "
+done
+
+# default lisp
+DEF_LISP=0 # sbcl
+ARM_LISP=2 # gcl
+DEF_DEP="${DEF_DEP} arm? ( `depends ${ARM_LISP}` ) !arm? ( `depends 
${DEF_LISP}` )"
+
+n=${#LISPS[*]}
+for ((n--; n >= 0; n--)); do
+   DEF_DEP="${DEF_DEP} )"
+done
+
+unset LISP
+
+RDEPEND="${RDEPEND}
+   ${DEF_DEP}"
+
+DEPEND="${RDEPEND}
+   sys-apps/texinfo"
+
+TEXMF="${EPREFIX}"/usr/share/texmf-site
+
+pkg_setup() {
+   local n=${#LISPS[*]}
+
+   for ((n--; n >= 0; n--)); do
+   use ${LISPS[${n}]} && NLISPS="${NLISPS} ${n}"
+   done
+
+   if [ -z "${NLISPS}" ]; then
+   ewarn "No lisp specified in USE flags, choosing 
${LISPS[${DEF_LISP}]} as default"
+   NLISPS=${DEF_LISP}
+   fi
+}
+
+src_prepare() {
+   local n PATCHES v
+   PATCHES=( rmaxima-0 wish-1 xdg-utils-0 db-0 )
+
+   n=${#PATCHES[*]}
+   for ((n--; n >= 0; n--)); do
+   epatch "${FILESDIR}"/${PATCHES[${n}]}.patch
+   done
+
+   n=${#LISPS[*]}
+   for ((n--; n >= 0; n--)); do
+   v=${PATCH_V[${n}]}
+   if [ "${v}" != "." ]; then
+   epatch "${FILESDIR}"/${LISPS[${n}]}-${v}.patch
+   fi
+   done
+
+   # bug #343331
+   rm share/Makefile.in || die
+ 

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

2015-12-21 Thread Ulrich Müller
commit: b5c0470dbe2884a7965076ef9440cd4e56c858fd
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Dec 21 21:07:30 2015 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Dec 21 21:08:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5c0470d

profiles: Mask =sci-mathematics/maxima-5.37.3-r2 for testing.

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 13e67e7..0c7b60e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Ulrich Müller  (21 Dec 2015)
+# Masked for testing, see bug #448242.
+=sci-mathematics/maxima-5.37.3-r2
+
 # Hans de Graaff  (21 Dec 2015)
 # Mask until issues with non-standard bin dir have been resolved.
 =dev-ruby/bundler-1.11*



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

2015-12-21 Thread Mike Gilbert
commit: 0c7a208ba1cc6303dd06dc7c813e69d1c41b10e7
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Dec 21 18:17:34 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Dec 21 18:17:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c7a208b

sys-apps/dbus: Disable apparmor support

Avoid the automagic dep until someone can test it.

Package-Manager: portage-2.2.26_p32

 sys-apps/dbus/dbus-1.10.6.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-apps/dbus/dbus-1.10.6.ebuild b/sys-apps/dbus/dbus-1.10.6.ebuild
index c7e7c59..00b05ee 100644
--- a/sys-apps/dbus/dbus-1.10.6.ebuild
+++ b/sys-apps/dbus/dbus-1.10.6.ebuild
@@ -106,6 +106,7 @@ multilib_src_configure() {
--disable-checks
$(use_enable selinux)
$(use_enable selinux libaudit)
+   --disable-apparmor
$(use_enable kernel_linux inotify)
$(use_enable kernel_FreeBSD kqueue)
$(use_enable systemd)



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

2015-12-21 Thread Alex Brandt
commit: 85284c9714a43556ea948da73c16998fe67aa8fb
Author: Alex Brandt  gentoo  org>
AuthorDate: Mon Dec 21 20:56:21 2015 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Mon Dec 21 20:56:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85284c97

dev-python/torment: remove version 2.1.0

Package-Manager: portage-2.2.26

 dev-python/torment/Manifest |  1 -
 dev-python/torment/torment-2.1.0.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/dev-python/torment/Manifest b/dev-python/torment/Manifest
index 50e1bfc..2327125 100644
--- a/dev-python/torment/Manifest
+++ b/dev-python/torment/Manifest
@@ -1,4 +1,3 @@
-DIST torment-2.1.0.tar.gz 30608 SHA256 
d8d21efd1a30c0bb964b43e47b41cc261d4b2417b09fd3945090bf48fd3d0248 SHA512 
502a61372f61d653f98ed20e0d074d1c411cc33be08ae91fec4e7606b1d3d3b78fd4fee8b1908b4fc721e7fe6029400063e9a94830a589e572baf824e7e0a261
 WHIRLPOOL 
7fe54b057ea89823b1b861c61e771f02a8a66a755f5667c89728bfab8e52006524cc960fece75f77d00b1aa894e0f3853df59a79cddf70a28b27b08d31de856b
 DIST torment-3.0.0.tar.gz 33898 SHA256 
ad3ead69f1c9e5ec1dc92a83bceca186f0d6a4544f983222c32c4d0a5e7f3b45 SHA512 
1fac30a0e97a6505c7e9cbbfaa141e2378cf26345fd4679d6eff75a4472054771b2421b044f9ff0daa8671e1b27989508e7a9885dfb98e3a07bd3e842d4bbb77
 WHIRLPOOL 
353cd7a8b66f2936c5476e8e50e2f6428bdc6f4e0bdbb2ea99c93018ebe6587ad4d3c6310fd55fe21cbdefc3174425a34d10aa072cbc27ebcbe3f5f114f4c913
 DIST torment-3.0.1.tar.gz 33908 SHA256 
06f4aa429fa68255512cd9fffbaefad85a06afe4bbc5e3c293c33a72184fe46d SHA512 
c57451d18cf90204247054fcc9717d8b3587e8be38433d907f51703c3f571638793cc5078cc5ad9e0ffccd024251a086e2d1dd47ad92fea89cc65a8de6c2a7c1
 WHIRLPOOL 
50bc8f1fbcdf6553ecf21580b6e7df802235097ebad829cca1b964806e265fc401f7a5d4200267a9a6d3c11fbe7d5986177b2aa3d8032da4260cc33c3a794120
 DIST torment-3.0.2.tar.gz 33955 SHA256 
64f053082bd4a1dbc1f4218ed359c45c27dd58ea1a0b62322249cb6d06ab52f9 SHA512 
92361c2e4f5aed05e290be2de21648ec52040ffc77c693c177cbd99bbd98f443aa2adb5caf10bc8f7a44573c44a0148afe103d228af4ee00576bb9ff0a1d200f
 WHIRLPOOL 
d94c4785e93c6277ccd3d2ce68c650be00262f0451b04bb0cdc0e7d5ad84c27cc7a712e2219f4be3419c21f80b755593bc93ac11154b31fdd845b376caeab19c

diff --git a/dev-python/torment/torment-2.1.0.ebuild 
b/dev-python/torment/torment-2.1.0.ebuild
deleted file mode 100644
index f890bde..000
--- a/dev-python/torment/torment-2.1.0.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
-PYTHON_COMPAT=( python3_3 python3_4 )
-
-inherit distutils-r1
-
-DESCRIPTION="A Study in Fixture Based Testing Frameworking"
-HOMEPAGE="https://github.com/kumoru/torment;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-CDEPEND="dev-python/mypy[${PYTHON_USEDEP}]"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
-   )
-   test? (
-   ${CDEPEND}
-   dev-python/coverage[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="${CDEPEND}"
-
-python_compile_all() {
-   use doc && esetup.py build_sphinx
-}
-
-python_test() {
-   nosetests || die "Tests failed on ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-
-   distutils-r1_python_install_all
-}



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

2015-12-21 Thread Alex Brandt
commit: 522000c3bb733c84a16143d0002c5bfe55b2721c
Author: Alex Brandt  gentoo  org>
AuthorDate: Mon Dec 21 20:52:57 2015 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Mon Dec 21 20:52:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=522000c3

dev-python/torment: add version 3.0.2

Package-Manager: portage-2.2.26

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

diff --git a/dev-python/torment/Manifest b/dev-python/torment/Manifest
index 8b6e830..50e1bfc 100644
--- a/dev-python/torment/Manifest
+++ b/dev-python/torment/Manifest
@@ -1,3 +1,4 @@
 DIST torment-2.1.0.tar.gz 30608 SHA256 
d8d21efd1a30c0bb964b43e47b41cc261d4b2417b09fd3945090bf48fd3d0248 SHA512 
502a61372f61d653f98ed20e0d074d1c411cc33be08ae91fec4e7606b1d3d3b78fd4fee8b1908b4fc721e7fe6029400063e9a94830a589e572baf824e7e0a261
 WHIRLPOOL 
7fe54b057ea89823b1b861c61e771f02a8a66a755f5667c89728bfab8e52006524cc960fece75f77d00b1aa894e0f3853df59a79cddf70a28b27b08d31de856b
 DIST torment-3.0.0.tar.gz 33898 SHA256 
ad3ead69f1c9e5ec1dc92a83bceca186f0d6a4544f983222c32c4d0a5e7f3b45 SHA512 
1fac30a0e97a6505c7e9cbbfaa141e2378cf26345fd4679d6eff75a4472054771b2421b044f9ff0daa8671e1b27989508e7a9885dfb98e3a07bd3e842d4bbb77
 WHIRLPOOL 
353cd7a8b66f2936c5476e8e50e2f6428bdc6f4e0bdbb2ea99c93018ebe6587ad4d3c6310fd55fe21cbdefc3174425a34d10aa072cbc27ebcbe3f5f114f4c913
 DIST torment-3.0.1.tar.gz 33908 SHA256 
06f4aa429fa68255512cd9fffbaefad85a06afe4bbc5e3c293c33a72184fe46d SHA512 
c57451d18cf90204247054fcc9717d8b3587e8be38433d907f51703c3f571638793cc5078cc5ad9e0ffccd024251a086e2d1dd47ad92fea89cc65a8de6c2a7c1
 WHIRLPOOL 
50bc8f1fbcdf6553ecf21580b6e7df802235097ebad829cca1b964806e265fc401f7a5d4200267a9a6d3c11fbe7d5986177b2aa3d8032da4260cc33c3a794120
+DIST torment-3.0.2.tar.gz 33955 SHA256 
64f053082bd4a1dbc1f4218ed359c45c27dd58ea1a0b62322249cb6d06ab52f9 SHA512 
92361c2e4f5aed05e290be2de21648ec52040ffc77c693c177cbd99bbd98f443aa2adb5caf10bc8f7a44573c44a0148afe103d228af4ee00576bb9ff0a1d200f
 WHIRLPOOL 
d94c4785e93c6277ccd3d2ce68c650be00262f0451b04bb0cdc0e7d5ad84c27cc7a712e2219f4be3419c21f80b755593bc93ac11154b31fdd845b376caeab19c

diff --git a/dev-python/torment/torment-3.0.2.ebuild 
b/dev-python/torment/torment-3.0.2.ebuild
new file mode 100644
index 000..bafdaac
--- /dev/null
+++ b/dev-python/torment/torment-3.0.2.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=( python3_4 )
+
+inherit distutils-r1
+
+DESCRIPTION="A Study in Fixture Based Testing Frameworking"
+HOMEPAGE="https://github.com/kumoru/torment;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+CDEPEND="dev-python/mypy[${PYTHON_USEDEP}]"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${CDEPEND}
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}"
+
+python_compile_all() {
+   use doc && esetup.py build_sphinx
+}
+
+python_test() {
+   nosetests || die "Tests failed on ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+
+   distutils-r1_python_install_all
+}



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

2015-12-21 Thread Ian Stakenvicius
commit: 4d6609aa75ae9818644b38c0f4e36acff26f2692
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Mon Dec 21 22:22:23 2015 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Mon Dec 21 22:22:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d6609aa

app-text/calibre: version bump

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

Package-Manager: portage-2.2.24

 app-text/calibre/Manifest | 2 +-
 app-text/calibre/{calibre-2.43.0.ebuild => calibre-2.47.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/calibre/Manifest b/app-text/calibre/Manifest
index 69a4a7b..3e280ed 100644
--- a/app-text/calibre/Manifest
+++ b/app-text/calibre/Manifest
@@ -1,3 +1,3 @@
 DIST calibre-1.20.0.tar.xz 32430560 SHA256 
475e09b1be4b9977240cbbe6743ab79da4b1f1afe3fe6015d212d868e8f2fac4 SHA512 
84ac25080cf4948398b79f9a1af688cca9cf9a5a9200b2aad649f5fda1cd0556be4ade0c8b09ea6ffcc95654eac05b8f8ed6ea9830174bc150e64de85e31
 WHIRLPOOL 
61b6ecde2e3f8679c1afea95dcd152a94ce03522c06dff34b406a5705f6255243f0565fbb5f9bef3ac96d7127190bd1b4363233fa24fafcd0412e061201f6fe8
 DIST calibre-2.35.0.tar.xz 37470944 SHA256 
7d883c7ed5cf7c3c2e53c4d18e3a67c15d8a0d3425df57919adb57132860518f SHA512 
a693c23e93ad1086fe70b0cc7dcf43b1a9c004f045a3c2fac42f6a4b9f231d4f1e7b55c8bae133ac48389d4e233e245deb958365e9c0283cd8668f0f5a2326a2
 WHIRLPOOL 
b07308d7bb9803a3a882aaf4143d287352aafae69383276d6ee95f7b92a8f65c50c8a5cdc6c242ae87d8faf13ad830fcea9e27364749614219bb221a3d6ac36a
-DIST calibre-2.43.0.tar.xz 38556328 SHA256 
1156c78ab2a048272bd3e79920c65a4ab326507c668f9c550ef40ee30e470c41 SHA512 
76d6560a8c68647888f822cc80c259587498ea4680e9fdef67a406304fb7701a7e35d0f6f5dce2026e32c2461e968b3208cfb6ce8604be6be4c170e4aebb148a
 WHIRLPOOL 
0e7317bca7dbc87983864196d715b4e4f76ca33e0db4ce9ec4ec79d4c8efe223d621bd9d4001c8ace9ec5fb77c8ced01b52d5275a707e253b9ae93e709ffc81f
+DIST calibre-2.47.0.tar.xz 38924632 SHA256 
048681cf6cb09b136017c6c99a1f1d908c6fcc3cdb2d40455cb4af8725395d0c SHA512 
932ab2bae12ce128fa497bdd95d3c5f4f67e65bced5b73882f9b812cd9290c0a89c04c89ad3e1b421119c1ca88b5bfb7870a3060c91b5c8198e5ad709dbfdc96
 WHIRLPOOL 
15f4d3e19eafc57aabb526147926a4fa3343d340fcbc528df91ade6d82a7bfa6f993baee6224508c8dbf551d9640c16db71fc30c438675d09876b633dd3f6ea8

diff --git a/app-text/calibre/calibre-2.43.0.ebuild 
b/app-text/calibre/calibre-2.47.0.ebuild
similarity index 100%
rename from app-text/calibre/calibre-2.43.0.ebuild
rename to app-text/calibre/calibre-2.47.0.ebuild



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

2015-12-21 Thread Patrice Clement
commit: 4cb034ca11fa2d1ec5aa3f523da196808e35b604
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 21 23:41:55 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 21 23:43:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cb034ca

dev-python/nagiosplugin: Initial import. Fixes bug 568876.

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

 dev-python/nagiosplugin/Manifest  |  1 +
 dev-python/nagiosplugin/metadata.xml  | 13 
 dev-python/nagiosplugin/nagiosplugin-1.2.3.ebuild | 25 +++
 3 files changed, 39 insertions(+)

diff --git a/dev-python/nagiosplugin/Manifest b/dev-python/nagiosplugin/Manifest
new file mode 100644
index 000..b018c5d
--- /dev/null
+++ b/dev-python/nagiosplugin/Manifest
@@ -0,0 +1 @@
+DIST nagiosplugin-1.2.3.tar.gz 37570 SHA256 
9a1729d6479b71b1c7184e88a6214b00133953921df1be2d14ccb35a94a3c8dd SHA512 
3f3045db181acc144cb41871f2f67090a7b096d600c9cda7e4f9b86648d47319dca7c42b74670ba307c0bc60955eb33aefcde9c895e544bbb4c7ca1f80e8919d
 WHIRLPOOL 
2482a04ba7280973e9c4f8faedc4c54ca193bd1ff3d37c608dc4018dc2e39dd719e43edac7393c9102436ff8f5dacbeaa3df32c9523924aa6474ca20cdc83445

diff --git a/dev-python/nagiosplugin/metadata.xml 
b/dev-python/nagiosplugin/metadata.xml
new file mode 100644
index 000..f5bafd5
--- /dev/null
+++ b/dev-python/nagiosplugin/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  proxy-maintainers
+  
+ sautier.lo...@gmail.com
+ Louis Sautier
+  
+  
+ nagiosplugin
+ flyingcircus/nagiosplugin
+  
+

diff --git a/dev-python/nagiosplugin/nagiosplugin-1.2.3.ebuild 
b/dev-python/nagiosplugin/nagiosplugin-1.2.3.ebuild
new file mode 100644
index 000..9359a40
--- /dev/null
+++ b/dev-python/nagiosplugin/nagiosplugin-1.2.3.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="A class library for writing nagios-compatible plugins"
+HOMEPAGE="https://bitbucket.org/flyingcircus/nagiosplugin/ 
https://pypi.python.org/pypi/nagiosplugin/;
+if [[ ${PV} == "" ]] ; then
+   inherit mercurial
+   EHG_REPO_URI="https://bitbucket.org/flyingcircus/nagiosplugin/;
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="ZPL"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: net-nntp/nzbget/

2015-12-21 Thread Patrice Clement
commit: a6ff09193c9d0e564fc7d13cbb3a8c32ceb0aa7d
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Dec 22 00:02:37 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Dec 22 00:02:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ff0919

net-nntp/nzbget: Version bump. Fixes bug 550486.

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

 net-nntp/nzbget/Manifest   |   1 +
 net-nntp/nzbget/nzbget-15.0.ebuild | 104 +
 2 files changed, 105 insertions(+)

diff --git a/net-nntp/nzbget/Manifest b/net-nntp/nzbget/Manifest
index aa2c14f..144f5bb 100644
--- a/net-nntp/nzbget/Manifest
+++ b/net-nntp/nzbget/Manifest
@@ -1,2 +1,3 @@
 DIST nzbget-14.1.tar.gz 1332334 SHA256 
a16b816b61f7035cc373e9b77094ca474d5b7b7f7ceff5fa8818249181db4b18 SHA512 
fae938529bb3968c0161f63ec3af07f844a8128b61abf6298457a4878ac0d47541d76730c8a068509fa091b102de07c9d28dcd668a8192fcfac60980f69be56d
 WHIRLPOOL 
9e9636b67d0af7780d2cc8f897465f5a2e23cd8695b3bd982e3e9f78d68adb34f84faf59253044c7b2f95db737cf59207b35cf312d1f1825fe4b9ecce2e4014f
 DIST nzbget-14.2.tar.gz 1332612 SHA256 
bb24afb47dc01766c5e5c02d7565190082c6e13ffed565969a2ec52e21104677 SHA512 
0e1e9c1307927f6ac4772d9138901893a9782fad137756ca40617ea7e8dd7946f2927f3f5303d676d09920de0a005cb1313292fda0c5d0288d73fc8e0f949516
 WHIRLPOOL 
7fb9c5c44515e1ed4a02213af6f8a13e41452a85a710ba9e59483c8c95b9d9bc1f2c475f81d0a75ab982292fccd5ce797f2396fe09ec7339d31ea551f3c36a4e
+DIST nzbget-15.0.tar.gz 1466814 SHA256 
3ef13f3e5917e4cda19c4fc0cd37e79967a19b4e3448c239ff24e37712a6cc0a SHA512 
7233bea56f99e541155eac3e1d31f2603a407aee7055492c2bf20efc9b40a58e9e5f3b7ee7dada9278cb4bdc8b30a0e62f377235e12ac43c88f9111864d3a706
 WHIRLPOOL 
f8d53ef7637a09f1e98fe5866693bc99c96212f460b00072d5ac8164c59c9053ab8805262d97e136eccc14f6af9be220541b2ea22d01bd2ed191114cbfdcfac0

diff --git a/net-nntp/nzbget/nzbget-15.0.ebuild 
b/net-nntp/nzbget/nzbget-15.0.ebuild
new file mode 100644
index 000..a485783
--- /dev/null
+++ b/net-nntp/nzbget/nzbget-15.0.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils user
+
+MY_P=${P/_pre/-testing-r}
+
+DESCRIPTION="A command-line based binary newsgrapper supporting .nzb files"
+HOMEPAGE="http://nzbget.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="debug gnutls ncurses parcheck ssl zlib"
+
+RDEPEND="dev-libs/libxml2
+   ncurses? ( sys-libs/ncurses )
+   parcheck? (
+   app-arch/libpar2
+   dev-libs/libsigc++:2
+   )
+   ssl? (
+   gnutls? ( net-libs/gnutls )
+   !gnutls? ( dev-libs/openssl )
+   )
+   zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog README nzbget.conf )
+
+S=${WORKDIR}/${P/_pre*/-testing}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-14.0_pre1145-tinfo.patch
+
+   sed -i 's:^ScriptDir=.*:ScriptDir=/usr/share/nzbget/ppscripts:' 
nzbget.conf || die
+
+   sed \
+   -e 's:^MainDir=.*:MainDir=/var/lib/nzbget:' \
+   -e 's:^LockFile=.*:LockFile=/run/nzbget/nzbget.pid:' \
+   -e 's:^LogFile=.*:LogFile=/var/log/nzbget/nzbget.log:' \
+   -e 's:^WebDir=.*:WebDir=/usr/share/nzbget/webui:' \
+   -e 
's:^ConfigTemplate=.*:ConfigTemplate=/usr/share/nzbget/nzbget.conf:' \
+   -e 's:^DaemonUsername=.*:DaemonUsername=nzbget:' \
+   "${S}"/nzbget.conf > "${S}"/nzbgetd.conf || die
+
+   sed -i "/^dist_doc_DATA/d" Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_enable debug) \
+   $(use_enable ncurses curses) \
+   $(use_enable parcheck) \
+   $(use_enable ssl tls) \
+   $(use_enable zlib gzip) \
+   --with-tlslib=$(usex gnutls GnuTLS OpenSSL)
+}
+
+src_install() {
+   default
+
+   insinto /etc
+   doins nzbget.conf
+   doins nzbgetd.conf
+
+   keepdir /var/lib/nzbget/{dst,nzb,queue,tmp}
+   keepdir /var/log/nzbget
+
+   newinitd "${FILESDIR}"/nzbget.initd nzbget
+   newconfd "${FILESDIR}"/nzbget.confd nzbget
+}
+
+pkg_preinst() {
+   enewgroup nzbget
+   enewuser nzbget -1 -1 /var/lib/nzbget nzbget
+
+   fowners nzbget:nzbget /var/lib/nzbget/{dst,nzb,queue,tmp}
+   fperms 750 /var/lib/nzbget/{queue,tmp}
+   fperms 770 /var/lib/nzbget/{dst,nzb}
+
+   fowners nzbget:nzbget /var/log/nzbget
+   fperms 750 /var/log/nzbget
+
+   fowners nzbget:nzbget /etc/nzbgetd.conf
+   fperms 640 /etc/nzbgetd.conf
+}
+
+pkg_postinst() {
+   if [[ -z ${REPLACING_VERSIONS} ]] ; then
+   elog
+   elog "Please add users that you want to be able to 

[gentoo-commits] repo/gentoo:master commit in: profiles/, games-fps/industri/, games-puzzle/krystaldrop/, ...

2015-12-21 Thread Michael Sterrett
commit: 0ee810ed8842319135f58a44e2d39b3b773b3a28
Author: Michael Sterrett  gentoo  org>
AuthorDate: Mon Dec 21 22:57:13 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Mon Dec 21 22:57:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ee810ed

Revert "mask games-fps/ut2004-ultraduel for removal"

This reverts commit cf00534e64f93c0992faf2584a970f1910afcc5a.

 dev-games/ogre/ogre-1.9.0-r1.ebuild|  2 +-
 eclass/games.eclass|  8 ++--
 games-arcade/supertux/Manifest |  1 -
 games-fps/alephone/Manifest|  1 -
 games-fps/doomsday/Manifest|  1 -
 games-fps/freedoom/Manifest|  1 -
 games-fps/industri/industri-1.01.ebuild| 23 +++-
 games-fps/openarena/openarena-0.8.8.ebuild |  2 +-
 games-fps/quake3/quake3-1.36-r1.ebuild | 43 --
 games-fps/quake3/quake3-.ebuild| 25 +++--
 games-fps/quakeforge/quakeforge-0.7.2.ebuild   |  4 +-
 games-fps/qudos/qudos-0.40.1.ebuild|  2 +-
 .../red-blue-quake2/red-blue-quake2-0.1.ebuild | 26 ++---
 .../ut2004-hamsterbash/ut2004-hamsterbash-1.ebuild |  2 +-
 games-puzzle/krystaldrop/krystaldrop-0.7.2.ebuild  | 15 
 games-strategy/ufo-ai/Manifest |  2 -
 games-strategy/widelands/widelands-0.17.ebuild | 21 +--
 profiles/package.mask  |  5 ---
 18 files changed, 106 insertions(+), 78 deletions(-)

diff --git a/dev-games/ogre/ogre-1.9.0-r1.ebuild 
b/dev-games/ogre/ogre-1.9.0-r1.ebuild
index 5873f01..9b79034 100644
--- a/dev-games/ogre/ogre-1.9.0-r1.ebuild
+++ b/dev-games/ogre/ogre-1.9.0-r1.ebuild
@@ -92,7 +92,7 @@ src_configure() {
$(cmake-utils_use examples OGRE_BUILD_SAMPLES)
$(cmake-utils_use examples OGRE_INSTALL_SAMPLES_SOURCE)
-DOGRE_BUILD_TESTS=FALSE
-   -DOGRE_CONFIG_THREADS=$(usex threads 2 0)
+   $(usex threads "-DOGRE_CONFIG_THREADS=2" 
"-DOGRE_CONFIG_THREADS=0")
$(cmake-utils_use tools OGRE_BUILD_TOOLS)
$(cmake-utils_use zip OGRE_CONFIG_ENABLE_ZIP)
)

diff --git a/eclass/games.eclass b/eclass/games.eclass
index 2aa6461..7d231e1 100644
--- a/eclass/games.eclass
+++ b/eclass/games.eclass
@@ -24,7 +24,7 @@
 if [[ -z ${_GAMES_ECLASS} ]]; then
 _GAMES_ECLASS=1
 
-inherit multilib toolchain-funcs eutils user
+inherit base multilib toolchain-funcs eutils user
 
 case ${EAPI:-0} in
0|1) EXPORT_FUNCTIONS pkg_setup src_compile pkg_preinst pkg_postinst ;;
@@ -302,14 +302,12 @@ games_src_configure() {
 
 # @FUNCTION: games_src_compile
 # @DESCRIPTION:
-# This function is exported as src_compile().
+# Runs base_src_make(). This function is exported as src_compile().
 games_src_compile() {
case ${EAPI:-0} in
0|1) games_src_configure ;;
esac
-   if [[ -f Makefile || -f GNUmakefile || -f makefile ]]; then
-   emake "$@" || die "died running emake, $FUNCNAME"
-   fi
+   base_src_make
 }
 
 # @FUNCTION: games_pkg_preinst

diff --git a/games-arcade/supertux/Manifest b/games-arcade/supertux/Manifest
index 9bd66ed..f487be0 100644
--- a/games-arcade/supertux/Manifest
+++ b/games-arcade/supertux/Manifest
@@ -1,2 +1 @@
 DIST supertux-0.1.3.tar.bz2 6715265 SHA256 
0092588351776626955339caaa62d12ce5954bb80c5f6952f60a122f53c2ad97 SHA512 
75848583f9f9b9d0f36fec77812501875420fde8befe1ff9ac4ea7613f4d9464b2eb460c2ed89b4dc31e697fbb449a5431c72675e2820d13f5c42653dc07ad98
 WHIRLPOOL 
bb8998845bee7f33a7aff94109d9767d000c89df6c670a1ccb85c4e9158a8ce6c4064f89587b9ea40d9ba1a854b9f5bba82ccc7dcac6dedcdb337cfaa1777898
-DIST supertux-0.3.5a.tar.bz2 72859723 SHA256 
71c34502b5879a4130fb111ac754967c3a632ef3017f30883a4d496d87bef8c7 SHA512 
f86c8ebe8aa0f789fc28a6634afcfc2a5c983973af677a4d7a5d80a98b732800f30c71e353e4ae044178baf4ca3abfcd08c4af7fe5c7e318c670bd7f8a00e69c
 WHIRLPOOL 
5702db36ab11346b78bfa3237bf86396bc67763ace85eda6d660e35b346020e3e3ca7d1d0ecc242d086ba88d5e9190f0adb794a725bd9cf81ac3e3545a133fbd

diff --git a/games-fps/alephone/Manifest b/games-fps/alephone/Manifest
index ce0458f..4e0f40d 100644
--- a/games-fps/alephone/Manifest
+++ b/games-fps/alephone/Manifest
@@ -1,3 +1,2 @@
 DIST AlephOne-20100424.tar.bz2 3180896 SHA256 
d97089890ce99952027eaf6185baa6cb01b26c2882dfca9e68816dfe7076a5e6 SHA512 
b246b662f4bf820238c09fbb6bc55289d0db0a9b5ba15ab2b91a53f93666e81583834fd8a64497074a2e270a2055de24b3be93bb56d58715f9d213b1f4c92494
 WHIRLPOOL 
3074f6c4ba4925b8a0f7718bdfb0d1084155421397a7604febfeae473635b970b3842152b9a3e200f2bc642790a0dc51e689aa3b18de2235d5697105060c7f93
 DIST AlephOne-20120514.tar.bz2 4716348 SHA256 
6a7797af74cf3fae7f5505e64ffe57c56f7331521cb569bcc8b7d7041cb3718b SHA512 

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

2015-12-21 Thread Amadeusz Piotr Żołnowski
commit: 3153480b7ce8176cdd1be5021e77f0b4438096e2
Author: Andrzej Pauli  gmail  com>
AuthorDate: Mon Dec 21 21:53:30 2015 +
Commit: Amadeusz Piotr Żołnowski  gentoo  org>
CommitDate: Mon Dec 21 21:53:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3153480b

media-video/qgifer: Fix build with >=media-libs/opencv-3

Patch qgifer for build with >=media-libs/opencv-3.

Gentoo-bug: 568538

 .../qgifer/files/qgifer-0.2.1-opencv3.patch| 44 +
 media-video/qgifer/qgifer-0.2.1-r1.ebuild  | 46 ++
 2 files changed, 90 insertions(+)

diff --git a/media-video/qgifer/files/qgifer-0.2.1-opencv3.patch 
b/media-video/qgifer/files/qgifer-0.2.1-opencv3.patch
new file mode 100644
index 000..89c79ff
--- /dev/null
+++ b/media-video/qgifer/files/qgifer-0.2.1-opencv3.patch
@@ -0,0 +1,44 @@
+diff -Naur qgifer-0.2.1-source/CMakeLists.txt 
qgifer-0.2.1-modified/CMakeLists.txt
+--- qgifer-0.2.1-source/CMakeLists.txt 2013-06-04 18:33:16.0 +0200
 qgifer-0.2.1-modified/CMakeLists.txt   2015-12-19 20:58:13.772808845 
+0100
+@@ -35,7 +35,7 @@
+   SET(GIF_INCLUDE_DIR "C:\\Program Files\\GnuWin32\\include")
+ ENDIF(WIN32)
+ 
+-FIND_PACKAGE( OpenCV REQUIRED core highgui imgproc )
++FIND_PACKAGE( OpenCV REQUIRED core highgui imgproc videoio)
+ FIND_PACKAGE(Qt4 REQUIRED)
+ FIND_PACKAGE(GIF REQUIRED)
+ 
+@@ -148,9 +148,9 @@
+ QT4_ADD_RESOURCES(RESOURCES_RCC ${RESOURCES})
+ 
+ IF(WIN32)
+-  SET( OPENCV_LIBS "-lopencv_core244 -lopencv_highgui244 
-lopencv_imgproc244" )
++  SET( OPENCV_LIBS "-lopencv_core244 -lopencv_highgui244 
-lopencv_imgproc244 -lopencv_videoio244" )
+ ELSE(WIN32)
+-  SET( OPENCV_LIBS "-lopencv_core -lopencv_highgui -lopencv_imgproc" )
++  SET( OPENCV_LIBS "-lopencv_core -lopencv_highgui -lopencv_imgproc 
-lopencv_videoio" )
+ ENDIF(WIN32)
+ 
+ SET( GIF_LIBS "-lgif" )   
+@@ -207,7 +207,7 @@
+ #SET(CPACK_SOURCE_PACKAGE_FILE_NAME 
"${PACKAGE_NAME}_${QGIFER_VERSION_MAJOR}.${QGIFER_VERSION_MINOR}.${QGIFER_VERSION_PATCH}")
+  
+ #set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) #za pierwszym razem, pozniej dodano | 
dla nowszych opencv
+-SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.1.3), libc6 (>= 2.3.6-6~), 
libgcc1 (>= 1:4.1.1), libgif4 (>= 4.1.4), libopencv-core2.3 | 
libopencv-core2.4, libopencv-highgui2.3 | libopencv-highgui2.4, 
libopencv-imgproc2.3 | libopencv-imgproc2.4, libqtcore4 (>= 4:4.7.0~beta1), 
libqtgui4 (>= 4:4.6.1), libstdc++6 (>= 4.1.1)")
++SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.1.3), libc6 (>= 2.3.6-6~), 
libgcc1 (>= 1:4.1.1), libgif4 (>= 4.1.4), libopencv-core2.3 | libopencv-core2.4 
| libopencv-core3.0, libopencv-highgui2.3 | libopencv-highgui2.4 | 
libopencv-highgui3.0, libopencv-imgproc2.3 | libopencv-imgproc2.4 | 
libopencv-imgproc3.0, libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.6.1), 
libstdc++6 (>= 4.1.1)")
+  
+ SET(CPACK_DEBIAN_PACKAGE_PRIORITY "optional")
+ SET(CPACK_DEBIAN_PACKAGE_SECTION "video")
+diff -Naur qgifer-0.2.1-source/src/frameplayer.h 
qgifer-0.2.1-modified/src/frameplayer.h
+--- qgifer-0.2.1-source/src/frameplayer.h  2013-06-04 18:14:55.0 
+0200
 qgifer-0.2.1-modified/src/frameplayer.h2015-12-19 21:01:44.419870869 
+0100
+@@ -23,6 +23,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

diff --git a/media-video/qgifer/qgifer-0.2.1-r1.ebuild 
b/media-video/qgifer/qgifer-0.2.1-r1.ebuild
new file mode 100644
index 000..2c646a9
--- /dev/null
+++ b/media-video/qgifer/qgifer-0.2.1-r1.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 cmake-utils
+
+DESCRIPTION="A video-based animated GIF creator"
+HOMEPAGE="https://sourceforge.net/projects/qgifer/;
+SRC_URI="mirror://sourceforge/${PN}/${P}-source.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="debug imagemagick opencv3"
+
+RDEPEND="media-libs/giflib:0
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   imagemagick? ( media-gfx/imagemagick:0 )
+   !opencv3? ( >=media-libs/opencv-2.4.9[ffmpeg] 
=media-libs/opencv-3.0.0[ffmpeg] )
+   virtual/ffmpeg:0"
+
+DEPEND="${RDEPEND}
+   >=dev-util/cmake-2.8:0"
+
+S="${WORKDIR}/${P}-source"
+
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-desktop.patch
+
+   if use opencv3 ; then
+   epatch "${FILESDIR}"/${P}-opencv3.patch
+   fi
+}
+
+src_configure() {
+   local mycmakeargs
+
+   use debug && mycmakeargs=( -DRELEASE_MODE=OFF )
+
+   cmake-utils_src_configure
+}



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

2015-12-21 Thread Patrice Clement
commit: 46790bbc48a6eb09204fda13c861bfb26d72adb3
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 21 22:25:21 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 21 22:26:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46790bbc

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

 app-admin/mongo-tools/Manifest |   1 +
 ...tools-3.0.7.ebuild => mongo-tools-3.0.8.ebuild} |   0
 app-admin/rsyslog/rsyslog-8.13.0.ebuild|   2 +-
 app-admin/setools/metadata.xml |   5 +-
 app-backup/snapper/Manifest|   3 -
 app-backup/snapper/snapper-0.2.3-r1.ebuild |  70 
 app-backup/snapper/snapper-0.2.4.ebuild|  70 
 app-backup/snapper/snapper-0.2.6.ebuild|  70 
 app-benchmarks/iozone/Manifest |   1 +
 app-benchmarks/iozone/iozone-3.430.ebuild  |  73 
 app-benchmarks/siege/Manifest  |   1 +
 app-benchmarks/siege/siege-3.1.3.ebuild|  50 +++
 app-editors/emacs/Manifest |   2 +
 app-editors/emacs/emacs-18.59-r11.ebuild   | 149 +++
 app-editors/emacs/emacs-23.4-r14.ebuild| 349 
 app-editors/hexedit/hexedit-1.2.13.ebuild  |   4 +-
 app-editors/jedit/jedit-5.2.0.ebuild   |   2 +-
 app-editors/nano/nano-2.4.3.ebuild |   2 +-
 .../cloud-init/cloud-init-0.7.6-r1.ebuild  |   2 +-
 app-emulation/virtualbox-additions/Manifest|   2 +-
 ...8.ebuild => virtualbox-additions-5.0.12.ebuild} |   0
 app-emulation/virtualbox-bin/Manifest  |   8 +-
 ebuild => virtualbox-bin-5.0.12.104815.ebuild} |   0
 app-emulation/virtualbox-extpack-oracle/Manifest   |   2 +-
 ...virtualbox-extpack-oracle-5.0.12.104815.ebuild} |   0
 app-emulation/virtualbox-guest-additions/Manifest  |   2 +-
 ...ld => virtualbox-guest-additions-5.0.12.ebuild} |   0
 app-emulation/virtualbox-modules/Manifest  |   2 +-
 ...0.8.ebuild => virtualbox-modules-5.0.12.ebuild} |   0
 app-emulation/virtualbox/Manifest  |   2 +-
 ...albox-5.0.8.ebuild => virtualbox-5.0.12.ebuild} |   0
 app-laptop/tp_smapi/tp_smapi-0.41-r1.ebuild|  74 
 app-pda/libimobiledevice/Manifest  |   1 +
 .../libimobiledevice-1.1.6-r1.ebuild   |  91 
 .../libimobiledevice/libimobiledevice-1.2.0.ebuild |  91 
 app-pda/libplist/Manifest  |   1 +
 app-pda/libplist/libplist-1.11-r2.ebuild   |  79 
 app-pda/libplist/libplist-1.12.ebuild  |  79 
 .../eclass-manpages-20150814-r1.ebuild |  40 ++
 .../gentoolkit/files/0.3.1-setup.py-print.patch|  29 ++
 .../gentoolkit/gentoolkit-0.3.0.9-r2.ebuild|   3 +-
 app-portage/gentoolkit/gentoolkit-0.3.1.ebuild |   3 +-
 app-shells/mksh/Manifest   |   1 +
 app-shells/mksh/{mksh-51.ebuild => mksh-52.ebuild} |   0
 app-text/asciidoc/asciidoc-.ebuild |   2 +-
 app-text/calibre/Manifest  |   2 +-
 ...calibre-2.43.0.ebuild => calibre-2.47.0.ebuild} |   0
 app-text/dvipng/dvipng-1.15.ebuild |   2 +-
 app-text/rnv/metadata.xml  |   5 -
 dev-db/barman/Manifest |   1 +
 .../{barman-1.4.1.ebuild => barman-1.5.0.ebuild}   |   0
 dev-db/mongodb/Manifest|   1 +
 .../{mongodb-3.0.7.ebuild => mongodb-3.0.8.ebuild} |   0
 dev-java/colt/colt-1.2.0-r2.ebuild |  12 +-
 dev-java/javacup/metadata.xml  |   6 -
 dev-java/tomcat-native/tomcat-native-1.2.2.ebuild  |   2 +-
 dev-lang/hy/hy-0.11.0-r1.ebuild|  43 ++
 dev-lang/moarvm/Manifest   |   1 +
 ...moarvm-2015.07.ebuild => moarvm-2015.11.ebuild} |   0
 dev-lang/nqp/Manifest  |   1 +
 dev-lang/nqp/nqp-2015.11.ebuild|  66 +++
 dev-lang/parrot/Manifest   |   1 +
 .../{parrot-7.5.0.ebuild => parrot-7.11.0.ebuild}  |   0
 dev-lang/pocl/Manifest |   1 +
 dev-lang/pocl/pocl-0.12.ebuild |  32 ++
 dev-lang/rakudo/Manifest   |   1 +
 ...kudo-2015.07.2.ebuild => rakudo-2015.11.ebuild} |   0
 dev-libs/libcroco/Manifest |   1 +
 ...bcroco-0.6.10.ebuild => libcroco-0.6.11.ebuild} |   0
 dev-libs/libev/Manifest|   2 +-
 dev-libs/libev/libev-4.18.ebuild   |  48 ---
 .../libev/{libev-4.20.ebuild => libev-4.22.ebuild} |   0
 dev-libs/liblinear/liblinear-210-r1.ebuild |   2 +-
 dev-libs/liblognorm/liblognorm-1.1.2-r1.ebuild |   2 +-
 dev-libs/totem-pl-parser/Manifest  |   1 +
 .../totem-pl-parser/totem-pl-parser-3.10.6.ebuild  |  64 +++
 dev-libs/userspace-rcu/Manifest

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

2015-12-21 Thread Patrice Clement
commit: 724b26aa52aba4abf592a7cfbebbf10ca8bb6a99
Author: Marc Joliet  gmx  de>
AuthorDate: Mon Dec 21 19:29:38 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 21 22:26:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=724b26aa

app-text/asciidoc-: fix a typo

Package-Manager: portage-2.2.24
Signed-off-by: Marc Joliet  gmx.de>

 app-text/asciidoc/asciidoc-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/asciidoc/asciidoc-.ebuild 
b/app-text/asciidoc/asciidoc-.ebuild
index 81bb1da..27a930e 100644
--- a/app-text/asciidoc/asciidoc-.ebuild
+++ b/app-text/asciidoc/asciidoc-.ebuild
@@ -92,7 +92,7 @@ src_install() {
dosym ../../../asciidoc/images /usr/share/doc/${PF}/examples
fi
 
-   readme.gentoo.create_doc
+   readme.gentoo_create_doc
dodoc BUGS CHANGELOG README docbook-xsl/asciidoc-docbook-xsl.txt \
dblatex/dblatex-readme.txt 
filters/code/code-filter-readme.txt
 }



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

2015-12-21 Thread Matt Thode
commit: bb4c1d3a6ad18f5ef1b10db1c0a32e0201091979
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Dec 21 23:23:40 2015 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Dec 21 23:23:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb4c1d3a

app-admin/glance: bup

Package-Manager: portage-2.2.24

 app-admin/glance/Manifest |   1 +
 app-admin/glance/glance-11.0.1.ebuild | 228 ++
 2 files changed, 229 insertions(+)

diff --git a/app-admin/glance/Manifest b/app-admin/glance/Manifest
index e9b277f..562e738 100644
--- a/app-admin/glance/Manifest
+++ b/app-admin/glance/Manifest
@@ -1,3 +1,4 @@
 DIST glance-11.0.0.tar.gz 1565001 SHA256 
35abd3af08b97a56556fdd1a68c61fcfa99ead6354f746f8f7cdc4517e90084e SHA512 
33ceab2c7f52f5ce92b2bb33732697a85e4bdf552ca9d08bb7b21430ef942b545614de9b834bdd455b0544474217675731b77cded7218c56ef44274c29a97f47
 WHIRLPOOL 
a256b0525f8a42e588a1d7cce4a6add919b9bd31752560dc7664814178fb4b3c952bfd7ec5d0d40932dc39c380c866561f9cb5ed1383482d4320f5417179c028
+DIST glance-11.0.1.tar.gz 1571617 SHA256 
357d8cc17b23aefce8c53c9230a26db504d8039baf7e07d8ab9448ce2ceaccf3 SHA512 
d43e79700179bbef39d82f8baa378c377f391e7bbd9022ec9e399379fb026be36b06b7ad7b89e39cb0b2a876111b451ad1acf3ad27cead5b58ce02106867bfa6
 WHIRLPOOL 
bbd70deae3ac5b3d549fcca20e666d1ee3f240d59556712783ff4bb8fe780c0c06ff1344476a7a036aa5e99afcdc3a369a7bf37717f17c42cc02e5f3b477
 DIST glance-2015.1.1.tar.gz 1102359 SHA256 
5c5714264c4ad9c3d178b983899b54f69f138505ddd77e13141dc5f3d1598ebe SHA512 
d9233b78174ec0f84b317abf7d26153a7e3ead25b4ebc31acbe5d0806b6877da5875de52ee0742dcbdd5fd3d23cb0240208f6fd57fa59cc403ad228ac85f2a0f
 WHIRLPOOL 
69a4cd27b4ac57a47523ceb4b8993569e7af2bb8f3e64373d98b7c72450bd587c6da96d33903dcbf44e02f89ea563d116d9d2dc90d4a0f472eca89963a87
 DIST glance-2015.1.2.tar.gz 1108933 SHA256 
e46bc6648a74a643cef3825dcd44c7e275ed3385b96cab83ef50c4c514932541 SHA512 
0f8b8dbc3c507a47ad0873f35ec2212903d7e419b61c0298f77661f89a9718e3604786d52976860c78841fe0a94ad8fc1fe99514183d2b29ed414efe448e590a
 WHIRLPOOL 
df8ba6586b2f71c5d7ecb252b80e6c6de6f08df1029576fc8b2fb2a68633f5ce76de1334949af955e85c39e9f1df25b2f8763837ef8efa228b29559dc34be863

diff --git a/app-admin/glance/glance-11.0.1.ebuild 
b/app-admin/glance/glance-11.0.1.ebuild
new file mode 100644
index 000..c875e4f
--- /dev/null
+++ b/app-admin/glance/glance-11.0.1.ebuild
@@ -0,0 +1,228 @@
+# 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 user
+
+DESCRIPTION="Services for discovering, registering, and retrieving VM images"
+HOMEPAGE="https://launchpad.net/glance;
+SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc mysql postgres +sqlite +swift test"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+CDEPEND=">=dev-python/pbr-1.6.0[${PYTHON_USEDEP}]"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+   test? (
+   ${RDEPEND}
+   >=dev-python/Babel-1.3[${PYTHON_USEDEP}]
+   <=dev-python/Babel-2.1.1[${PYTHON_USEDEP}]
+   >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
+   <=dev-python/coverage-4.0.3[${PYTHON_USEDEP}]
+   >=dev-python/fixtures-1.3.1[${PYTHON_USEDEP}]
+   <=dev-python/fixtures-1.4.0-r[${PYTHON_USEDEP}]
+   >=dev-python/mox3-0.7.0[${PYTHON_USEDEP}]
+   <=dev-python/mox3-0.12.0[${PYTHON_USEDEP}]
+   >=dev-python/mock-1.2[${PYTHON_USEDEP}]
+   <=dev-python/mock-1.3.0[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
+   !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
+   =dev-python/requests-2.5.2[${PYTHON_USEDEP}]
+   !~dev-python/requests-2.8.0[${PYTHON_USEDEP}]
+   <=dev-python/requests-2.8.1[${PYTHON_USEDEP}]
+   >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
+   <=dev-python/testrepository-0.0.20[${PYTHON_USEDEP}]
+   >=dev-python/testresources-0.2.4[${PYTHON_USEDEP}]
+   <=dev-python/testresources-1.0.0-r[${PYTHON_USEDEP}]
+   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
+   <=dev-python/testscenarios-0.5[${PYTHON_USEDEP}]
+   >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}]
+   <=dev-python/testtools-1.8.1[${PYTHON_USEDEP}]
+   >=dev-python/psutil-1.1.1[${PYTHON_USEDEP}]
+   =dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
+   <=dev-python/oslotest-2.0.0[${PYTHON_USEDEP}]
+   >=dev-python/pymysql-0.6.2[${PYTHON_USEDEP}]
+   <=dev-python/pymysql-0.6.7[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.5[${PYTHON_USEDEP}]
+   

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

2015-12-21 Thread Amadeusz Piotr Żołnowski
commit: 5a129c27220c4bcddecac48b0b8ac84e3f11cc56
Author: Andrzej Pauli  gmail  com>
AuthorDate: Mon Dec 21 21:59:17 2015 +
Commit: Amadeusz Piotr Żołnowski  gentoo  org>
CommitDate: Mon Dec 21 21:59:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a129c27

media-video/qgifer: Add missing description of opencv3 flag

 media-video/qgifer/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-video/qgifer/metadata.xml b/media-video/qgifer/metadata.xml
index 0f6f89d..01ae246 100644
--- a/media-video/qgifer/metadata.xml
+++ b/media-video/qgifer/metadata.xml
@@ -12,6 +12,7 @@


Use imagemagick for image 
operations
+   Use opencv-3.* for video operations 
instead opencv-2.*


qgifer



[gentoo-commits] proj/tinderbox-cluster:master commit in: pym/tbc/

2015-12-21 Thread Magnus Granberg
commit: 8f4a556c399d1efd129a5a339c1d65e0801d1471
Author: Magnus Granberg  gentoo  org>
AuthorDate: Mon Dec 21 22:53:31 2015 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Mon Dec 21 22:53:31 2015 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=8f4a556c

add support for irker

 pym/tbc/build_log.py |  7 ++-
 pym/tbc/irk.py   | 28 
 2 files changed, 34 insertions(+), 1 deletion(-)

diff --git a/pym/tbc/build_log.py b/pym/tbc/build_log.py
index bbe35d4..52db083 100644
--- a/pym/tbc/build_log.py
+++ b/pym/tbc/build_log.py
@@ -19,7 +19,7 @@ from _emerge.main import parse_opts
 portage.proxy.lazyimport.lazyimport(globals(),
'tbc.actions:action_info,load_emerge_config',
 )
-
+from tbc.irk import send_irk
 from tbc.qachecks import check_repoman, repoman_full
 from tbc.text import get_log_text_dict
 from tbc.readconf import read_config_settings
@@ -301,6 +301,11 @@ def add_buildlog_main(settings, pkg, trees):
log_msg = "Package: %s:%s is logged." % (pkg.cpv, pkg.repo,)
add_logs(session, log_msg, "info", config_id)
print("\n>>> Logging %s:%s\n" % (pkg.cpv, pkg.repo,))
+   if build_log_dict['fail']:
+   msg = "Package: %s Repo: %s FAILD Weblink 
http://foo.gg.oo/buildpackage/%s\n; % (pkg.cpv, pkg.repo, log_id,)
+   else:
+   msg = "Package: %s Repo: %s PASS Weblink 
http://foo.gg.oo/buildpackage/%s\n; % (pkg.cpv, pkg.repo, log_id,)
+   send_irk(msg)
session.close
 
 def log_fail_queru(session, build_dict, settings):

diff --git a/pym/tbc/irk.py b/pym/tbc/irk.py
new file mode 100644
index 000..01765c7
--- /dev/null
+++ b/pym/tbc/irk.py
@@ -0,0 +1,28 @@
+from __future__ import unicode_literals
+
+import json
+import socket
+import sys
+
+DEFAULT_SERVER = ("192.168.0.5", 6659)
+
+def connect(server = DEFAULT_SERVER):
+   return socket.create_connection(server)
+
+def send(s, target, message):
+   data = {"to": target, "privmsg" : message}
+   s.sendall(json.dumps(data).encode('ascii'))
+
+def irk(target, message, server = DEFAULT_SERVER):
+   s = connect(server)
+   if "irc:" not in target and "ircs:" not in target:
+   target = "irc://chat.freenode.net/{0}".format(target)
+   send(s, target, message)
+   s.close()
+
+def send_irk(msg):
+   target = "tinderbox-cluster"
+   try:
+   irk(target, msg)
+   except socket.error as e:
+   sys.stderr.write("irk: write to server failed: %r\n" % e)
\ No newline at end of file



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

2015-12-21 Thread Patrice Clement
commit: b5bff6be20827467a238f3cc639f33e2f985a2e9
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 21 23:53:16 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 21 23:53:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5bff6be

Merge remote-tracking branch 'github/pr/502'. Fixes bug 568958.

 net-firewall/fwknop/fwknop-2.6.7-r2.ebuild | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)



[gentoo-commits] repo/gentoo:master commit in: net-firewall/fwknop/

2015-12-21 Thread Patrice Clement
commit: 73fda1f16f2b7a5d388997dbef83f7670fc792fe
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Mon Dec 21 15:59:38 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 21 15:59:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73fda1f1

net-firewall/fwknop: re-enable in-source build wrt bug 568958

Otherwise Python C extension fails to build because it links against fko
library built during src_compile stage. With out-of-source build this library
resides in a separate directory from sources, thus it cannot be found during
Python module compilation by normal means.

This problem didn't catch my attention earlier because build failure is only
reproducible if there is no fko library installed in the system from a previous
version of this package.

Gentoo-Bug: 568958

Package-Manager: portage-2.2.24

 net-firewall/fwknop/fwknop-2.6.7-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-firewall/fwknop/fwknop-2.6.7-r2.ebuild 
b/net-firewall/fwknop/fwknop-2.6.7-r2.ebuild
index 50e95fe..a5bfe67 100644
--- a/net-firewall/fwknop/fwknop-2.6.7-r2.ebuild
+++ b/net-firewall/fwknop/fwknop-2.6.7-r2.ebuild
@@ -5,6 +5,7 @@
 EAPI=5
 
 AUTOTOOLS_AUTORECONF=1
+AUTOTOOLS_IN_SOURCE_BUILD=1
 DISABLE_AUTOFORMATTING=1
 
 DISTUTILS_OPTIONAL=1



[gentoo-commits] repo/gentoo:master commit in: games-action/lugaru/

2015-12-21 Thread Michael Sterrett
commit: af967eff09687b8f842ade045147baf1819652c4
Author: Michael Sterrett  gentoo  org>
AuthorDate: Mon Dec 21 22:31:59 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Mon Dec 21 22:32:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af967eff

make pgkcheck happy about SRC_URI

Package-Manager: portage-2.2.24

 games-action/lugaru/lugaru-20151204.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-action/lugaru/lugaru-20151204.ebuild 
b/games-action/lugaru/lugaru-20151204.ebuild
index bedc3cc..9edc210 100644
--- a/games-action/lugaru/lugaru-20151204.ebuild
+++ b/games-action/lugaru/lugaru-20151204.ebuild
@@ -7,7 +7,7 @@ inherit eutils cmake-utils games
 
 DESCRIPTION="3D arcade with unique fighting system and anthropomorphic 
characters"
 HOMEPAGE="https://bitbucket.org/osslugaru/lugaru/wiki/Home;
-SRC_URI="${P}.tar.bz2"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
 
 LICENSE="GPL-2+ free-noncomm CC-BY-SA-3.0"
 SLOT="0"



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

2015-12-21 Thread Michael Sterrett
commit: 4cbbcc0527c28ded5ab96ea192d3e06dd885fd8c
Author: Michael Sterrett  gentoo  org>
AuthorDate: Mon Dec 21 22:58:59 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Mon Dec 21 22:58:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cbbcc05

Mask games-fps/ut2004-ultraduel for removal

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 0c7b60e..c92fd59 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Michael Sterrett  (21 Dec 2015)
+# Vanished from the internet. (bug #561148)
+# Masked for removal on 20160120
+games-fps/ut2004-ultraduel
+
 # Ulrich Müller  (21 Dec 2015)
 # Masked for testing, see bug #448242.
 =sci-mathematics/maxima-5.37.3-r2



[gentoo-commits] repo/gentoo:master commit in: net-firewall/fwknop/

2015-12-21 Thread Patrice Clement
commit: d4ae6dbb6ed499423d516e57f5e545a063f98720
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Mon Dec 21 16:14:49 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 21 16:14:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4ae6dbb

net-firewall/fwknop: do not call distutils-r1_src_prepare

Firstly, this helps to avoid potential problems with double patching
because both autotools-utils_src_prepare and distutils-r1_src_prepare
try to apply patches from PATCHES variable and call epatch_user.

Secondly, fwknop's Python module does not need any special stuff that
distutils-r1_src_prepare does. On the contrary, without extra copying
of Python files, the build is happening the way it is supported and
expected by upstream.

Package-Manager: portage-2.2.24

 net-firewall/fwknop/fwknop-2.6.7-r2.ebuild | 5 -
 1 file changed, 5 deletions(-)

diff --git a/net-firewall/fwknop/fwknop-2.6.7-r2.ebuild 
b/net-firewall/fwknop/fwknop-2.6.7-r2.ebuild
index a5bfe67..582a81b 100644
--- a/net-firewall/fwknop/fwknop-2.6.7-r2.ebuild
+++ b/net-firewall/fwknop/fwknop-2.6.7-r2.ebuild
@@ -77,11 +77,6 @@ src_prepare() {
fi
 
autotools-utils_src_prepare
-
-   if use python; then
-   cd "${S}"/python || die
-   distutils-r1_src_prepare
-   fi
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: www-misc/shellinabox/

2015-12-21 Thread Patrice Clement
commit: 4c8dd3382e2fb91346681b935c40c1b858dc4fd4
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Dec 22 00:26:38 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Dec 22 00:26:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c8dd338

www-misc/shellinabox: Stable for ppc. Fixes security bug 567316.

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

 www-misc/shellinabox/shellinabox-2.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-misc/shellinabox/shellinabox-2.19.ebuild 
b/www-misc/shellinabox/shellinabox-2.19.ebuild
index 5c5fa6c..d8f3e66 100644
--- a/www-misc/shellinabox/shellinabox-2.19.ebuild
+++ b/www-misc/shellinabox/shellinabox-2.19.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.zip -> 
${P}.zip"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 ~x86"
 IUSE="+ssl +pam"
 
 RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: games-fps/red-blue-quake2/, games-strategy/widelands/, games-fps/openarena/, ...

2015-12-21 Thread Michael Sterrett
commit: cf00534e64f93c0992faf2584a970f1910afcc5a
Author: Michael Sterrett  gentoo  org>
AuthorDate: Mon Dec 21 22:34:27 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Mon Dec 21 22:34:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf00534e

mask games-fps/ut2004-ultraduel for removal

 dev-games/ogre/ogre-1.9.0-r1.ebuild|  2 +-
 eclass/games.eclass|  8 ++--
 games-arcade/supertux/Manifest |  1 +
 games-fps/alephone/Manifest|  1 +
 games-fps/doomsday/Manifest|  1 +
 games-fps/freedoom/Manifest|  1 +
 games-fps/industri/industri-1.01.ebuild| 23 +---
 games-fps/openarena/openarena-0.8.8.ebuild |  2 +-
 games-fps/quake3/quake3-1.36-r1.ebuild | 43 ++
 games-fps/quake3/quake3-.ebuild| 25 ++---
 games-fps/quakeforge/quakeforge-0.7.2.ebuild   |  4 +-
 games-fps/qudos/qudos-0.40.1.ebuild|  2 +-
 .../red-blue-quake2/red-blue-quake2-0.1.ebuild | 26 ++---
 .../ut2004-hamsterbash/ut2004-hamsterbash-1.ebuild |  2 +-
 games-puzzle/krystaldrop/krystaldrop-0.7.2.ebuild  | 15 
 games-strategy/ufo-ai/Manifest |  2 +
 games-strategy/widelands/widelands-0.17.ebuild | 21 ++-
 profiles/package.mask  |  5 +++
 18 files changed, 78 insertions(+), 106 deletions(-)

diff --git a/dev-games/ogre/ogre-1.9.0-r1.ebuild 
b/dev-games/ogre/ogre-1.9.0-r1.ebuild
index 9b79034..5873f01 100644
--- a/dev-games/ogre/ogre-1.9.0-r1.ebuild
+++ b/dev-games/ogre/ogre-1.9.0-r1.ebuild
@@ -92,7 +92,7 @@ src_configure() {
$(cmake-utils_use examples OGRE_BUILD_SAMPLES)
$(cmake-utils_use examples OGRE_INSTALL_SAMPLES_SOURCE)
-DOGRE_BUILD_TESTS=FALSE
-   $(usex threads "-DOGRE_CONFIG_THREADS=2" 
"-DOGRE_CONFIG_THREADS=0")
+   -DOGRE_CONFIG_THREADS=$(usex threads 2 0)
$(cmake-utils_use tools OGRE_BUILD_TOOLS)
$(cmake-utils_use zip OGRE_CONFIG_ENABLE_ZIP)
)

diff --git a/eclass/games.eclass b/eclass/games.eclass
index 7d231e1..2aa6461 100644
--- a/eclass/games.eclass
+++ b/eclass/games.eclass
@@ -24,7 +24,7 @@
 if [[ -z ${_GAMES_ECLASS} ]]; then
 _GAMES_ECLASS=1
 
-inherit base multilib toolchain-funcs eutils user
+inherit multilib toolchain-funcs eutils user
 
 case ${EAPI:-0} in
0|1) EXPORT_FUNCTIONS pkg_setup src_compile pkg_preinst pkg_postinst ;;
@@ -302,12 +302,14 @@ games_src_configure() {
 
 # @FUNCTION: games_src_compile
 # @DESCRIPTION:
-# Runs base_src_make(). This function is exported as src_compile().
+# This function is exported as src_compile().
 games_src_compile() {
case ${EAPI:-0} in
0|1) games_src_configure ;;
esac
-   base_src_make
+   if [[ -f Makefile || -f GNUmakefile || -f makefile ]]; then
+   emake "$@" || die "died running emake, $FUNCNAME"
+   fi
 }
 
 # @FUNCTION: games_pkg_preinst

diff --git a/games-arcade/supertux/Manifest b/games-arcade/supertux/Manifest
index f487be0..9bd66ed 100644
--- a/games-arcade/supertux/Manifest
+++ b/games-arcade/supertux/Manifest
@@ -1 +1,2 @@
 DIST supertux-0.1.3.tar.bz2 6715265 SHA256 
0092588351776626955339caaa62d12ce5954bb80c5f6952f60a122f53c2ad97 SHA512 
75848583f9f9b9d0f36fec77812501875420fde8befe1ff9ac4ea7613f4d9464b2eb460c2ed89b4dc31e697fbb449a5431c72675e2820d13f5c42653dc07ad98
 WHIRLPOOL 
bb8998845bee7f33a7aff94109d9767d000c89df6c670a1ccb85c4e9158a8ce6c4064f89587b9ea40d9ba1a854b9f5bba82ccc7dcac6dedcdb337cfaa1777898
+DIST supertux-0.3.5a.tar.bz2 72859723 SHA256 
71c34502b5879a4130fb111ac754967c3a632ef3017f30883a4d496d87bef8c7 SHA512 
f86c8ebe8aa0f789fc28a6634afcfc2a5c983973af677a4d7a5d80a98b732800f30c71e353e4ae044178baf4ca3abfcd08c4af7fe5c7e318c670bd7f8a00e69c
 WHIRLPOOL 
5702db36ab11346b78bfa3237bf86396bc67763ace85eda6d660e35b346020e3e3ca7d1d0ecc242d086ba88d5e9190f0adb794a725bd9cf81ac3e3545a133fbd

diff --git a/games-fps/alephone/Manifest b/games-fps/alephone/Manifest
index 4e0f40d..ce0458f 100644
--- a/games-fps/alephone/Manifest
+++ b/games-fps/alephone/Manifest
@@ -1,2 +1,3 @@
 DIST AlephOne-20100424.tar.bz2 3180896 SHA256 
d97089890ce99952027eaf6185baa6cb01b26c2882dfca9e68816dfe7076a5e6 SHA512 
b246b662f4bf820238c09fbb6bc55289d0db0a9b5ba15ab2b91a53f93666e81583834fd8a64497074a2e270a2055de24b3be93bb56d58715f9d213b1f4c92494
 WHIRLPOOL 
3074f6c4ba4925b8a0f7718bdfb0d1084155421397a7604febfeae473635b970b3842152b9a3e200f2bc642790a0dc51e689aa3b18de2235d5697105060c7f93
 DIST AlephOne-20120514.tar.bz2 4716348 SHA256 
6a7797af74cf3fae7f5505e64ffe57c56f7331521cb569bcc8b7d7041cb3718b SHA512 
71e54341221485765b63c7c723f95e04d41c8e2cecf6bc3f885efc178f4c75fd88cdffe703c4bf41a5e7101fd8cef33797d00cd249e211b7de1b22fc639b4278
 WHIRLPOOL 

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

2015-12-21 Thread Patrice Clement
commit: 94f9ecb002a4b570cfd2cb64fdfc2f57aef648a1
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 21 23:39:08 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 21 23:42:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94f9ecb0

dev-python/pymediainfo: Initial import. Fixes bug 559034.

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

 dev-python/pymediainfo/Manifest |  1 +
 dev-python/pymediainfo/metadata.xml | 13 +
 dev-python/pymediainfo/pymediainfo-1.4.0.ebuild | 26 +
 3 files changed, 40 insertions(+)

diff --git a/dev-python/pymediainfo/Manifest b/dev-python/pymediainfo/Manifest
new file mode 100644
index 000..043aba6
--- /dev/null
+++ b/dev-python/pymediainfo/Manifest
@@ -0,0 +1 @@
+DIST pymediainfo-1.4.0.tar.gz 2301 SHA256 
d865a79a75d5690af69d31621364ec64b7612a161dfa9b1a84d833a95c1ef19a SHA512 
e1e68766340e3a452d672a3ca26d576cc47abad8fc88a4abf28a5be177ce80b8d90d177b44659f01794fbb0c50b2d6c581dbcb07363a09cb872698ec1067988c
 WHIRLPOOL 
9d9a0c6b523253c4e161e6d7388e1e63fbc301d2bd90774fe07b1dbf9eb611acb63228337b0bd2297b99d620473aab8fd086f77354ca25c26395a2f8df37a25d

diff --git a/dev-python/pymediainfo/metadata.xml 
b/dev-python/pymediainfo/metadata.xml
new file mode 100644
index 000..8cf570e
--- /dev/null
+++ b/dev-python/pymediainfo/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  proxy-maintainers
+  
+ sautier.lo...@gmail.com
+ Louis Sautier
+  
+  
+ pymediainfo
+ paltman/pymediainfo
+  
+

diff --git a/dev-python/pymediainfo/pymediainfo-1.4.0.ebuild 
b/dev-python/pymediainfo/pymediainfo-1.4.0.ebuild
new file mode 100644
index 000..58fe37e
--- /dev/null
+++ b/dev-python/pymediainfo/pymediainfo-1.4.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="A wrapper around the mediainfo command"
+HOMEPAGE="https://github.com/paltman/pymediainfo 
https://pypi.python.org/pypi/pymediainfo;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   media-video/mediainfo
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+"
+
+DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]"



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

2015-12-21 Thread Ian Delaney
commit: d7810e2c933d6630efe6ab54471ef3b65cd1a357
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Mon Dec 21 15:01:31 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Mon Dec 21 15:01:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7810e2c

media-video/aegisub: add missing pthread flags

This also fixes build with GCC-5.

Gentoo-Bug: 568878

Package-Manager: portage-2.2.24

 media-video/aegisub/aegisub-3.2.2.ebuild |  1 +
 media-video/aegisub/aegisub-.ebuild  |  1 +
 .../files/aegisub-3.2.2-add-missing-pthread-flags.patch  | 16 
 .../files/aegisub--add-missing-pthread-flags.patch   | 14 ++
 4 files changed, 32 insertions(+)

diff --git a/media-video/aegisub/aegisub-3.2.2.ebuild 
b/media-video/aegisub/aegisub-3.2.2.ebuild
index 185e7f1..19b2dc6 100644
--- a/media-video/aegisub/aegisub-3.2.2.ebuild
+++ b/media-video/aegisub/aegisub-3.2.2.ebuild
@@ -63,6 +63,7 @@ REQUIRED_USE="
 PATCHES=(
"${FILESDIR}/${P}-fix-lua-regexp.patch"
"${FILESDIR}/${P}-unbundle-luajit.patch"
+   "${FILESDIR}/${P}-add-missing-pthread-flags.patch"
"${FILESDIR}/${P}-respect-user-compiler-flags.patch"
 )
 

diff --git a/media-video/aegisub/aegisub-.ebuild 
b/media-video/aegisub/aegisub-.ebuild
index c678b5f..6f6eb8c 100644
--- a/media-video/aegisub/aegisub-.ebuild
+++ b/media-video/aegisub/aegisub-.ebuild
@@ -60,6 +60,7 @@ REQUIRED_USE="
 PATCHES=(
"${FILESDIR}/${PN}-3.2.2-fix-lua-regexp.patch"
"${FILESDIR}/${P}-unbundle-luajit.patch"
+   "${FILESDIR}/${P}-add-missing-pthread-flags.patch"
"${FILESDIR}/${P}-respect-user-compiler-flags.patch"
 )
 

diff --git 
a/media-video/aegisub/files/aegisub-3.2.2-add-missing-pthread-flags.patch 
b/media-video/aegisub/files/aegisub-3.2.2-add-missing-pthread-flags.patch
new file mode 100644
index 000..c1aa14a
--- /dev/null
+++ b/media-video/aegisub/files/aegisub-3.2.2-add-missing-pthread-flags.patch
@@ -0,0 +1,16 @@
+diff --git a/tools/Makefile b/tools/Makefile
+index 81bcef3..f9a6cd3 100644
+--- a/tools/Makefile
 b/tools/Makefile
+@@ -7,8 +7,9 @@ PROGRAM += $(d)osx-bundle-restart-helper
+ endif
+ 
+ repack-thes-dict_OBJ  := $(d)repack-thes-dict.o $(TOP)lib/libaegisub.a
+-repack-thes-dict_LIBS := $(LIBS_BOOST) $(LIBS_ICU)
+-repack-thes-dict_CPPFLAGS := -I$(TOP) -I$(TOP)libaegisub/include $(CFLAGS_ICU)
++repack-thes-dict_LIBS := $(LIBS_BOOST) $(LIBS_ICU) $(LIBS_PTHREAD)
++repack-thes-dict_CPPFLAGS := -I$(TOP) -I$(TOP)libaegisub/include \
++  $(CFLAGS_ICU) $(CFLAGS_PTHREAD)
+ 
+ PROGRAM += $(d)repack-thes-dict
+ 

diff --git 
a/media-video/aegisub/files/aegisub--add-missing-pthread-flags.patch 
b/media-video/aegisub/files/aegisub--add-missing-pthread-flags.patch
new file mode 100644
index 000..1d709fe
--- /dev/null
+++ b/media-video/aegisub/files/aegisub--add-missing-pthread-flags.patch
@@ -0,0 +1,14 @@
+diff --git a/tools/Makefile b/tools/Makefile
+index d9f64b8..f9a6cd3 100644
+--- a/tools/Makefile
 b/tools/Makefile
+@@ -8,7 +8,8 @@ endif
+ 
+ repack-thes-dict_OBJ  := $(d)repack-thes-dict.o $(TOP)lib/libaegisub.a
+ repack-thes-dict_LIBS := $(LIBS_BOOST) $(LIBS_ICU) $(LIBS_PTHREAD)
+-repack-thes-dict_CPPFLAGS := -I$(TOP) -I$(TOP)libaegisub/include $(CFLAGS_ICU)
++repack-thes-dict_CPPFLAGS := -I$(TOP) -I$(TOP)libaegisub/include \
++  $(CFLAGS_ICU) $(CFLAGS_PTHREAD)
+ 
+ PROGRAM += $(d)repack-thes-dict
+ 



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

2015-12-21 Thread Ian Delaney
commit: 11ee5c872af6eb66515dd0896daff4ba9235693c
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 22 00:05:24 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 22 00:07:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11ee5c87

Merge remote-tracking branch 'remotes/Coacher/aegisub-bug-568878'

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

 media-video/aegisub/aegisub-3.2.2.ebuild |  1 +
 media-video/aegisub/aegisub-.ebuild  |  1 +
 .../files/aegisub-3.2.2-add-missing-pthread-flags.patch  | 16 
 .../files/aegisub--add-missing-pthread-flags.patch   | 14 ++
 4 files changed, 32 insertions(+)



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

2015-12-21 Thread Andreas Hüttel
commit: 1ae9cd7f2d9db27960b87ded166fb2aa39056b20
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Dec 22 00:39:29 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Dec 22 00:39:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ae9cd7f

dev-perl/Devel-OverloadInfo: Version bump

Package-Manager: portage-2.2.26

 .../Devel-OverloadInfo-0.4.0.ebuild| 32 ++
 dev-perl/Devel-OverloadInfo/Manifest   |  1 +
 2 files changed, 33 insertions(+)

diff --git a/dev-perl/Devel-OverloadInfo/Devel-OverloadInfo-0.4.0.ebuild 
b/dev-perl/Devel-OverloadInfo/Devel-OverloadInfo-0.4.0.ebuild
new file mode 100644
index 000..24ee416
--- /dev/null
+++ b/dev-perl/Devel-OverloadInfo/Devel-OverloadInfo-0.4.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=ILMARI
+DIST_VERSION=0.004
+inherit perl-module
+
+DESCRIPTION="Introspect overloaded operators"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+IUSE="test"
+
+# Scalar::Util -> Scalar-List-Utils
+RDEPEND="
+   >=virtual/perl-Exporter-5.570.0
+   dev-perl/MRO-Compat
+   >=dev-perl/Package-Stash-0.140.0
+   virtual/perl-Scalar-List-Utils
+   dev-perl/Sub-Identify
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Test-Fatal
+   >=virtual/perl-Test-Simple-0.880.0
+   virtual/perl-parent
+   )
+"

diff --git a/dev-perl/Devel-OverloadInfo/Manifest 
b/dev-perl/Devel-OverloadInfo/Manifest
index 33bd211..5dbab60 100644
--- a/dev-perl/Devel-OverloadInfo/Manifest
+++ b/dev-perl/Devel-OverloadInfo/Manifest
@@ -1 +1,2 @@
 DIST Devel-OverloadInfo-0.002.tar.gz 10966 SHA256 
de6383f6aff1972897993eccd7fcb73a19ebb028c148fc35b8f87a883595ff91 SHA512 
fb293f0466b40135c92b8579631a3fe4a7d4cbf1c3720d14972a24f2144218a00594d5496c0231a77f8ab3a465194d3c6beea02785fbd2629ce0f193060914a9
 WHIRLPOOL 
67b2decec869c76f6d9844ad11199414993aec3c73949f05e42d38bc5bcbcf30dcfe20df0e2476849181c2d6161848f13feba1220300c172e64471a079fcb836
+DIST Devel-OverloadInfo-0.004.tar.gz 12013 SHA256 
83e88450064b0b0bbfd520cc9d7997fc7bed14ae257894eeadda28dc3e94937d SHA512 
a8770f3319c8224d348fd28b1a057333e87d73b914c892d3c3581673db6fef8b5728a02a485eefc90edbc05899150cd8e172f464f0a4a29e8161815f6de8dcb1
 WHIRLPOOL 
29466593b99cf590ae10585cf5e198a612a9ffebb60c51d641237241c0bdd9d3e672f6a21edeb36d80581e82b24315bc0df79bf17b71fa40c63137e7ae0a2548



[gentoo-commits] repo/gentoo:master commit in: dev-perl/CPAN-Meta-Check/

2015-12-21 Thread Andreas Hüttel
commit: 0383d9253b3199c3f86406e5caf3c485b272cf92
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Dec 22 00:43:31 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Dec 22 00:43:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0383d925

dev-perl/CPAN-Meta-Check: Version bump; remove old

Package-Manager: portage-2.2.26

 .../CPAN-Meta-Check/CPAN-Meta-Check-0.12.0.ebuild  | 32 ++
 .../CPAN-Meta-Check/CPAN-Meta-Check-0.4.0.ebuild   | 28 ---
 dev-perl/CPAN-Meta-Check/Manifest  |  2 +-
 3 files changed, 33 insertions(+), 29 deletions(-)

diff --git a/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.12.0.ebuild 
b/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.12.0.ebuild
new file mode 100644
index 000..dd760a3
--- /dev/null
+++ b/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.12.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=LEONT
+DIST_VERSION=0.012
+inherit perl-module
+
+DESCRIPTION='Verify requirements in a CPAN::Meta object'
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+IUSE="test"
+
+# CPAN::Meta::Prereqs -> perl-CPAN-Meta
+RDEPEND="
+   >=virtual/perl-CPAN-Meta-2.132.830
+   >=virtual/perl-CPAN-Meta-Requirements-2.121.0
+   virtual/perl-Exporter
+   >=virtual/perl-Module-Metadata-1.0.23
+"
+DEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.300.0
+   test? (
+   virtual/perl-File-Spec
+   dev-perl/Test-Deep
+   dev-perl/Test-Differences
+   >=virtual/perl-Test-Simple-0.880.0
+   )
+"

diff --git a/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.4.0.ebuild 
b/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.4.0.ebuild
deleted file mode 100644
index dd65024..000
--- a/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.4.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.004
-inherit perl-module
-
-DESCRIPTION='Verify requirements in a CPAN::Meta object'
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
-IUSE="test"
-
-RDEPEND="
-   >=virtual/perl-CPAN-Meta-2.120.920
-   >=virtual/perl-CPAN-Meta-Requirements-2.120.920
-   virtual/perl-Module-Metadata
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-perl/Test-Differences
-   )
-"
-
-SRC_TEST="do"

diff --git a/dev-perl/CPAN-Meta-Check/Manifest 
b/dev-perl/CPAN-Meta-Check/Manifest
index af98b76..32a65d5 100644
--- a/dev-perl/CPAN-Meta-Check/Manifest
+++ b/dev-perl/CPAN-Meta-Check/Manifest
@@ -1,2 +1,2 @@
-DIST CPAN-Meta-Check-0.004.tar.gz 11746 SHA256 
fa38cf1a37d31fe08d53be7626ddf3024bda8178ab5ac32ad4815cc0dc5b9e31 SHA512 
651905e815ac4f004a9fc7fda678d265d2b629bc11fe2ad234c0c85531de505bea13f7f64f455ef3790860870599b5365d6a40ad1d0ecf714c90c1cdc78c9a97
 WHIRLPOOL 
101bcf217cebb6d31f05fa04e0c57bbf8845619053fc606e2669f97243972b24709638e27b7982285404a87574fd8d5b7d53bf6f82c515e746133ab873445ab6
 DIST CPAN-Meta-Check-0.009.tar.gz 12355 SHA256 
eb2d43afd1da276e4acdebd24937f5171d0aaca8d19a5ef0c3e834b8792b7361 SHA512 
affbc654c4548d028ce84179947bd43f367e7078e415071e2f3a34354f1f379b994ce289c828a0e3c51295cabfeb4cd8fa3087b903396b6bb203ddabae0361c5
 WHIRLPOOL 
e643675021ccb8faa2269cac8d30ee44ef77d6727f9feba01a51e09244417673cef13de2c0b332460a6fc426b52448315f8d3129bfd73a3f78823164fe08bfef
+DIST CPAN-Meta-Check-0.012.tar.gz 12570 SHA256 
4b4cd9a2ac788456fb43f32e40a380cb29122bb3b4082c70a008366d2881d5e7 SHA512 
99ec6721dfb6be8fae7e5a4f6418d4d12d8d093df11f0596480ecc19a46ef3af3fc3da91ccdd7110f974e8f4d04e33166d76804b673a019bc4994f96b7078e7d
 WHIRLPOOL 
a3810564ce73e7ca303a76ee49f564bb625299b9cc77719cb98e08461eaef81a16bc7c1c63455c3b7f79221f9776e1551c5ad01d947882adaf2437f6c177c0de



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

2015-12-21 Thread Andreas Hüttel
commit: 58d2c2fa8c6291556ad7804c5116ded8ddd3a7ec
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Dec 22 00:45:17 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Dec 22 00:45:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58d2c2fa

dev-perl/Moose: Version bump

Package-Manager: portage-2.2.26

 dev-perl/Moose/Manifest   |   1 +
 dev-perl/Moose/Moose-2.160.400.ebuild | 126 ++
 2 files changed, 127 insertions(+)

diff --git a/dev-perl/Moose/Manifest b/dev-perl/Moose/Manifest
index a2eada1..0c2734a 100644
--- a/dev-perl/Moose/Manifest
+++ b/dev-perl/Moose/Manifest
@@ -1,2 +1,3 @@
 DIST Moose-2.0604.tar.gz 696388 SHA256 
121fa0032e3838faddfea63028458ff963fd527c63c6cea7a6c8f186169d9b5b SHA512 
58ccb7e8e5065ae4b49c683295231e7e03fbee41ce18dfb68255b21087091c45227452acbb2eef61abfa94f661eaf888078cdc40a0640b96e9b7ab49d7d81cc3
 WHIRLPOOL 
995d955a17befed17a4dfe043e2c2239f17a2bf43e056863cd31615ea619e8e49ff71ba1044306dbab5277f1e782894386ef0f00f5e609838823d3c285e69795
 DIST Moose-2.1405.tar.gz 808857 SHA256 
c2cb820cc71cb80ed3bb69b3e52cb57b19b160d42c86b782521e56c14635305a SHA512 
a04ad6efce1bb99efd028a59cc21900083202a80cd93a195d2384d6523ebaa96f23d2a02ddd9cb57606188e5c2d5765961e70bbd9928c5a445c3eef8065bef50
 WHIRLPOOL 
22210412b1242c0c5dbe960c287344d636443c8483af6dc4b57a252c6aa2ef7274a57d408e6b266371992a5cb136d28ae298610cac1e6a0c18f5edaa3298dfe2
+DIST Moose-2.1604.tar.gz 802830 SHA256 
3fee73c316046597d61cde3a82a55d7b521ed54392c20ee4637578955ceaaa5f SHA512 
f0506dfd8bad0f59a1cb85cf994572ec521da93099354138bbba4622bb04cf67b1313e805231ec73b9af69ab8c443b998524219121fecbe00f8af74a6e9556ba
 WHIRLPOOL 
e79975bff0b1ac4bb4be2ca362879e4daa53b964147a23d020863a4c30a9af3a406a313ffb1d676daea7ff164cba7499fe6350e382cb1c04eab327114e4657cc

diff --git a/dev-perl/Moose/Moose-2.160.400.ebuild 
b/dev-perl/Moose/Moose-2.160.400.ebuild
new file mode 100644
index 000..59dc72d
--- /dev/null
+++ b/dev-perl/Moose/Moose-2.160.400.ebuild
@@ -0,0 +1,126 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=ETHER
+DIST_VERSION=2.1604
+inherit perl-module
+
+DESCRIPTION="A postmodern object system for Perl 5"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x64-macos"
+IUSE="test"
+
+CONFLICTS="
+   !<=dev-perl/Catalyst-5.900.499.990
+   !<=dev-perl/Config-MVP-2.200.4
+   !<=dev-perl/Devel-REPL-1.3.20
+   !<=dev-perl/Dist-Zilla-Plugin-Git-2.16.0
+   !<=dev-perl/Fey-0.360.0
+   !<=dev-perl/Fey-ORM-0.420.0
+   !<=dev-perl/File-ChangeNotify-0.150.0
+   !<=dev-perl/HTTP-Throwable-0.17.0
+   !<=dev-perl/KiokuDB-0.510.0
+   !<=dev-perl/Markdent-0.160.0
+   !<=dev-perl/Mason-2.180.0
+   !<=dev-perl/MooseX-ABC-0.50.0
+   !<=dev-perl/MooseX-Aliases-0.80.0
+   !<=dev-perl/MooseX-AlwaysCoerce-0.130.0
+   !<=dev-perl/MooseX-App-1.220.0
+   !<=dev-perl/MooseX-Attribute-Deflator-2.1.7
+   !<=dev-perl/MooseX-Attribute-Dependent-1.1.0
+   !<=dev-perl/MooseX-Attribute-Prototype-0.100.0
+   !<=dev-perl/MooseX-AttributeHelpers-0.220.0
+   !<=dev-perl/MooseX-AttributeIndexes-1.0.0
+   !<=dev-perl/MooseX-AttributeInflate-0.20.0
+   !<=dev-perl/MooseX-CascadeClearing-0.30.0
+   !<=dev-perl/MooseX-ClassAttribute-0.260.0
+   !<=dev-perl/MooseX-Constructor-AllErrors-0.21.0
+   !<=dev-perl/MooseX-Declare-0.350.0
+   !<=dev-perl/MooseX-FollowPBP-0.20.0
+   !<=dev-perl/MooseX-Getopt-0.560.0
+   !<=dev-perl/MooseX-InstanceTracking-0.40.0
+   !<=dev-perl/MooseX-LazyRequire-0.60.0
+   !<=dev-perl/MooseX-Meta-Attribute-Index-0.40.0
+   !<=dev-perl/MooseX-Meta-Attribute-Lvalue-0.50.0
+   !<=dev-perl/MooseX-Method-Signatures-0.440.0
+   !<=dev-perl/MooseX-MethodAttributes-0.220.0
+   !<=dev-perl/MooseX-NonMoose-0.240.0
+   !<=dev-perl/MooseX-Object-Pluggable-0.1.100
+   !<=dev-perl/MooseX-POE-0.214.0
+   !<=dev-perl/MooseX-Params-Validate-0.50.0
+   !<=dev-perl/MooseX-PrivateSetters-0.30.0
+   !<=dev-perl/MooseX-Role-Cmd-0.60.0
+   !<=dev-perl/MooseX-Role-Parameterized-1.0.0
+   !<=dev-perl/MooseX-Role-WithOverloading-0.140.0
+   !<=dev-perl/MooseX-Runnable-0.30.0
+   !<=dev-perl/MooseX-Scaffold-0.50.0
+   !<=dev-perl/MooseX-SemiAffordanceAccessor-0.50
+   !<=dev-perl/MooseX-SetOnce-0.100.473
+   !<=dev-perl/MooseX-Singleton-0.250.0
+   !<=dev-perl/MooseX-SlurpyConstructor-1.100.0
+   !<=dev-perl/MoooseX-Storage-0.420.0
+   !<=dev-perl/MooseX-StrictConstructor-0.120.0
+   !<=dev-perl/MooseX-Traits-0.110.0
+   !<=dev-perl/MooseX-Types-0.190.0
+   !<=dev-perl/MooseX-Types-Parameterizable-0.50.0
+   !<=dev-perl/MooseX-Types-Set-Object-0.30.0
+   !<=dev-perl/MooseX-Types-Signal-1.101.930
+   !<=dev-perl/MooseX-UndefTolerant-0.110.0
+   

[gentoo-commits] dev/ikelos:master commit in: net-misc/openvpn-auth-duosec/

2015-12-21 Thread Mike Auty
commit: 6f0e5c61a4998b0bc42a8d5cdd3eba59ee94d1d2
Author: layman  localhost>
AuthorDate: Tue Dec 22 00:43:32 2015 +
Commit: Mike Auty  gentoo  org>
CommitDate: Tue Dec 22 00:43:32 2015 +
URL:https://gitweb.gentoo.org/dev/ikelos.git/commit/?id=6f0e5c61

Add in first attempt at openvpn-auth-duosec plugin.

 net-misc/openvpn-auth-duosec/Manifest|  1 +
 .../openvpn-auth-duosec-.ebuild  | 20 
 2 files changed, 21 insertions(+)

diff --git a/net-misc/openvpn-auth-duosec/Manifest 
b/net-misc/openvpn-auth-duosec/Manifest
new file mode 100644
index 000..56ca630
--- /dev/null
+++ b/net-misc/openvpn-auth-duosec/Manifest
@@ -0,0 +1 @@
+EBUILD openvpn-auth-duosec-.ebuild 405 SHA256 
60e9a9d67e477132e8fe588e682dd1aaa949ad1aa93cbc95d5ea92c0f2f16af2 SHA512 
f370362d0a5be82a3a79e28d7b3bedb3b9bbeaec9c36b88acd71f973ed6e5a8e1515e33b453a82395fda0ebdd1780115d59512caa7a19a3255fdda7c4d42a975
 WHIRLPOOL 
fbd11d2d3b7b28b52269257fa2786ea1b9dec223206997535de431805d6a23e38e4b8e6788b0eb4fc9cd57383ffad48f2eec9297ad530b082929a346ded60731

diff --git a/net-misc/openvpn-auth-duosec/openvpn-auth-duosec-.ebuild 
b/net-misc/openvpn-auth-duosec/openvpn-auth-duosec-.ebuild
new file mode 100644
index 000..b0f4d33
--- /dev/null
+++ b/net-misc/openvpn-auth-duosec/openvpn-auth-duosec-.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit git-r3
+
+DESCRIPTION="OpenVPN plugin to authenticate using Duo Security"
+HOMEPAGE="https://github.com/duosecurity/duo_openvpn;
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/duosecurity/duo_openvpn;
+
+LICENSE=""
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"



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

2015-12-21 Thread Patrick Lauer
commit: 486fe9995f841604d46b92689646edee5e6bb1a8
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 10:27:08 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 10:27:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=486fe999

sys-apps/toybox: Bump

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

diff --git a/sys-apps/toybox/Manifest b/sys-apps/toybox/Manifest
index 1a4d5a6..e4c65a7 100644
--- a/sys-apps/toybox/Manifest
+++ b/sys-apps/toybox/Manifest
@@ -5,3 +5,4 @@ DIST toybox-0.5.0.tar.bz2 564512 SHA256 
2718b42154be041435df48d5b5140f4e307767c3
 DIST toybox-0.5.1.tar.bz2 588987 SHA256 
83baa69a26e03a920ea7e91fbeb9016178990450d4144d1a244275b44346a12c SHA512 
4abab27ef1d3ecedc1b419ea7421c032bdb9bd375a808e8400eda6c409665b41f35bef959087b863bb661d54962fb8ce78ed1d74285040837611dfdb7c715d03
 WHIRLPOOL 
8b098073ca7a604205e6c1857fedacab1c42785281cd05fe76bb654a54fea77beb588d7f9bd575be9c2c12fe03ae6598ba2f31b683f1bafdf249d26b8b953df8
 DIST toybox-0.5.2.tar.gz 685909 SHA256 
dec7f6433ee0e130f224fc63760b347ad0572280c4de32f1aaefbee813a79a00 SHA512 
76b20c70a1568b03c32e5670f8fbc517b4d528c21e74fc44ce1241cb494ad329f8e3412bf6501521ad2c19d07f89046fba2c37f8a07f4aba1e0ebe1346d9c83d
 WHIRLPOOL 
168b2039c02fd8381a8c5c4353ed1d365a4ed941477b5b1acb21f6330d4f8e0785c69511edd187de790d0d6b65a9d34218a01ca25747558a0890f5f4c7f6f44b
 DIST toybox-0.6.0.tar.gz 710572 SHA256 
d0b9788f61b9f9cbc685eabc0bd89b6925201ecb15a0cb4fbbd5fbf658b1 SHA512 
ddbd2252cd64a3508b9cd9d8a0a574805583b5b9c3861c153d25e8a394115c28b5a58d02a5aa7d7f58b9b9f3effcd33ac3f55788e0f3c4ad4265233f49c6f3ff
 WHIRLPOOL 
0a83bc9895fd0c43ac541afdbfb6caaa294639646c82e70090fd40b77cf5943009188bb8f1b12b1af82d9bb94dd345892b36a5f7849d7154d34efa0b1f1a5f17
+DIST toybox-0.6.1.tar.gz 736371 SHA256 
122ceb30c6ca0e8b8e914a427b1aaa89715c53a3df500afc56524ce88426838c SHA512 
256afdcb0303b8f7a0bfa411cd0300d45460229dac3bf86fa147bb9d7806dc1224d0b1e28e58472932d8468407491559c6369cb29e78f67691560825dc25a68a
 WHIRLPOOL 
0a5194965d3b4f4521193a51523d59cd52f23999c95cf167234853004cb0c3503aa4df96e65ab1d524741ff8e1d47def8af072f7eb8e8d55caec9c24b5525039

diff --git a/sys-apps/toybox/toybox-0.6.1.ebuild 
b/sys-apps/toybox/toybox-0.6.1.ebuild
new file mode 100644
index 000..71beeaa
--- /dev/null
+++ b/sys-apps/toybox/toybox-0.6.1.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 eutils multiprocessing savedconfig toolchain-funcs
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/gfto/toybox.git;
+else
+   SRC_URI="http://landley.net/code/toybox/downloads/${P}.tar.gz;
+   KEYWORDS="~amd64 ~x86"
+fi
+
+# makefile is stupid
+RESTRICT="test"
+
+DESCRIPTION="Common linux commands in a multicall binary"
+HOMEPAGE="http://landley.net/code/toybox/;
+
+# The source code does not explicitly say that it's BSD, but the author has 
repeatedly said it
+LICENSE="BSD-2"
+SLOT="0"
+IUSE=""
+
+src_prepare() {
+   epatch_user
+   restore_config .config
+}
+
+src_configure() {
+   if [ -f .config ]; then
+   yes "" | emake -j1 oldconfig > /dev/null
+   return 0
+   else
+   einfo "Could not locate user configfile, so we will save a 
default one"
+   emake defconfig > /dev/null
+   fi
+}
+
+src_compile() {
+   tc-export CC STRIP
+   export HOSTCC=$(tc-getBUILD_CC)
+   unset CROSS_COMPILE
+   export CPUS=$(makeopts_jobs)
+   emake V=1
+}
+
+src_test() {
+   emake test
+}
+
+src_install() {
+   save_config .config
+   newbin toybox_unstripped toybox
+}



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

2015-12-21 Thread Justin Lecher
commit: 09c1a1bd6aedab0e8f6bbd9602d71e8e3274063a
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 21 10:42:16 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 21 10:43:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09c1a1bd

dev-python/pylint: Version Bump

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

 dev-python/pylint/Manifest|  1 +
 dev-python/pylint/pylint-1.5.2.ebuild | 61 +++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/pylint/Manifest b/dev-python/pylint/Manifest
index e015e54..e760a83 100644
--- a/dev-python/pylint/Manifest
+++ b/dev-python/pylint/Manifest
@@ -1,3 +1,4 @@
 DIST pylint-1.4.4.tar.gz 342461 SHA256 
0561af4d6bd4fa9e8e02f3997fe93684f7187c57bcef9db8c2ea9fb0d7d2f022 SHA512 
bcbf5439628a071055cea441455f6c0fe0cbfae2617c473bc376b880421f17f78653901d7cf49950653436a0991a3bafbc2df15744ff24a3b059de53e518b331
 WHIRLPOOL 
9b8f5384691f5e762bfd7313691783e0b1a9148effec0b29f2e538f587dfa03f57413817589f8fc3f152c05330b7f39c8ede27720ff6ad12496f9101d824fedf
 DIST pylint-1.4.5.tar.gz 342366 SHA256 
cd6623bdd6e79b6b1e4c24672bdfa5923ce14541cf26fecd2bbc56845d136086 SHA512 
530cdf53c411afc2b96d1716c5f9effa7b6406f9957c2b5183f651f47e458c28692e183f905a321adeb4919bd0ec68a4148fb171294ad08dfb5b87d37668849f
 WHIRLPOOL 
d4ccb18f42ab9b270c949ce145ec22a0f0f0f065f97e2f9fadd29b5503b348bee7ecf1321055b91dca3a9690946c238b09221521612c68f64d42d6170d92d7b0
 DIST pylint-1.5.1.tar.gz 419684 SHA256 
044e9f03eee51ac1cb05f094af6ccc2a2195c558d233819c22527062dff46225 SHA512 
4ea88259ad9b63f02220a32365a446417db751809d24bef5f5a3c4ab4ec62942c02b46acf4dd60f2f3ac849789e306db03bd958d3d181d4c42860efa551927e3
 WHIRLPOOL 
1a35194d53bb77695164b356abeada82597ca7f228d2d8a9c43ac9880727136d829e135c2fbd85e41ddcd826099cb3d77d42d8b5b55e8952da0ab9f183e4d244
+DIST pylint-1.5.2.tar.gz 419023 SHA256 
983bec35e10b0c5f0ec33c03629fe832642c46b76a43edce37a2e8d2708d2179 SHA512 
27c4c28ff2aa80fba95033c84af7732365dcf8351cd0caee0205d28100106e194071d51d17d133ccf5ea95a6165896c43851dd397e02676d12720f426cc52afc
 WHIRLPOOL 
16eebbd15f1af4b1932e26419ecb607604fc4b25973c54c444f98be46fd95b374bb0ddc8e5bd3880a272766426f241d6a694433ec9db8d44b559ecda7d231321

diff --git a/dev-python/pylint/pylint-1.5.2.ebuild 
b/dev-python/pylint/pylint-1.5.2.ebuild
new file mode 100644
index 000..d4adb71
--- /dev/null
+++ b/dev-python/pylint/pylint-1.5.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Python code static checker"
+HOMEPAGE="http://www.logilab.org/project/pylint 
https://pypi.python.org/pypi/pylint;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-macos"
+IUSE="doc examples test"
+
+RDEPEND="
+   >=dev-python/astroid-1.4.1[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( ${RDEPEND} )"
+
+RESTRICT="test" # needs pygtk
+
+# Usual. Requ'd for impl specific failures in test phase
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_compile_all() {
+   # selection of straight html triggers a trivial annoying bug, we skirt 
it
+   use doc && PYTHONPATH="${S}" emake -e -C doc singlehtml
+}
+
+python_test() {
+   # Test suite appears not to work under Python 3.
+   # https://bitbucket.org/logilab/pylint/issue/240/
+   local msg="Test suite broken with ${EPYTHON}"
+   if python_is_python3; then
+   einfo "${msg}"
+   return 0
+   fi
+
+   pytest || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   doman man/{pylint,pyreverse}.1
+   use examples && local EXAMPLES=( examples/. )
+   use doc && local HTML_DOCS=( doc/_build/singlehtml/. )
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   # Optional dependency on "tk" USE flag would break support for Jython.
+   optfeature "pylint-gui script requires dev-lang/python with \"tk\" USE 
flag enabled." dev-lang/python[tk]
+}



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

2015-12-21 Thread Justin Lecher
commit: 7d1e50e2de3f89d9e37ea09c122183628b887fde
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 21 10:43:06 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 21 10:43:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d1e50e2

dev-python/astroid: Version Bump

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

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

diff --git a/dev-python/astroid/Manifest b/dev-python/astroid/Manifest
index 72ca4ba..74450d8 100644
--- a/dev-python/astroid/Manifest
+++ b/dev-python/astroid/Manifest
@@ -1,2 +1,3 @@
 DIST astroid-1.3.8.tar.gz 155302 SHA256 
3971c35c675dc7acfceb636eb1758b7df9fc3ad75b5f81ca89f57ccf51719442 SHA512 
316d3a6a12d95b3bebe7ffe47de840cbff96f357c7c324f6684bb713bca191cfaf87fe226c3c1145049611a2035890bdf11845bf923f7d0087a0d1e565d5d5c5
 WHIRLPOOL 
456ebef20c278047ae0e85fb1386f63eb7c13dda295ddace9704df5255b5004887f6f5201097b2337cc678a9891f33aa5628cbf7acc01c4eb9ff3dc3c091408a
 DIST astroid-1.4.1.tar.gz 179485 SHA256 
2417a2c62f07bb77485efb6dd94567ac165808a4248ecb09754116662ffa9fc2 SHA512 
5efc0235314cf68801ec4c4ca7688386bace0bbc5a0a92dffc6241d8fab69b5b7ddbe3385c1d909ebb2cb260174c93ce6f0408c3c0745ebbc7f6c1923a0ce59f
 WHIRLPOOL 
7a2f5618d77eba504b7d1b8d39d3c488962d871d3b0ef5723d0bd5eb338cf7da8ce9d09a64e6c33ca22f175bcdf901f2d5f88df92cb3387d1a05dc810b3d12de
+DIST astroid-1.4.2.tar.gz 181042 SHA256 
b734fa504179a93aa03314df48b45fb1d9d0d8770a1126e7a126c9ac4aebd5c3 SHA512 
faddbb830370232f4b3ea6cdd454da352a682b73062d9bac37ac28711dc6b17a071278d7b5019a7ba85ac4c1845752db42c0fe122be082bbc262a159b92276e2
 WHIRLPOOL 
18443d0dbfd6575836209c523b5d3c7eebf509a23395bb0e0e2bac43c117b3b2269c9bf6ddb4cfc896b1232f1f4d9a86ac3ebf40ba950a25070a8771e54cc7ac

diff --git a/dev-python/astroid/astroid-1.4.2.ebuild 
b/dev-python/astroid/astroid-1.4.2.ebuild
new file mode 100644
index 000..3ea1116
--- /dev/null
+++ b/dev-python/astroid/astroid-1.4.2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Abstract Syntax Tree for logilab packages"
+HOMEPAGE="https://bitbucket.org/logilab/astroid 
https://pypi.python.org/pypi/astroid;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos 
~x86-macos"
+IUSE="test"
+
+# https://bitbucket.org/logilab/astroid/issues/276/testfailures-with-141
+RESTRICT=test
+
+# Version specified in __pkginfo__.py.
+RDEPEND="
+   dev-python/lazy-object-proxy[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/wrapt[${PYTHON_USEDEP}]"
+DEPEND="
+   app-arch/unzip
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+#  test? (
+#  ${RDEPEND}
+#  >=dev-python/pylint-1.4.0[${PYTHON_USEDEP}]
+#  dev-python/pytest[${PYTHON_USEDEP}]
+#  $(python_gen_cond_dep 
'dev-python/egenix-mx-base[${PYTHON_USEDEP}]' python2_7)
+#  )"
+# Required for tests
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_test() {
+   ${EPYTHON} -m unittest discover -p "unittest*.py" --verbose || die
+}



[gentoo-commits] repo/gentoo:master commit in: media-radio/unixcw/

2015-12-21 Thread Thomas Beierlein
commit: da0d78eb23ae9ae59725daf7dc5f1ddc0efbda02
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Mon Dec 21 17:54:13 2015 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Mon Dec 21 17:54:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da0d78eb

media-radio/unixcw: Version bump

Package-Manager: portage-2.2.26

 media-radio/unixcw/Manifest|  1 +
 media-radio/unixcw/unixcw-3.5.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/media-radio/unixcw/Manifest b/media-radio/unixcw/Manifest
index 1268caa..b614d7b 100644
--- a/media-radio/unixcw/Manifest
+++ b/media-radio/unixcw/Manifest
@@ -1 +1,2 @@
 DIST unixcw-3.4.2.tar.gz 730461 SHA256 
ace7d16cfc8f84ffe041de6774baa0727ed0230657cf8a93cb4addf1cb4e8b2a SHA512 
118e4f7fcca78713e5be5aa2faccec4e26979e95dcc300bf259534bb417eee7b21591ecb778467591b1a3b61c9ede18f229f88cd1bba2d6bc54f4d410096e0c9
 WHIRLPOOL 
e8959ccb6eca32f4d468dbdb1add61dad6be30b453369385a1c857309ea89d052e4ef5577c4e17f101a79ee762f10ead3ec1fae72a394455ac473c4758fe0e3c
+DIST unixcw-3.5.0.tar.gz 739258 SHA256 
82c455b67c6444165ec59f75bc29ad0665b79d70489bd09e3166fd1ccde718e6 SHA512 
82128656dce56558f4a41be394afd1579f9de43f170c695e09e25e231b8416993b1cb94215325b39645391b2a43ede8119291efad284fecc35eb8a753669e8ec
 WHIRLPOOL 
3c6dd3bcfa4d43f114938a1048e04f21a63199bb7c291e415e5b035dfe6c59031c60760ad65721cea84ee942ef6263f1938fa9093e6ab6c620875433b415c878

diff --git a/media-radio/unixcw/unixcw-3.5.0.ebuild 
b/media-radio/unixcw/unixcw-3.5.0.ebuild
new file mode 100644
index 000..8f624ad
--- /dev/null
+++ b/media-radio/unixcw/unixcw-3.5.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils flag-o-matic multilib
+
+DESCRIPTION="A package of programs that fit together to form a morse code 
tutor program"
+HOMEPAGE="http://unixcw.sourceforge.net;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86"
+IUSE="alsa ncurses pulseaudio suid qt5"
+
+RDEPEND="ncurses? ( sys-libs/ncurses:= )
+   qt5? ( dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5 )
+   alsa? ( media-libs/alsa-lib )
+   pulseaudio? ( media-sound/pulseaudio )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   sys-devel/libtool
+   !<=app-misc/cw-1.0.16-r1"
+
+src_prepare() {
+   append-cflags -std=gnu99
+}
+
+src_configure() {
+   econf --libdir=/usr/$(get_libdir) \
+   $(use_enable pulseaudio ) \
+   $(use_enable alsa ) \
+   $(use_enable ncurses cwcp ) \
+   $(use_enable qt5 xcwcp )
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   prune_libtool_files
+   dodoc ChangeLog NEWS README
+   if ! use suid ; then
+   fperms 711 /usr/bin/cw
+   if use ncurses ; then
+   fperms 711 /usr/bin/cwcp
+   fi
+   if use qt5 ; then
+   fperms 711 /usr/bin/xcwcp
+   fi
+   fi
+}
+
+pkg_postinst() {
+   if use suid ; then
+   ewarn "You have choosen to install 'cw', 'cwcp' and 'xcwcp' 
setuid"
+   ewarn "by setting USE=suid."
+   ewarn "Be aware that this is a security risk and not 
recommended."
+   ewarn ""
+   ewarn "These files do only need root access if you want to use 
the"
+   ewarn "PC speaker for morse sidetone output. You can 
alternativly"
+   ewarn "drop USE=suid and use sudo."
+   else
+   elog "Be aware that 'cw', 'cwcp' and 'xcwcp' needs root access 
if"
+   elog "you want to use the PC speaker for morse sidetone output."
+   elog "You can call the programs via sudo for that (see 'man 
sudo')."
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: media-radio/ax25-apps/

2015-12-21 Thread Thomas Beierlein
commit: 22009cabd214f60b184e97d27004a8eb4c59101e
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Mon Dec 21 17:56:57 2015 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Mon Dec 21 17:56:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22009cab

media-radio/ax25-apps: add SLOT deps for sys-libs/ncurses

Package-Manager: portage-2.2.26

 media-radio/ax25-apps/ax25-apps-0.0.8_rc4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/ax25-apps/ax25-apps-0.0.8_rc4.ebuild 
b/media-radio/ax25-apps/ax25-apps-0.0.8_rc4.ebuild
index 62f4777..455e04e 100644
--- a/media-radio/ax25-apps/ax25-apps-0.0.8_rc4.ebuild
+++ b/media-radio/ax25-apps/ax25-apps-0.0.8_rc4.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="amd64 ppc x86"
 IUSE=""
 
 RDEPEND=">=dev-libs/libax25-0.0.12_rc2
-   sys-libs/ncurses"
+   sys-libs/ncurses:="
 DEPEND="${RDEPEND}
virtual/pkgconfig
!media-sound/listen



[gentoo-commits] repo/gentoo:master commit in: app-editors/hexedit/

2015-12-21 Thread Thomas Beierlein
commit: 4508a80e9c965899867ca280293e2ae1967d8cc2
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Mon Dec 21 18:05:23 2015 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Mon Dec 21 18:05:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4508a80e

app-editors/hexedit: add SLOT deps for sys-libs/ncurses

Package-Manager: portage-2.2.26

 app-editors/hexedit/hexedit-1.2.13.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/hexedit/hexedit-1.2.13.ebuild 
b/app-editors/hexedit/hexedit-1.2.13.ebuild
index f7363a8..b0d203c 100644
--- a/app-editors/hexedit/hexedit-1.2.13.ebuild
+++ b/app-editors/hexedit/hexedit-1.2.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="alpha amd64 arm hppa ~mips ppc ppc64 s390 sh sparc x86 ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
-DEPEND="sys-libs/ncurses"
+DEPEND="sys-libs/ncurses:="
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${PN}



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

2015-12-21 Thread Patrick Lauer
commit: a601fdac8d2e2e637469e2e2c86dc65a38f50663
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 13:22:19 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 13:22:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a601fdac

media-video/movit: Bump

Package-Manager: portage-2.2.26

 media-video/movit/Manifest   |  1 +
 media-video/movit/movit-1.2.0.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/media-video/movit/Manifest b/media-video/movit/Manifest
index 1416774..5017057 100644
--- a/media-video/movit/Manifest
+++ b/media-video/movit/Manifest
@@ -3,3 +3,4 @@ DIST movit-1.1.1.tar.gz 507273 SHA256 
4fd1a90608a1b06cd9faf20ec99cd4d0a5cb18a904
 DIST movit-1.1.2.tar.gz 858539 SHA256 
417e1810d588e5b4b2e82f05c2b6a86f4d14a3d9d9f4f26f4e009fce064d6a4a SHA512 
082aab059864fd4feb9a66c0e7bab64babedfbdcc442ab5b1522ab60f678039d03e9c1c88095abe0e7196367c3ec1c8a9c90134cf5f97e4af31a3f7cbe98d661
 WHIRLPOOL 
d305bd194d38b6da263471df443ef98c6854b2637eccfc6c376d0b9556a1c5be1e56b1d38f3097a0b2b8f91451728ffa4e476b46b17e829eb534f25c7053b7d1
 DIST movit-1.1.3.tar.gz 510811 SHA256 
897fa5df7b261446dbed439c200f77b18a48e3693a0e6d666acf04eede806360 SHA512 
ca8baa92907421d762a475fd06380fd3c9301df008ff60aaadf584f06185b0beed80633603073252492d4ad7f514ea6e09917862ba4d4630cf3bb0ecffa6f02f
 WHIRLPOOL 
8f7efd99ee75b1e4990eac7a26fc0b0673fdfcecb49dfcc83211a0bd0e4af06a3b7b14b2b744b3823f0df6be49c020e2d9666f73257c53581fb24094330097b2
 DIST movit-1.1.tar.gz 507154 SHA256 
41dcd3ccefbe218b7ccc47a7ac2577cf261f1ea10298f26ff16ffc353adf0f25 SHA512 
ecb84f918b28b507c06cde680da5114fdf19b224a71e202d6f932de0e080e941f7977e590476eda9ffc9fc5839126b1f2d1056dd80039ced894281a51eebcf30
 WHIRLPOOL 
c349a9f12b5966e57fa0b09811bbf3cf4a36abbb06b3df5cc3b9fa1b42efa7e902be9625b09e161d0250034aa05c3901db5ec9e24b8af554fb046ad725cda04a
+DIST movit-1.2.0.tar.gz 534145 SHA256 
aeda1212288277ca136f2483765577a43ebd718be835dde73d81cf4b682fd473 SHA512 
7c75ae60e2b5248e2691074d67005728555d6b7fea320ac9d7bcd401c1640467f18f78e446e57894d9b3b3b6a597ee0603ccdd963f21a408e96c7f0d0f5ac154
 WHIRLPOOL 
3b937f8964e79066f2b9811f80d0bd8d97375d3a2154a8763f5caac0a416432c6229de7c711edd606f1d7b7970ba2da97b2b2647b61b435a677267c0d24187ac

diff --git a/media-video/movit/movit-1.2.0.ebuild 
b/media-video/movit/movit-1.2.0.ebuild
new file mode 100644
index 000..0892714
--- /dev/null
+++ b/media-video/movit/movit-1.2.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# no sane way to use OpenGL from within tests?
+RESTRICT="test"
+
+DESCRIPTION="Modern Video Toolkit"
+HOMEPAGE="http://movit.sesse.net/;
+# Tests need gtest, makefile unconditionally builds tests, so ... yey!
+SRC_URI="http://movit.sesse.net/${P}.tar.gz
+   https://googletest.googlecode.com/files/gtest-1.7.0.zip;
+LICENSE="GPL-2+"
+SLOT="0"
+
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="media-libs/mesa
+   >=dev-cpp/eigen-3.2.0:3
+   media-libs/libepoxy
+   sci-libs/fftw
+   media-libs/libsdl2
+   "
+DEPEND="${RDEPEND}"
+
+src_compile() {
+   GTEST_DIR="${WORKDIR}/gtest-1.7.0" emake
+}
+
+src_test() {
+   GTEST_DIR="${WORKDIR}/gtest-1.7.0" emake check
+}



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

2015-12-21 Thread Justin Bronder
commit: bc0b32818d361a5e857c58d86d1d736c2e72df19
Author: Justin Bronder  gentoo  org>
AuthorDate: Mon Dec 21 13:47:41 2015 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Dec 21 13:47:41 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=bc0b3281

sys-cluster/mpich:  bump 3.2

Package-Manager: portage-2.2.20.1

 sys-cluster/mpich/ChangeLog   |   5 ++
 sys-cluster/mpich/mpich-3.2-r1.ebuild | 122 ++
 2 files changed, 127 insertions(+)

diff --git a/sys-cluster/mpich/ChangeLog b/sys-cluster/mpich/ChangeLog
index f95ed1f..1d62518 100644
--- a/sys-cluster/mpich/ChangeLog
+++ b/sys-cluster/mpich/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*mpich-3.2-r1 (21 Dec 2015)
+
+  21 Dec 2015; Justin Bronder  +mpich-3.2-r1.ebuild:
+  sys-cluster/mpich:  bump 3.2
+
   21 Nov 2015; Christoph Junghans  -mpich-3.1.3-r99.ebuild:
   sys-cluster/mpich: bye bye multilib version
 

diff --git a/sys-cluster/mpich/mpich-3.2-r1.ebuild 
b/sys-cluster/mpich/mpich-3.2-r1.ebuild
new file mode 100644
index 000..2f0fc84
--- /dev/null
+++ b/sys-cluster/mpich/mpich-3.2-r1.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+FORTRAN_NEEDED=fortran
+
+inherit fortran-2 mpi
+
+MY_PV=${PV/_/}
+DESCRIPTION="A high performance and portable MPI implementation"
+HOMEPAGE="http://www.mpich.org/;
+SRC_URI="http://www.mpich.org/static/downloads/${PV}/${P}.tar.gz;
+
+SLOT="0"
+LICENSE="mpich"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+cxx doc fortran mpi-threads romio threads"
+
+COMMON_DEPEND="
+   dev-libs/libaio
+   >=sys-apps/hwloc-1.9
+   romio? ( net-fs/nfs-utils )
+   $(mpi_imp_deplist)"
+
+DEPEND="${COMMON_DEPEND}
+   dev-lang/perl
+   sys-devel/libtool"
+
+RDEPEND="${COMMON_DEPEND}"
+
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+pkg_setup() {
+   FORTRAN_STANDARD="77 90"
+   fortran-2_pkg_setup
+   MPI_ESELECT_FILE="eselect.mpi.mpich"
+
+   if use mpi-threads && ! use threads; then
+   ewarn "mpi-threads requires threads, assuming that's what you 
want"
+   fi
+}
+
+src_prepare() {
+   # Using MPICHLIB_LDFLAGS doesn't seem to fully work.
+   sed -i 's| *@WRAPPER_LDFLAGS@ *||' \
+   src/packaging/pkgconfig/mpich.pc.in \
+   src/env/*.in \
+   || die
+}
+
+src_configure() {
+   local c="--enable-shared"
+   local hydra_c="--with-hwloc-prefix=/usr"
+
+   # The configure statements can be somewhat confusing, as they
+   # don't all show up in the top level configure, however, they
+   # are picked up in the children directories.  Hence the separate
+   # local vars.
+
+   if use mpi-threads; then
+   # MPI-THREAD requries threading.
+   c="${c} --with-thread-package=pthreads"
+   c="${c} --enable-threads=runtime"
+   else
+   if use threads ; then
+   c="${c} --with-thread-package=pthreads"
+   else
+   c="${c} --with-thread-package=none"
+   fi
+   c="${c} --enable-threads=single"
+   fi
+
+   if ! mpi_classed; then
+   c="${c} --sysconfdir=${EPREFIX}/etc/${PN}"
+   c="${c} --docdir=${EPREFIX}/usr/share/doc/${PF}"
+   else
+   c="${c} --docdir=$(mpi_root)/usr/share/doc/${PF}"
+   fi
+
+   export MPICHLIB_CFLAGS=${CFLAGS}
+   export MPICHLIB_CPPFLAGS=${CPPFLAGS}
+   export MPICHLIB_CXXFLAGS=${CXXFLAGS}
+   export MPICHLIB_FFLAGS=${FFLAGS}
+   export MPICHLIB_FCFLAGS=${FCFLAGS}
+   export MPICHLIB_LDFLAGS=${LDFLAGS}
+   unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
+
+   econf $(mpi_econf_args) ${c} \
+   --with-pm=hydra \
+   --disable-fast \
+   --enable-versioning \
+   ${hydra_c} \
+   $(use_enable romio) \
+   $(use_enable cxx) \
+   $(use_enable fortran f77) \
+   $(use_enable fortran fc)
+}
+
+src_test() {
+   emake -j1 check
+}
+
+src_install() {
+   local d=$(echo ${ED}/$(mpi_root)/ | sed 's,///*,/,g')
+
+   default
+
+   mpi_dodir /usr/share/doc/${PF}
+   mpi_dodoc COPYRIGHT README{,.envvar} CHANGES RELEASE_NOTES
+   mpi_newdoc src/pm/hydra/README README.hydra
+   if use romio; then
+   mpi_newdoc src/mpi/romio/README README.romio
+   fi
+
+   if ! use doc; then
+   rm -rf "${d}"usr/share/doc/${PF}/www*
+   fi
+
+   mpi_imp_add_eselect
+}



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

2015-12-21 Thread Justin Bronder
commit: fe5bc51af6f3cd61a00b469f7bab95e038a3dc46
Author: Justin Bronder  gentoo  org>
AuthorDate: Mon Dec 21 13:54:29 2015 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Mon Dec 21 13:54:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe5bc51a

sys-cluster/mpich:  bump 3.2

Package-Manager: portage-2.2.20.1

 sys-cluster/mpich/Manifest |   1 +
 sys-cluster/mpich/mpich-3.2.ebuild | 114 +
 2 files changed, 115 insertions(+)

diff --git a/sys-cluster/mpich/Manifest b/sys-cluster/mpich/Manifest
index f630841..ac95bab 100644
--- a/sys-cluster/mpich/Manifest
+++ b/sys-cluster/mpich/Manifest
@@ -1,3 +1,4 @@
 DIST mpich-3.0.4.tar.gz 10921075 SHA256 
cf638c85660300af48b6f776e5ecd35b5378d5905ec5d34c3da7a27da0acf0b3 SHA512 
f9d8b2cf561fe5f85c12512ef4dd7b0cf5ec8b53ddb07bfa0d1db2e3c8ae0382c77e0661f46b82ec96b05d18ea2d25328bb84e9528ac06e5925f30ec8ef030d0
 WHIRLPOOL 
52c811d1adcba26424bb3f05b7b97faff16ab3762782474fcde5f49e9ca77155fb91d80967120d9277eed2adb116443afe444671eb6315a610587d55ac4ec9ed
 DIST mpich-3.1.3.tar.gz 11487313 SHA256 
afb690aa828467721e9d9ab233fe00c68cae2b7b930d744cb5f7f3eb08c8602c SHA512 
3071d75e925808c13ea528aaff81a2ee44a4eb9732c74005a0cedd5a710aeafc691d30c7a035ae0aba14bd2b837c1c788202a7612599d3ffac8e5a9299467c09
 WHIRLPOOL 
ade5a2ab7a98a3ee353a0b41ad8c57b8676ea7e381e625c01237519c88e9e16c5330cf6c569707ded26462022dd8647ba0a24dc2c1559240781b0e4fa1c69511
 DIST mpich-3.1.4.tar.gz 11325036 SHA256 
f68b5330e94306c00ca5a1c0e8e275c7f53517d01d6c524d51ce9359d240466b SHA512 
55bd4d12a42b9ebc116016bd777eb2b8ed8c51e69f5ea5faf823eba0aeb7eadfe2848c4cca3032aa38841a25a4902c07cec2409811149a057c4aa99a25c6b6da
 WHIRLPOOL 
243ea40dd67b7f8e6fecde58740c21703833ca2857922ad59c5744888145bbf0ee934a69128818cd5bb91f39a3e842c26b2eced20ba23e08c8968b903f1f9992
+DIST mpich-3.2.tar.gz 11862150 SHA256 
0778679a6b693d7b7caff37ff9d2856dc2bfc51318bf8373859bfa74253da3dc SHA512 
083c51655b4355827bd7fa4fe528046e2bc77b7747d869ff87b79fa324c3cc2a9b5640ccb7271490ccc0dd627e354a33a449bbab448501bbfddcfe5f999ee717
 WHIRLPOOL 
4196be94f5f5766f06e3f5893153e6d44fe93a5ef17dfcf3fce075b1506d5b762ba175dceeac0668284adc9f4a846917801f2138ed2d81f464d3a191b3f88f1c

diff --git a/sys-cluster/mpich/mpich-3.2.ebuild 
b/sys-cluster/mpich/mpich-3.2.ebuild
new file mode 100644
index 000..3b08bfb
--- /dev/null
+++ b/sys-cluster/mpich/mpich-3.2.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+FORTRAN_NEEDED=fortran
+
+inherit fortran-2
+
+MY_PV=${PV/_/}
+DESCRIPTION="A high performance and portable MPI implementation"
+HOMEPAGE="http://www.mpich.org/;
+SRC_URI="http://www.mpich.org/static/downloads/${PV}/${P}.tar.gz;
+
+SLOT="0"
+LICENSE="mpich"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+cxx doc fortran mpi-threads romio threads"
+
+COMMON_DEPEND="
+   dev-libs/libaio
+   >=sys-apps/hwloc-1.9
+   romio? ( net-fs/nfs-utils )"
+
+DEPEND="${COMMON_DEPEND}
+   dev-lang/perl
+   sys-devel/libtool"
+
+RDEPEND="${COMMON_DEPEND}
+   !sys-cluster/mpich2
+   !sys-cluster/openmpi"
+
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+pkg_setup() {
+   FORTRAN_STANDARD="77 90"
+   fortran-2_pkg_setup
+
+   if use mpi-threads && ! use threads; then
+   ewarn "mpi-threads requires threads, assuming that's what you 
want"
+   fi
+}
+
+src_prepare() {
+   # Using MPICHLIB_LDFLAGS doesn't seem to fully work.
+   sed -i 's| *@WRAPPER_LDFLAGS@ *||' \
+   src/packaging/pkgconfig/mpich.pc.in \
+   src/env/*.in \
+   || die
+}
+
+src_configure() {
+   local c="--enable-shared"
+   local hydra_c="--with-hwloc-prefix=/usr"
+
+   # The configure statements can be somewhat confusing, as they
+   # don't all show up in the top level configure, however, they
+   # are picked up in the children directories.  Hence the separate
+   # local vars.
+
+   if use mpi-threads; then
+   # MPI-THREAD requries threading.
+   c="${c} --with-thread-package=pthreads"
+   c="${c} --enable-threads=runtime"
+   else
+   if use threads ; then
+   c="${c} --with-thread-package=pthreads"
+   else
+   c="${c} --with-thread-package=none"
+   fi
+   c="${c} --enable-threads=single"
+   fi
+
+   c="${c} --sysconfdir=${EPREFIX}/etc/${PN}"
+   c="${c} --docdir=${EPREFIX}/usr/share/doc/${PF}"
+
+   export MPICHLIB_CFLAGS=${CFLAGS}
+   export MPICHLIB_CPPFLAGS=${CPPFLAGS}
+   export MPICHLIB_CXXFLAGS=${CXXFLAGS}
+   export MPICHLIB_FFLAGS=${FFLAGS}
+   export MPICHLIB_FCFLAGS=${FCFLAGS}
+   export MPICHLIB_LDFLAGS=${LDFLAGS}
+   unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS
+
+   econf ${c} \
+   

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

2015-12-21 Thread Lars Wendler
commit: e740ebc3aa18fe57db41182f24cc50f8845134ab
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 21 13:59:05 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 21 13:59:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e740ebc3

net-misc/htpdate: Bump to version 1.1.3

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

 net-misc/htpdate/Manifest |  1 +
 net-misc/htpdate/htpdate-1.1.3.ebuild | 41 +++
 2 files changed, 42 insertions(+)

diff --git a/net-misc/htpdate/Manifest b/net-misc/htpdate/Manifest
index e8c9fa8..e929b67 100644
--- a/net-misc/htpdate/Manifest
+++ b/net-misc/htpdate/Manifest
@@ -1,3 +1,4 @@
 DIST htpdate-1.0.7.tar.gz 16848 SHA256 
ba0b3f7b42306f2e2e146624785f80cc472eac9e7885007df50af0e1a21735c4 SHA512 
83408545d1d2cc794f62efaf348e54cc2ce47dfb27815710e92d0c7d34360a581e637ef82424030c8a4fcabcc9a07205518fac08f426b37c7c4519cfa6696360
 WHIRLPOOL 
e2e949d20b8d4afecd6c3c09aefa203417b16a4061e6d2fe05cf5e37d0dc736604ed5e1f0d8c03146eb3b5031ffc3ed8ec3213171513e6140a098bd1d5f268fb
 DIST htpdate-1.1.1.tar.gz 13303 SHA256 
6fca5f13e323d4bf8e4a2ae20dfaae527b745b3cf19e9aeccfe2f211e7cc7a7a SHA512 
bfc463692b7c4fb962c0b6f34e6063d2506e383490e6d6972b7da3740fbd0b835a07cddd3470bea29f8d2770160fba5f87fd3d768cb27a1f04ea9f5a39522918
 WHIRLPOOL 
7faa7ce4dd96d48a2a7ddc20a61a7230d9658042f3c9e39229ade41a312d78a0d5827a3348b2671de36fdbcb0aa35873fa5bee6e0c13218e94fbc23f3f2730b7
 DIST htpdate-1.1.2.tar.gz 13330 SHA256 
6babf7db26f8734aa245a261ebdd6b92989ed4ffd1db40f8480b33d4150488d2 SHA512 
d20234b3f04499b77f7050522c23dc6c3d8fc27a22368e8553340eec76ce35964f7f9808a0e047840fcdbb1e61dfd9fa9e9cdb5d88c42d5f8970a62203fde424
 WHIRLPOOL 
82b8e088c4e45264abbd2a35c25729cb6afc3f3d8e47d11bfc06b0bb7f89eb85a8a5c475dcbf1c9007288248eef351291184f17d0b615fe937f7277f431b3c05
+DIST htpdate-1.1.3.tar.gz 13421 SHA256 
b1d84d16ea8755352d187c346e78316ee545e2fbc3719cea001cdfaa3326cf41 SHA512 
b6924f49165768e65b2a843db176aa9e8208bdc9e7390fbd2e802dcb1016d9fc897c717743ae559f7a6b17b18a44294a7b8adfa68b547ed8bf66135a12cc5b30
 WHIRLPOOL 
32d13472a233102e2095e9c6cf27df40d51b4b160c865ae6ea569611721bac3650b3b05840fc70478dccf490c0a1f046c42d5293a36028e46598272e3f6a6621

diff --git a/net-misc/htpdate/htpdate-1.1.3.ebuild 
b/net-misc/htpdate/htpdate-1.1.3.ebuild
new file mode 100644
index 000..d700482
--- /dev/null
+++ b/net-misc/htpdate/htpdate-1.1.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit readme.gentoo toolchain-funcs unpacker
+
+DESCRIPTION="Synchronize local workstation with time offered by remote 
webservers"
+HOMEPAGE="http://www.vervest.org/fiki/bin/view/HTP/DownloadC;
+SRC_URI="http://www.vervest.org/htp/archive/c/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 
~amd64-linux ~x86-linux"
+
+DEPEND=""
+RDEPEND=""
+
+DOC_CONTENTS="If you would like to run htpdate as a daemon, set
+appropriate http servers in /etc/conf.d/htpdate!"
+
+src_prepare() {
+   # Use more standard adjtimex() to fix uClibc builds.
+   sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die
+}
+
+src_compile() {
+   emake CFLAGS="-Wall ${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)"
+}
+
+src_install() {
+   dosbin htpdate
+   doman htpdate.8
+   dodoc README Changelog
+
+   newconfd "${FILESDIR}"/htpdate.conf htpdate
+   newinitd "${FILESDIR}"/htpdate.init-r1 htpdate
+
+   readme.gentoo_create_doc
+}



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

2015-12-21 Thread Lars Wendler
commit: 2a9e507db0e653ee91e12b5b603b231e115e5377
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 21 13:59:38 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 21 13:59:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a9e507d

net-misc/htpdate: Removed old.

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

 net-misc/htpdate/Manifest |  1 -
 net-misc/htpdate/htpdate-1.1.1.ebuild | 41 ---
 2 files changed, 42 deletions(-)

diff --git a/net-misc/htpdate/Manifest b/net-misc/htpdate/Manifest
index e929b67..8ca591d 100644
--- a/net-misc/htpdate/Manifest
+++ b/net-misc/htpdate/Manifest
@@ -1,4 +1,3 @@
 DIST htpdate-1.0.7.tar.gz 16848 SHA256 
ba0b3f7b42306f2e2e146624785f80cc472eac9e7885007df50af0e1a21735c4 SHA512 
83408545d1d2cc794f62efaf348e54cc2ce47dfb27815710e92d0c7d34360a581e637ef82424030c8a4fcabcc9a07205518fac08f426b37c7c4519cfa6696360
 WHIRLPOOL 
e2e949d20b8d4afecd6c3c09aefa203417b16a4061e6d2fe05cf5e37d0dc736604ed5e1f0d8c03146eb3b5031ffc3ed8ec3213171513e6140a098bd1d5f268fb
-DIST htpdate-1.1.1.tar.gz 13303 SHA256 
6fca5f13e323d4bf8e4a2ae20dfaae527b745b3cf19e9aeccfe2f211e7cc7a7a SHA512 
bfc463692b7c4fb962c0b6f34e6063d2506e383490e6d6972b7da3740fbd0b835a07cddd3470bea29f8d2770160fba5f87fd3d768cb27a1f04ea9f5a39522918
 WHIRLPOOL 
7faa7ce4dd96d48a2a7ddc20a61a7230d9658042f3c9e39229ade41a312d78a0d5827a3348b2671de36fdbcb0aa35873fa5bee6e0c13218e94fbc23f3f2730b7
 DIST htpdate-1.1.2.tar.gz 13330 SHA256 
6babf7db26f8734aa245a261ebdd6b92989ed4ffd1db40f8480b33d4150488d2 SHA512 
d20234b3f04499b77f7050522c23dc6c3d8fc27a22368e8553340eec76ce35964f7f9808a0e047840fcdbb1e61dfd9fa9e9cdb5d88c42d5f8970a62203fde424
 WHIRLPOOL 
82b8e088c4e45264abbd2a35c25729cb6afc3f3d8e47d11bfc06b0bb7f89eb85a8a5c475dcbf1c9007288248eef351291184f17d0b615fe937f7277f431b3c05
 DIST htpdate-1.1.3.tar.gz 13421 SHA256 
b1d84d16ea8755352d187c346e78316ee545e2fbc3719cea001cdfaa3326cf41 SHA512 
b6924f49165768e65b2a843db176aa9e8208bdc9e7390fbd2e802dcb1016d9fc897c717743ae559f7a6b17b18a44294a7b8adfa68b547ed8bf66135a12cc5b30
 WHIRLPOOL 
32d13472a233102e2095e9c6cf27df40d51b4b160c865ae6ea569611721bac3650b3b05840fc70478dccf490c0a1f046c42d5293a36028e46598272e3f6a6621

diff --git a/net-misc/htpdate/htpdate-1.1.1.ebuild 
b/net-misc/htpdate/htpdate-1.1.1.ebuild
deleted file mode 100644
index d700482..000
--- a/net-misc/htpdate/htpdate-1.1.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit readme.gentoo toolchain-funcs unpacker
-
-DESCRIPTION="Synchronize local workstation with time offered by remote 
webservers"
-HOMEPAGE="http://www.vervest.org/fiki/bin/view/HTP/DownloadC;
-SRC_URI="http://www.vervest.org/htp/archive/c/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 
~amd64-linux ~x86-linux"
-
-DEPEND=""
-RDEPEND=""
-
-DOC_CONTENTS="If you would like to run htpdate as a daemon, set
-appropriate http servers in /etc/conf.d/htpdate!"
-
-src_prepare() {
-   # Use more standard adjtimex() to fix uClibc builds.
-   sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die
-}
-
-src_compile() {
-   emake CFLAGS="-Wall ${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)"
-}
-
-src_install() {
-   dosbin htpdate
-   doman htpdate.8
-   dodoc README Changelog
-
-   newconfd "${FILESDIR}"/htpdate.conf htpdate
-   newinitd "${FILESDIR}"/htpdate.init-r1 htpdate
-
-   readme.gentoo_create_doc
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_roslaunch/

2015-12-21 Thread Alexis Ballier
commit: 39ad93feb2db8d24b72da248eea52addac6e1cb6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Dec 21 14:21:32 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Dec 21 14:22:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39ad93fe

dev-ros/test_roslaunch: rostest is mandatory at buildtime, bug #568960

Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier  gentoo.org>

 .../{test_roslaunch-.ebuild => test_roslaunch-1.11.16-r1.ebuild}| 2 +-
 dev-ros/test_roslaunch/test_roslaunch-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ros/test_roslaunch/test_roslaunch-.ebuild 
b/dev-ros/test_roslaunch/test_roslaunch-1.11.16-r1.ebuild
similarity index 92%
copy from dev-ros/test_roslaunch/test_roslaunch-.ebuild
copy to dev-ros/test_roslaunch/test_roslaunch-1.11.16-r1.ebuild
index 6658599..e5299e8 100644
--- a/dev-ros/test_roslaunch/test_roslaunch-.ebuild
+++ b/dev-ros/test_roslaunch/test_roslaunch-1.11.16-r1.ebuild
@@ -18,8 +18,8 @@ IUSE=""
 
 RDEPEND=""
 DEPEND="${RDEPEND}
+   dev-ros/rostest[${PYTHON_USEDEP}]
test? (
-   dev-ros/rostest[${PYTHON_USEDEP}]
dev-ros/roslaunch[${PYTHON_USEDEP}]
dev-python/rospkg[${PYTHON_USEDEP}]
)

diff --git a/dev-ros/test_roslaunch/test_roslaunch-.ebuild 
b/dev-ros/test_roslaunch/test_roslaunch-.ebuild
index 6658599..e5299e8 100644
--- a/dev-ros/test_roslaunch/test_roslaunch-.ebuild
+++ b/dev-ros/test_roslaunch/test_roslaunch-.ebuild
@@ -18,8 +18,8 @@ IUSE=""
 
 RDEPEND=""
 DEPEND="${RDEPEND}
+   dev-ros/rostest[${PYTHON_USEDEP}]
test? (
-   dev-ros/rostest[${PYTHON_USEDEP}]
dev-ros/roslaunch[${PYTHON_USEDEP}]
dev-python/rospkg[${PYTHON_USEDEP}]
)



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/chicken/

2015-12-21 Thread Patrick Lauer
commit: 033cccd2140498f005a09a5b7b69c4f161af3e6c
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:24:40 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:25:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=033cccd2

dev-scheme/chicken: Remove unneeded useflag descriptions from metadata.xml

 dev-scheme/chicken/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-scheme/chicken/metadata.xml b/dev-scheme/chicken/metadata.xml
index cc5af33..7f64529 100644
--- a/dev-scheme/chicken/metadata.xml
+++ b/dev-scheme/chicken/metadata.xml
@@ -18,8 +18,4 @@ standard, the Revised5 Report on the Algorithmic Language 
Scheme (R5RS ), and
 includes many enhancements and extensions. CHICKEN runs on MacOS X, Windows, 
and
 many Unix flavours.
 
-
-   Enable testing parallel build mode added in 
-   4.7.3 version. Can still be not working
-
 



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

2015-12-21 Thread Patrick Lauer
commit: 71b65accd8833f3f19da25f2e7b4034db2c1a8ab
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:20:45 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:20:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71b65acc

app-text/rnv: Remove unneeded useflag descriptions from metadata.xml

 app-text/rnv/metadata.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/app-text/rnv/metadata.xml b/app-text/rnv/metadata.xml
index f9d7387..64bd343 100644
--- a/app-text/rnv/metadata.xml
+++ b/app-text/rnv/metadata.xml
@@ -11,9 +11,4 @@

rnv

-   
-   
-   Enable scheme support based on dev-scheme/scm
-   
-   
 



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

2015-12-21 Thread Patrick Lauer
commit: 08746ed99e2c122f17f49d1f9e3c084fdcbae19a
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:22:46 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:23:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08746ed9

dev-python/sympy: Remove unneeded useflag descriptions from metadata.xml

 dev-python/sympy/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/sympy/metadata.xml b/dev-python/sympy/metadata.xml
index 6a28c74..d24ae63 100644
--- a/dev-python/sympy/metadata.xml
+++ b/dev-python/sympy/metadata.xml
@@ -21,7 +21,6 @@
 Add app-office/texmacs
   interface
 Add support for dev-python/theano
-Use mpmath from portage instead of the bundled 
one
   
   
 sympy



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

2015-12-21 Thread Justin Lecher
commit: c14fee852bfbf9a4681123e09a9048ee89accb8d
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 21 14:24:46 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 21 14:24:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c14fee85

app-portage/eclass-manpages: Use portageq to detect overlay locations

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

 .../eclass-manpages-20150814-r1.ebuild | 40 ++
 1 file changed, 40 insertions(+)

diff --git a/app-portage/eclass-manpages/eclass-manpages-20150814-r1.ebuild 
b/app-portage/eclass-manpages/eclass-manpages-20150814-r1.ebuild
new file mode 100644
index 000..eafea7c
--- /dev/null
+++ b/app-portage/eclass-manpages/eclass-manpages-20150814-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+DESCRIPTION="collection of Gentoo eclass manpages"
+HOMEPAGE="https://www.gentoo.org/;
+SRC_URI=""
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~x86-solaris"
+IUSE=""
+
+S=${WORKDIR}
+
+genit() {
+   local e=${1:-${ECLASSDIR}}
+   einfo "Generating man pages from: ${e}"
+   # Need `bash` because the .sh isn't +x on the servers #451352
+   env ECLASSDIR=${e} bash "${FILESDIR}"/eclass-to-manpage.sh || die
+}
+
+src_compile() {
+   # First process any eclasses found in overlays.  Then process
+   # the main eclassdir last so that its output will clobber anything
+   # that might have come from overlays.  Main tree wins!
+   local o e
+   for o in $(portageq get_repos /) ; do
+   e="$(portageq get_repo_path / ${o})/eclass"
+   [[ -d ${e} ]] || continue
+   genit "${e}" || die
+   done
+   genit || die
+}
+
+src_install() {
+   doman *.5
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_roslaunch/

2015-12-21 Thread Alexis Ballier
commit: 160dfa58152a48959a14360e6f2b3a3eb4bf6bf7
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Dec 21 14:22:49 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Dec 21 14:22:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160dfa58

dev-ros/test_roslaunch: remove old

Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/test_roslaunch/Manifest|  2 --
 .../test_roslaunch/test_roslaunch-1.11.14.ebuild   | 26 --
 .../test_roslaunch/test_roslaunch-1.11.15.ebuild   | 26 --
 .../test_roslaunch/test_roslaunch-1.11.16.ebuild   | 26 --
 4 files changed, 80 deletions(-)

diff --git a/dev-ros/test_roslaunch/Manifest b/dev-ros/test_roslaunch/Manifest
index 1e41e2e..645f05b 100644
--- a/dev-ros/test_roslaunch/Manifest
+++ b/dev-ros/test_roslaunch/Manifest
@@ -1,3 +1 @@
-DIST ros_comm-1.11.14.tar.gz 945041 SHA256 
8e7beff35711b1918501c69cca4f29648d4d4207878edab069bcd59d515c78f3 SHA512 
be768faa0a2f45c464e963934a95dc617cac6c3fcec2388602a27846774c25b882b5139099ce10d1d051a21d5938819942e079836d14618071bc7ad90ee78bab
 WHIRLPOOL 
e047ce984086655294c20dbf0715cc29f51ec358f075f02de80c5de0d4ef8059990dc8312d78d7a7fa91c4a974dc21cba15d6eacafe02fd3df527770e50f75a5
-DIST ros_comm-1.11.15.tar.gz 946139 SHA256 
532b8cc764e9ca8765484a4468b8537c1ddd84342896267cf3e9f6b19c1b7203 SHA512 
8eea3fc948093a7640851f18856f2a20748afb80f935e28d230dc2095956d753bde5081dcd020d09638d9c5d63e031257515b6c6874286c03737507e67cce270
 WHIRLPOOL 
5e0a971f4312dce99c2e2c11841445cea999dbe5b1ebde3ce26badb9a7eaf9fb84220ed5d1e0088e85835104ddad3cd4d555708d010f83da6e84d257bafe699b
 DIST ros_comm-1.11.16.tar.gz 947310 SHA256 
b8f48c57d58b623c0b9828476fd8fc785570238d1e117fddaae9aaf8600915d3 SHA512 
a97678acbafbe33d063f2c69b42e11bc4815c18ba9bb701542fb272d95410d2c1c2a133aa40ad2211ea1b0c2535938a364adac8099b5231c50e37fa42fff5d3d
 WHIRLPOOL 
16dbdb2f754f16ae73b989e443de9f9e4fdbea2f9411c63d02a53a46517fb565dd97d5ea2b155833bcd592d7e9dd23ae3e7676dd1a49ea3dd509ab47f28082f2

diff --git a/dev-ros/test_roslaunch/test_roslaunch-1.11.14.ebuild 
b/dev-ros/test_roslaunch/test_roslaunch-1.11.14.ebuild
deleted file mode 100644
index 6658599..000
--- a/dev-ros/test_roslaunch/test_roslaunch-1.11.14.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-ROS_REPO_URI="https://github.com/ros/ros_comm;
-KEYWORDS="~amd64 ~arm"
-ROS_SUBDIR=test/${PN}
-PYTHON_COMPAT=( python2_7 )
-
-inherit ros-catkin
-
-DESCRIPTION="Unit tests for roslaunch"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   test? (
-   dev-ros/rostest[${PYTHON_USEDEP}]
-   dev-ros/roslaunch[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   )
-"

diff --git a/dev-ros/test_roslaunch/test_roslaunch-1.11.15.ebuild 
b/dev-ros/test_roslaunch/test_roslaunch-1.11.15.ebuild
deleted file mode 100644
index 6658599..000
--- a/dev-ros/test_roslaunch/test_roslaunch-1.11.15.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-ROS_REPO_URI="https://github.com/ros/ros_comm;
-KEYWORDS="~amd64 ~arm"
-ROS_SUBDIR=test/${PN}
-PYTHON_COMPAT=( python2_7 )
-
-inherit ros-catkin
-
-DESCRIPTION="Unit tests for roslaunch"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   test? (
-   dev-ros/rostest[${PYTHON_USEDEP}]
-   dev-ros/roslaunch[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   )
-"

diff --git a/dev-ros/test_roslaunch/test_roslaunch-1.11.16.ebuild 
b/dev-ros/test_roslaunch/test_roslaunch-1.11.16.ebuild
deleted file mode 100644
index 6658599..000
--- a/dev-ros/test_roslaunch/test_roslaunch-1.11.16.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-ROS_REPO_URI="https://github.com/ros/ros_comm;
-KEYWORDS="~amd64 ~arm"
-ROS_SUBDIR=test/${PN}
-PYTHON_COMPAT=( python2_7 )
-
-inherit ros-catkin
-
-DESCRIPTION="Unit tests for roslaunch"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   test? (
-   dev-ros/rostest[${PYTHON_USEDEP}]
-   dev-ros/roslaunch[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   )
-"



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

2015-12-21 Thread Patrick Lauer
commit: 1018b291732cc342d16a2988c8e74482600a90c9
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:21:46 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:21:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1018b291

dev-java/javacup: Remove unneeded useflag descriptions from metadata.xml

 dev-java/javacup/metadata.xml | 6 --
 1 file changed, 6 deletions(-)

diff --git a/dev-java/javacup/metadata.xml b/dev-java/javacup/metadata.xml
index 3364029..7303cef 100644
--- a/dev-java/javacup/metadata.xml
+++ b/dev-java/javacup/metadata.xml
@@ -2,10 +2,4 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
java
-   
-   
-   Build against system dev-java/jflex rather 
than the bundled one.
-   Disabling this flag allows breaking the circular 
dependency when necessary.
-   
-   
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/mobile-broadband-provider-info/

2015-12-21 Thread Gilles Dartiguelongue
commit: d079bf241c426837e399e0efcf9ac55175403ffd
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Dec 21 08:03:37 2015 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Dec 21 08:14:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d079bf24

net-misc/mobile-broadband-provider-info: version bump to 20151214

Package-Manager: portage-2.2.26

 net-misc/mobile-broadband-provider-info/Manifest|  1 +
 .../mobile-broadband-provider-info-20151214.ebuild  | 21 +
 2 files changed, 22 insertions(+)

diff --git a/net-misc/mobile-broadband-provider-info/Manifest 
b/net-misc/mobile-broadband-provider-info/Manifest
index fde8e11..9f3908d 100644
--- a/net-misc/mobile-broadband-provider-info/Manifest
+++ b/net-misc/mobile-broadband-provider-info/Manifest
@@ -1 +1,2 @@
 DIST mobile-broadband-provider-info-20120614.tar.xz 73600 SHA256 
72507a732e0cd16cf27424bb094b1c7a03e2206c119ad124722a283e587755f1 SHA512 
780f9381d2b03a329cc420eca4dfcc5e89c0c29114db028d42aff417f09d7c01f3b474df27f6ecc838ae3e0a78a9efcb5ffe90e393b4ad71152d2e12231768b1
 WHIRLPOOL 
873b5f1bb3c4dcb3a8ee833747830e7022e35a0bdb79ee0eb27537277211751785d18a126c359b55afd2cbfee6a831d7b012f657778e284b1da5531fab264d4e
+DIST mobile-broadband-provider-info-20151214.tar.xz 84592 SHA256 
8ae45d6f10fed9750e259935804c4f40a4372bb119f0504187e4221896b205a4 SHA512 
c7e01aa00521c51c60ac46523f58bfa9a57c8bc583a895c738e76e02fee5cc31a509582d9e5123f68ccaf309f97194cde1842089be2cb6cb14464d183a31224d
 WHIRLPOOL 
36f07d080d76c68d18d696ee98edb738177fc7a9cbb63145dd145603178e1f4fc2e95a3f7cd1bfc833574ff8e76a6d0ebbdfb43491d463b02a5f83b37834da40

diff --git 
a/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20151214.ebuild
 
b/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20151214.ebuild
new file mode 100644
index 000..0bd1b89
--- /dev/null
+++ 
b/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20151214.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit gnome.org
+
+DESCRIPTION="Database of mobile broadband service providers"
+HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager/MobileBroadband;
+
+LICENSE="CC-PD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+
+DEPEND="
+   test? ( dev-libs/libxml2 )
+"
+
+DOCS="README" # ChangeLog and NEWS are both dead



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-ews/, gnome-extra/evolution-ews/files/

2015-12-21 Thread Gilles Dartiguelongue
commit: 06b189ea18de70381b36aa97fbc18c4c403d5d6f
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Dec 21 07:55:20 2015 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Dec 21 08:14:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06b189ea

gnome-extra/evolution-ews: drop old revisions

Package-Manager: portage-2.2.26

 gnome-extra/evolution-ews/Manifest |  2 -
 .../evolution-ews/evolution-ews-3.16.3-r1.ebuild   | 47 --
 .../evolution-ews/evolution-ews-3.16.4.ebuild  | 41 ---
 .../files/evolution-ews-3.16.3-localedir.patch | 25 
 4 files changed, 115 deletions(-)

diff --git a/gnome-extra/evolution-ews/Manifest 
b/gnome-extra/evolution-ews/Manifest
index cdad3ae..aebec29 100644
--- a/gnome-extra/evolution-ews/Manifest
+++ b/gnome-extra/evolution-ews/Manifest
@@ -1,6 +1,4 @@
 DIST evolution-ews-3.12.11.tar.xz 663288 SHA256 
adbf4efd25e9c2df823a20d14f45027bacbaf14d57ffb5978ae4d33184315e83 SHA512 
4756a185c55118622cff175c3fa8d4a2ae3e82ff926542dfd88d299a7f82e23dc90f66de0ce7e97db8a79dbd2a07d635ab9bdc8fac8f0be3bf10d5efb77a067e
 WHIRLPOOL 
5802f9df6bf3d79c23238672da643cc781c048b1a2b0d4ee20dc6348c998a656567ccca8299ad8aa00e537c82e11fb9e26770d78adb70cf7a6030e802521ac22
-DIST evolution-ews-3.16.3.tar.xz 683876 SHA256 
529d3aa62a6d6d129871d005d95f27b433ad7aeb99f48f395347e18fb0586ad0 SHA512 
462b2c77033b351ddcd72ef4b4f7d8d5e4f7782d1ff4d25760d31fb7c0c1ed303fdc47063932961810b103204a59eccd91d4c888554010cd64c46be5eaeb53d9
 WHIRLPOOL 
56ff69cc1341ab9a7b38cdc8091dc15c3bba72226105f9fd907d800cffbeefe83555732c3e70d7edd76bdf6f9132e9621fd00252bf4a794198c7608c347af1a4
-DIST evolution-ews-3.16.4.tar.xz 684676 SHA256 
fabacc8a3acb5998fa0aa750927defe3cd8198e3a8300190cb613dd779803bd4 SHA512 
62b03cd7f6ddd648d781dafe4a40b0d128edfe21d6a28e15e8c1e70069c694bf1b66dbf9ede0613ca8ca08b234bae2f83280152f80afcdacd01decffdf07808f
 WHIRLPOOL 
cbcb1723779563680e3006c5149c83189d8cde0558a42d716389641be9d52147bd71b0e1259f36a3467fa8d83123c78f8bb01cfd6393bd7e4c4953794c7df716
 DIST evolution-ews-3.16.5.tar.xz 684684 SHA256 
d67e0cbf94800fb7035205bf8fd61ae1413ae7ba79265f8750fde1e7fb25eb58 SHA512 
f046f3e0581cd21441b3737ff2fdd7cc3fa1333c3de8c3cf0be48f39239985cb68cbbd04089a84fa5f31ef84cc4100cf8a9ac0d1e6e261522f6e5305e505c0c7
 WHIRLPOOL 
960c84417c0b6a4374e5f063619c5495afc3b8eb0902b452021513c3a25fa1af148a71b3adbc19b915c857a4337f97de4eb0dac098db97a14e4ec362e36b0f28
 DIST evolution-ews-3.18.2.tar.xz 702672 SHA256 
cc7c767f327dbaeb7961139d98ea17b1685c3584c728bb967140ae6c68458a9f SHA512 
27d730a41c9e55ccc29b19060486253b50db190d41f634ad3ea4032e29b9f43867598e684947a1894dde6ab7731faed68e407ec69f10f1ae759a0537c1a88255
 WHIRLPOOL 
50fed90d8fd54b708ac83260d2d4ff25d2ab0782292fadedae1b9ff36ef19727b5d5575e63129d5a70d94312d3277bd55952a653d0964d5a1d2fd081fc8a
 DIST evolution-ews-3.18.3.tar.xz 703116 SHA256 
b42dd81dfa1db4cdccff5a14a8f233b2b85d26033b585bcad9122d7ccd2b3b13 SHA512 
daa77c2b4f3bcc8c1f56d5e1904b7d4b826ef61298ecce9d6b69e389523071b4da54ee04d73af196d8fed0ccf93a26b8fd32e2f85e2d9f3392da7689b62d7291
 WHIRLPOOL 
a2bb480aa6c56bf8735238653b5645eedd1bd56657027d08b35b2bd76820e8e7190c1b799c1b004656c5c783f015d9ff861519bd092d8957053b6125285a5da9

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.16.3-r1.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.16.3-r1.ebuild
deleted file mode 100644
index a1e8b9e..000
--- a/gnome-extra/evolution-ews/evolution-ews-3.16.3-r1.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"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit autotools eutils gnome2
-
-DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web 
Services"
-HOMEPAGE="https://wiki.gnome.org/Apps/Evolution;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-   dev-db/sqlite:3=
-   >=dev-libs/glib-2.40:2
-   dev-libs/libical:0=
-   >=dev-libs/libxml2-2
-   >=gnome-extra/evolution-data-server-${PV}:0=
-   >=mail-client/evolution-${PV}:2.0
-   >=net-libs/libsoup-2.42:2.4
-   >=x11-libs/gtk+-3:3
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.9
-   >=dev-util/intltool-0.35.5
-   virtual/pkgconfig
-   test? ( net-libs/uhttpmock )
-"
-
-src_prepare() {
-   # Install locales in proper dir (from 'master')
-   epatch "${FILESDIR}"/${PN}-3.16.3-localedir.patch
-   eautoreconf
-}
-
-src_configure() {
-   # We don't have libmspack, needing internal lzx
-   gnome2_src_configure \
-   --with-internal-lzx \
-   $(use_enable test tests)
-}

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.16.4.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.16.4.ebuild
deleted file mode 100644
index f511fc9..000
--- a/gnome-extra/evolution-ews/evolution-ews-3.16.4.ebuild
+++ /dev/null
@@ 

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

2015-12-21 Thread Gilles Dartiguelongue
commit: 4c9edb392a74f11310aa653328dc5b5310c79e66
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Dec 21 07:48:42 2015 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Dec 21 08:14:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c9edb39

mail-client/evolution: version bump to 3.18.3

Package-Manager: portage-2.2.26

 mail-client/evolution/Manifest|   1 +
 mail-client/evolution/evolution-3.18.3.ebuild | 148 ++
 2 files changed, 149 insertions(+)

diff --git a/mail-client/evolution/Manifest b/mail-client/evolution/Manifest
index 07d2397..56485fd 100644
--- a/mail-client/evolution/Manifest
+++ b/mail-client/evolution/Manifest
@@ -1,3 +1,4 @@
 DIST evolution-3.12.11.tar.xz 11360812 SHA256 
f9ec78ae7b9aadb7efc76777c4c93a98f7c61be2a4cfaaf351dd051604e981f5 SHA512 
aef832fbfd6d7449f234e9cb0fdfabc2b75373220e37f5bc58379a2e91a3eacc39e6f8f37078c46adc11d5aa8f2d466974b8dcdcf88a68e68e7ad4a5f659a49c
 WHIRLPOOL 
34a83a6a9be6c2e65fad3732fd86a523282fb8a1cb876da33595cec92c6c16fb8144ad6188381be9c58a301cc4e52fce04e577fd663ebfe31b0f96678126edbc
 DIST evolution-3.16.5.tar.xz 11962476 SHA256 
fef4e8d0a81dc4562f984dddc5ccfee885506a2e030692b5ac6cd50e32efce37 SHA512 
6f99982c42d462cc449eb8c56e22cde1ff628111b52e12fd6c8cbcbf86dbc047431aea2507c7026589bfe54b020443f3a647190de72cc235ce45f72f8d55b222
 WHIRLPOOL 
462e71bd51a0d5be9d5f6d9f965ae3121612ebd56066de43d328dd003cd61ab155af0c48b58868bf220e6956eee01844cbe923ea64fb30a9b88ba10d1e4c74e3
 DIST evolution-3.18.2.tar.xz 12036024 SHA256 
91b83efaba7e6964657eaa17d4ba820335688fe78c6e85d4a0d337303ed14a8c SHA512 
d300b9b25c1251b75d8381a87d89a34a17f11cd42c60f57febf507b09379bd2c7f85148601fa523df668a5efa6d57b805abc13ad1608013762dd4ff1fb48c3e1
 WHIRLPOOL 
19b17f981028b68212fa419597d3f71e6ccc26cce111f6a9595caeb28cba8a4cc43ead66adf2d0ba92ab4cb57f4962110cd2653ef8563c5bb0843082870cbd46
+DIST evolution-3.18.3.tar.xz 12057880 SHA256 
f073b7cbef4ecc3dc4c3e0b80f98198eec577a20cae93e784659e8cf5af7c9b9 SHA512 
8a4e6bda99838ca5a68d1a9868b4da37ca83a974d51883b26460f846c520069567559785d6bb33a5f948b8aeed5fd70a1ef225797a1ad8d75de1195037fc545d
 WHIRLPOOL 
3638c61a4d74e1304621a36f949bc39bd5e4a4d0ccb8235946349f543a06fcecc2361f14523dbd2422ec1d1ef2f95b04a43d65fbd6355e98335057744217cd6a

diff --git a/mail-client/evolution/evolution-3.18.3.ebuild 
b/mail-client/evolution/evolution-3.18.3.ebuild
new file mode 100644
index 000..45f4788
--- /dev/null
+++ b/mail-client/evolution/evolution-3.18.3.ebuild
@@ -0,0 +1,148 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+GNOME2_LA_PUNT="yes"
+
+inherit eutils flag-o-matic readme.gentoo gnome2
+
+DESCRIPTION="Integrated mail, addressbook and calendaring functionality"
+HOMEPAGE="https://wiki.gnome.org/Apps/Evolution;
+
+# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+".
+LICENSE="|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP"
+SLOT="2.0"
+IUSE="+bogofilter crypt highlight ldap map spamassassin spell ssl +weather"
+KEYWORDS="~alpha ~amd64 ~ia64 ~x86 ~x86-fbsd"
+
+# We need a graphical pinentry frontend to be able to ask for the GPG
+# password from inside evolution, bug 160302
+PINENTRY_DEPEND="|| ( app-crypt/pinentry[gnome-keyring] 
app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] )"
+
+# glade-3 support is for maintainers only per configure.ac
+# pst is not mature enough and changes API/ABI frequently
+# dconf explicitely needed for backup plugin
+# gnome-desktop support is optional with --enable-gnome-desktop
+# gnome-autoar (currently disabled because no release has been made)
+COMMON_DEPEND="
+   >=app-crypt/gcr-3.4
+   >=app-text/enchant-1.1.7
+   >=dev-libs/glib-2.40:2[dbus]
+   >=dev-libs/libxml2-2.7.3:2
+   >=gnome-base/gnome-desktop-2.91.3:3=
+   >=gnome-base/gsettings-desktop-schemas-2.91.92
+   >=gnome-extra/evolution-data-server-3.18.2:=[gtk,weather?]
+   >=media-libs/libcanberra-0.25[gtk3]
+   >=net-libs/libsoup-2.42:2.4
+   >=net-libs/webkit-gtk-2.2:3
+   >=x11-libs/cairo-1.9.15:=[glib]
+   >=x11-libs/gdk-pixbuf-2.24:2
+   >=x11-libs/gtk+-3.10:3
+   >=x11-libs/libnotify-0.7:=
+   >=x11-misc/shared-mime-info-0.22
+
+   >=app-text/iso-codes-0.49
+   dev-libs/atk
+   gnome-base/dconf
+   dev-libs/libical:=
+   x11-libs/libSM
+   x11-libs/libICE
+
+   crypt? (
+   >=app-crypt/gnupg-1.4
+   ${PINENTRY_DEPEND}
+   x11-libs/libcryptui )
+   map? (
+   >=media-libs/libchamplain-0.12:0.12[gtk]
+   >=media-libs/clutter-1.0.0:1.0
+   >=media-libs/clutter-gtk-0.90:1.0
+   >=sci-geosciences/geocode-glib-3.10.0
+   x11-libs/mx:1.0 )
+   spell? ( app-text/gtkspell:3 )
+   ldap? ( >=net-nds/openldap-2:= )
+   ssl? (
+   >=dev-libs/nspr-4.6.1:=
+ 

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

2015-12-21 Thread Gilles Dartiguelongue
commit: ef5d296f1e9f606a3abf28a5cd52b058654897c8
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Dec 21 07:54:31 2015 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Dec 21 08:14:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef5d296f

gnome-extra/evolution-ews: version bump to 3.18.3

Package-Manager: portage-2.2.26

 gnome-extra/evolution-ews/Manifest |  1 +
 .../evolution-ews/evolution-ews-3.18.3.ebuild  | 41 ++
 2 files changed, 42 insertions(+)

diff --git a/gnome-extra/evolution-ews/Manifest 
b/gnome-extra/evolution-ews/Manifest
index d7caa4a..cdad3ae 100644
--- a/gnome-extra/evolution-ews/Manifest
+++ b/gnome-extra/evolution-ews/Manifest
@@ -3,3 +3,4 @@ DIST evolution-ews-3.16.3.tar.xz 683876 SHA256 
529d3aa62a6d6d129871d005d95f27b43
 DIST evolution-ews-3.16.4.tar.xz 684676 SHA256 
fabacc8a3acb5998fa0aa750927defe3cd8198e3a8300190cb613dd779803bd4 SHA512 
62b03cd7f6ddd648d781dafe4a40b0d128edfe21d6a28e15e8c1e70069c694bf1b66dbf9ede0613ca8ca08b234bae2f83280152f80afcdacd01decffdf07808f
 WHIRLPOOL 
cbcb1723779563680e3006c5149c83189d8cde0558a42d716389641be9d52147bd71b0e1259f36a3467fa8d83123c78f8bb01cfd6393bd7e4c4953794c7df716
 DIST evolution-ews-3.16.5.tar.xz 684684 SHA256 
d67e0cbf94800fb7035205bf8fd61ae1413ae7ba79265f8750fde1e7fb25eb58 SHA512 
f046f3e0581cd21441b3737ff2fdd7cc3fa1333c3de8c3cf0be48f39239985cb68cbbd04089a84fa5f31ef84cc4100cf8a9ac0d1e6e261522f6e5305e505c0c7
 WHIRLPOOL 
960c84417c0b6a4374e5f063619c5495afc3b8eb0902b452021513c3a25fa1af148a71b3adbc19b915c857a4337f97de4eb0dac098db97a14e4ec362e36b0f28
 DIST evolution-ews-3.18.2.tar.xz 702672 SHA256 
cc7c767f327dbaeb7961139d98ea17b1685c3584c728bb967140ae6c68458a9f SHA512 
27d730a41c9e55ccc29b19060486253b50db190d41f634ad3ea4032e29b9f43867598e684947a1894dde6ab7731faed68e407ec69f10f1ae759a0537c1a88255
 WHIRLPOOL 
50fed90d8fd54b708ac83260d2d4ff25d2ab0782292fadedae1b9ff36ef19727b5d5575e63129d5a70d94312d3277bd55952a653d0964d5a1d2fd081fc8a
+DIST evolution-ews-3.18.3.tar.xz 703116 SHA256 
b42dd81dfa1db4cdccff5a14a8f233b2b85d26033b585bcad9122d7ccd2b3b13 SHA512 
daa77c2b4f3bcc8c1f56d5e1904b7d4b826ef61298ecce9d6b69e389523071b4da54ee04d73af196d8fed0ccf93a26b8fd32e2f85e2d9f3392da7689b62d7291
 WHIRLPOOL 
a2bb480aa6c56bf8735238653b5645eedd1bd56657027d08b35b2bd76820e8e7190c1b799c1b004656c5c783f015d9ff861519bd092d8957053b6125285a5da9

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.18.3.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.18.3.ebuild
new file mode 100644
index 000..f511fc9
--- /dev/null
+++ b/gnome-extra/evolution-ews/evolution-ews-3.18.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2
+
+DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web 
Services"
+HOMEPAGE="https://wiki.gnome.org/Apps/Evolution;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   dev-db/sqlite:3=
+   >=dev-libs/glib-2.40:2
+   dev-libs/libical:0=
+   >=dev-libs/libxml2-2
+   >=gnome-extra/evolution-data-server-${PV}:0=
+   >=mail-client/evolution-${PV}:2.0
+   >=net-libs/libsoup-2.42:2.4
+   >=x11-libs/gtk+-3:3
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.9
+   >=dev-util/intltool-0.35.5
+   virtual/pkgconfig
+   test? ( net-libs/uhttpmock )
+"
+
+src_configure() {
+   # We don't have libmspack, needing internal lzx
+   gnome2_src_configure \
+   --with-internal-lzx \
+   $(use_enable test tests)
+}



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

2015-12-21 Thread Patrick Lauer
commit: ab5ea192b82f9d7a9badee143dd080477fc43f3c
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 09:25:03 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 09:25:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab5ea192

dev-lang/moarvm: Bump

 dev-lang/moarvm/Manifest  |  1 +
 dev-lang/moarvm/moarvm-2015.11.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-lang/moarvm/Manifest b/dev-lang/moarvm/Manifest
index 141514e..27a1762 100644
--- a/dev-lang/moarvm/Manifest
+++ b/dev-lang/moarvm/Manifest
@@ -5,3 +5,4 @@ DIST MoarVM-2015.04.tar.gz 3148539 SHA256 
9dc9efc2e7d16e9d2adf5d17dc377ad22e66c4
 DIST MoarVM-2015.05.tar.gz 3150053 SHA256 
828843eb3da020ee24ff83933b63aebf4aa774b815a3dfa3a758d6334779565e SHA512 
6db5eba4a6b6b6efc5b7a6b3e251428ebdfea9279fc15854238a943377a64f4db26f0e1c3cccf473d07f308f38e97b65983ddc0e1f884d9b6b6fc61034085474
 WHIRLPOOL 
bf7770a67556e0830e6cf71e3e40d53cb41ef3c6970edbd88a2d8d843d98f30e578e7a83a950cffb31a17863efa1d99594737a1a1da8dfdc19dd60092d56b179
 DIST MoarVM-2015.06.tar.gz 3155073 SHA256 
8dfe52630a3fcc749b653591f8a4e7fa723cd204cf0f6133b62b70d1b9c5980f SHA512 
427e036fcee06b65642c9e07ea687c28593a432e2b6f1ee0bc503f6ce32f93f77219bb9e80aec1d1300dc0ba4b92cc467a04896a0ead4b2ef89656d6844913ad
 WHIRLPOOL 
cf6af05afd5eb872954d9e9fcb86d06061e9b7ab80799afdeb10f6e255d15766d6def2054c3e3e79be83fc61d036bc39b14cf57e9f32a7a6c47046a6b90d03e6
 DIST MoarVM-2015.07.tar.gz 3225835 SHA256 
310a4ea6dbaacaf1837606edf6c42170143f60c8e29eb94c7e6fea810b6af10b SHA512 
304d6ce5c50a5091daa02dab0fe328875d392fee29aed397db530324c51b909529ede9f703f18f43bbc398c70ec85958ffed3a8bc06d77e29ec193561165b581
 WHIRLPOOL 
6036fb9cba88a12edc3c5332d706cd11e6604d418217f880f9b409e16b22fd4610bc6c8e606888d69ccee9dbd7836d9ebcc3006a8bf6cce766334192ff3e7f52
+DIST MoarVM-2015.11.tar.gz 3261494 SHA256 
eca0efcd620c51909b6caea8e3c8085f0de1dbb629dc064bea3a916a9bead5cf SHA512 
338f220a0462431425c3c999233470686d342899e56473f9beb3d8a509daf25866b5c4419e28a1f3a4902526690e80b581b8567d6327d49b4c4b9a81eb932569
 WHIRLPOOL 
a03c22ef4fd15864c141df7867cf4089da8382fb457179bdafd95cb2625d69df3a252bf41caa0327ea20ec664aa5ab1553eadb8d59c5ebb0942a8758f143e372

diff --git a/dev-lang/moarvm/moarvm-2015.11.ebuild 
b/dev-lang/moarvm/moarvm-2015.11.ebuild
new file mode 100644
index 000..af54566
--- /dev/null
+++ b/dev-lang/moarvm/moarvm-2015.11.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils multilib
+
+MY_PN="MoarVM"
+
+DESCRIPTION="A 6model-based VM for NQP and Rakudo Perl 6"
+HOMEPAGE="http://moarvm.org;
+SRC_URI="http://moarvm.org/releases/${MY_PN}-${PV}.tar.gz;
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="dev-libs/libuv"
+DEPEND="${RDEPEND}
+   dev-lang/perl"
+
+S="${WORKDIR}/MoarVM-${PV}"
+
+src_configure() {
+   perl Configure.pl --prefix="${D}/usr"|| die
+}
+
+src_install() {
+   emake install
+}



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

2015-12-21 Thread Patrick Lauer
commit: 9768c1fe3d6ad00f626db2f97274c78830954206
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 09:35:08 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 09:35:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9768c1fe

dev-lang/rakudo: Bump

 dev-lang/rakudo/Manifest  |  1 +
 dev-lang/rakudo/rakudo-2015.11.ebuild | 43 +++
 2 files changed, 44 insertions(+)

diff --git a/dev-lang/rakudo/Manifest b/dev-lang/rakudo/Manifest
index 9c9d9e3..58499ac 100644
--- a/dev-lang/rakudo/Manifest
+++ b/dev-lang/rakudo/Manifest
@@ -5,3 +5,4 @@ DIST rakudo-2015.04.tar.gz 2481636 SHA256 
ba61883218617a2993169b4b318bb5b89d2642
 DIST rakudo-2015.05.tar.gz 2503009 SHA256 
81ecf442e5c1720d8112effc5531f171c83907e29510c536cb16c8637d9d8924 SHA512 
eb8774b0642bddbb6f11d3aa6041b25da495080d75fd1a0364002f071044d4e08cd798e2449d7b55622287ec482206e3327e8ba0b5973a17c0369c95c16e5dc1
 WHIRLPOOL 
135c6d3ca2eed5fb8fa529ceeb1a3c842e6174c34c1d259ca573bec0c3b8bea6f5967c8c404cd3cb6bccd6188eadf82bbb4407a01f7bf4ae4fb03dfaf7198181
 DIST rakudo-2015.06.tar.gz 2505308 SHA256 
eea69522bc415a2566acb7277db44e5e0df558b3f3d667b64c4e700e917d18fa SHA512 
1fb7f6fa42cc71977c26663ae38f5421b390781825e8acd0a0fae9c2781aa06018db3b474a0da43eb519eeb1aed8220df686968e2484272df095e21476b3023d
 WHIRLPOOL 
afea51402961a0ca2428a9e8ea5bda48b23b955fb04ad86aeb002b2a387c98931c3e03de24dda247b42a4e00ce772234f52bf6cb76f2951b28f57bef8908b56c
 DIST rakudo-2015.07.2.tar.gz 2539175 SHA256 
1794f2d670af1174aee620587270c05fbc06ef3026ae144daac436101856c492 SHA512 
2e487df689c40b45673fc14a66127f893a5b0db13c5747e030dbc4b293cec76114b88909598f2ac7d607e7fe6d8fa632ee0c7386a064da31e76feeec48406d5f
 WHIRLPOOL 
bfa2ae4c3f5e24f641eaf8c52d96e61c9cfc48d4ecd9fcacae5a19ed1f60d636d3241fddf2bcbf40df2f2b98add912992c8e955dd237b7583af38c17bbb6713c
+DIST rakudo-2015.11.tar.gz 2643309 SHA256 
a27c8357d06ebfcd1337003c869686f5041aba563a3a8c57bc3c555334e43bc3 SHA512 
e4d662709cf47b2b98398c5781973d1abd008f6f13b170fdba418bf36ff552e6c33caee26e2833539828c06ab7562f02cf5e54789f898e2e2d1d31db98d2e95e
 WHIRLPOOL 
22fdaaf616dc62606ca320cb08231b2ae0740e4191f238f2fa26247b2fcd45ae061a2b4f1c616181ea68339a45054751fef0ebab825e98580ecede43c039805e

diff --git a/dev-lang/rakudo/rakudo-2015.11.ebuild 
b/dev-lang/rakudo/rakudo-2015.11.ebuild
new file mode 100644
index 000..744a905
--- /dev/null
+++ b/dev-lang/rakudo/rakudo-2015.11.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils multilib
+
+DESCRIPTION="A Perl 6 implementation built on the Parrot virtual machine"
+HOMEPAGE="http://rakudo.org/;
+SRC_URI="http://rakudo.org/downloads/${PN}/${P}.tar.gz;
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc java +moar"
+
+RDEPEND=">=dev-lang/nqp-${PV}[java?,moar?]"
+DEPEND="${RDEPEND}
+   dev-lang/perl"
+
+src_configure() {
+   use java && myconf+="jvm,"
+   use moar && myconf+="moar,"
+   perl Configure.pl --backends=${myconf} --prefix=/usr || die
+}
+
+src_test() {
+   emake -j1 test || die
+}
+
+src_install() {
+   emake -j1 DESTDIR="${ED}" install || die
+
+   dodoc CREDITS README.md docs/ChangeLog docs/ROADMAP || die
+
+   if use doc; then
+   dohtml -A svg docs/architecture.html docs/architecture.svg || 
die
+   dodoc docs/*.pod || die
+   docinto announce
+   dodoc docs/announce/* || die
+   fi
+}



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

2015-12-21 Thread Patrick Lauer
commit: b7240d561f244e5155d83f41dc916b09be5de1e4
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 13:22:59 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 13:22:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7240d56

sci-mathematics/cado-nfs: Bump

 sci-mathematics/cado-nfs/Manifest  |  1 +
 sci-mathematics/cado-nfs/cado-nfs-2.2.0.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/sci-mathematics/cado-nfs/Manifest 
b/sci-mathematics/cado-nfs/Manifest
index b237edb..8aebd91 100644
--- a/sci-mathematics/cado-nfs/Manifest
+++ b/sci-mathematics/cado-nfs/Manifest
@@ -2,3 +2,4 @@ DIST cado-nfs-1.1.tar.gz 1453860 SHA256 
295c8662208c432a98157951ddc117820ff2e57e
 DIST cado-nfs-2.0.tar.gz 2088866 SHA256 
67f2ca3f739e07e89c9873f98d876bf771a3900288eda3d724b06f5736b4bfa2 SHA512 
7f531e9ad1445c763a2fd37441e2e3bf6d4184d0d93be414d078b7024860c9d85754afe6629d9436b540361183462792248a88c0af76407d10a621385ec5b18b
 WHIRLPOOL 
91b7a874cedb90c555625f9a0187f62c2cfccebc7236182d6bba17187fa5080b5164b121361035f3c7281881cc44f026fb66c6b242f8abcf6b6628a6eb280b90
 DIST cado-nfs-2.1.1.tar.gz 2560216 SHA256 
7493b3d38c7bb7db2e3e8068f6d7da2bf0429d5cc153af668f677af99f0320fa SHA512 
8463fddc49cf7ad3caef47f9b96fd8ed63de63fa3aa9791b94e58d920f2bb66d843e6e53bab81eaea62d3cbdc834c4f7b7f294d255ac7def74ff51a651905002
 WHIRLPOOL 
cecea890bc48b80ad8907e69f8ca386a45b99f4735cdec3bdfba936bf502b6efbf76bbae3f4a8f60e8f676c27f441ae03ec8327be05c92eecbcf7751b8d34f9f
 DIST cado-nfs-2.1.tar.gz 2558577 SHA256 
ff50baeb2eb5bf0ff3dd8600056e8e762fa30c94c2425fb73843329ced2a5ae1 SHA512 
fcdba87ca349485e6d25c1298cc90197855a2fa354b51edb827445b10e7cb023f5d239e02aba0cdae28b4f4b38d260b4b492cdf5eb0c929afdca6aa604b29191
 WHIRLPOOL 
c23a7b5d184efa385689493831f70cff823811d8f320ea3e91f367c580b285dcf6515027d466784d56c5f3f49d51e1d3baccd566096af561710b9267d1e0bdda
+DIST cado-nfs-2.2.0.tar.gz 3197259 SHA256 
b85ffd8c13eadb911e2f2f026fad1a4993f8f85a82326cc2b4f95bee536a6cb5 SHA512 
983806522187a79a1d6113c2539c05d2d09caa823db9ba629d12501ac50b10daf673ca52039c403ea18f8befe0f6831af7e6586b6fcf026efe299f09f57f
 WHIRLPOOL 
c30a7ef57aa5ca37430138e9193af553ac0c240093362dbf31094732de2874aca44523ed6395f35c39158fde1863555b1f3e8a46d0175d502ed947f77e0daf90

diff --git a/sci-mathematics/cado-nfs/cado-nfs-2.2.0.ebuild 
b/sci-mathematics/cado-nfs/cado-nfs-2.2.0.ebuild
new file mode 100644
index 000..44c8e43
--- /dev/null
+++ b/sci-mathematics/cado-nfs/cado-nfs-2.2.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+DESCRIPTION="Number Field Sieve (NFS) implementation for factoring integers"
+HOMEPAGE="http://cado-nfs.gforge.inria.fr/;
+SRC_URI="https://gforge.inria.fr/frs/download.php/file/35401/${P}.tar.gz;
+
+PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_REQ_USE="sqlite"
+inherit eutils cmake-utils python-r1
+
+# Fails F9_{k,m}bucket_test F9_tracektest
+RESTRICT="test"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   dev-libs/gmp
+   dev-lang/perl
+   !sci-mathematics/ggnfs
+   !sci-biology/shrimp
+   "
+DEPEND="${RDEPEND}
+   "
+
+src_prepare() {
+   # looks like packaging mistake
+   sed -i -e 's/add_executable (convert_rels convert_rels.c)//' 
misc/CMakeLists.txt || die
+   sed -i -e 's/target_link_libraries (convert_rels utils)//' 
misc/CMakeLists.txt || die
+   sed -i -e 's~install(TARGETS convert_rels RUNTIME DESTINATION 
bin/misc)~~' misc/CMakeLists.txt || die
+}
+
+src_configure() {
+   DESTINATION="/usr/libexec/cado-nfs" cmake-utils_src_configure
+}
+src_compile() {
+   # autodetection goes confused for gf2x
+   ABI=default cmake-utils_src_compile
+}



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

2015-12-21 Thread Alexis Ballier
commit: 6a32ea50ce2edf969b9cf048c954917818583a7e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Dec 21 13:36:16 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Dec 21 13:36:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a32ea50

media-video/ffmpeg: bump to 2.8.4

Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/Manifest|   1 +
 media-video/ffmpeg/ffmpeg-2.8.4.ebuild | 455 +
 2 files changed, 456 insertions(+)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index e6688a6..83c8f7a 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -4,3 +4,4 @@ DIST ffmpeg-2.7.2.tar.bz2 8157217 SHA256 
7ceb7550ad628c526fa6c9ff23fdfb687a62f54
 DIST ffmpeg-2.8.1.tar.bz2 8564488 SHA256 
e2ed5ab28dee1af94336739173eb0019afc21a54e38a96f4e3208e94a07866e2 SHA512 
5c493f1eb84dd916f12a709a77ca0317a03ce88caaa1ee5e06b4e03c60ef4520ba58c8972841de25dcadb0da42e88592e6a87c3aca18dba62e246256c33fcf91
 WHIRLPOOL 
f0f26375960dff80055fe257b63f11a1cc598bef9450d0da4a619bfc61ba6df185ea0dcf9c566810c7917159bb193d30a1009051c5b32ea1d746b289c782b8aa
 DIST ffmpeg-2.8.2.tar.bz2 8573586 SHA256 
830ec647f7ad774fc0caf17ba47774bf5dee7a89cbd65894f364a87ba3ad21b2 SHA512 
15c1c09d7d4bb8cc7babff4c782e4bf6621ed86d6b02bffb5468bdcd294a1144bf56a8a758d2801200bb89c26ce8f5a086d818affb473364424f94f701cbf749
 WHIRLPOOL 
83ae9a00cba7bc906672f55d796b044d3f4baad9a56804f6482e7c27b9f526d1364dfddaa22ef32b921e5dcd0158222897935544a34c1d1e7c3b9d681067d2e0
 DIST ffmpeg-2.8.3.tar.bz2 8576798 SHA256 
1bcf993a71839bb4a37eaa0c51daf315932b6dad6089f672294545cc51a5caf6 SHA512 
aadfab7db84b85cbfe44a5c7b47e447a1711c3d78fa195f30d3f6644e95842c8d484172e4c98f75cbae5d3783f4dd2972a892123d9a9ff90be32db20b0dc8aa6
 WHIRLPOOL 
c004fe02f300772b439ae070538d4ef4c5c514dd8a080de8e1a560597e79607b709319072f6120c35722481bc11f30077cc74a64800e390a7c5fabe82ded1718
+DIST ffmpeg-2.8.4.tar.bz2 8579383 SHA256 
83cc8136a7845546062a43cda9ae3cf0a02f43ef5e434d2f997f055231a75f8e SHA512 
37f88c05fd0b8d1c4de83f5330f756cddd157ba78487d78436899d46a49a4e420eb086d263dd77c6c31a61c91f7839f40b07ed87817d686498b90caf9d870aa5
 WHIRLPOOL 
7e1a85a0eb00f33aad4d18b6a8d4d76c78aa0654c4ce10a864996239950fadd4a4995c481cd0e95a6f669c566cacd3da9ada4c66bb0fba011d4d942c8679eb99

diff --git a/media-video/ffmpeg/ffmpeg-2.8.4.ebuild 
b/media-video/ffmpeg/ffmpeg-2.8.4.ebuild
new file mode 100644
index 000..912ed82
--- /dev/null
+++ b/media-video/ffmpeg/ffmpeg-2.8.4.ebuild
@@ -0,0 +1,455 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+# Subslot: libavutil major.libavcodec major.libavformat major
+# Since FFmpeg ships several libraries, subslot is kind of limited here.
+# Most consumers will use those three libraries, if a "less used" library
+# changes its soname, consumers will have to be rebuilt the old way
+# (preserve-libs).
+# If, for example, a package does not link to libavformat and only libavformat
+# changes its ABI then this package will be rebuilt needlessly. Hence, such a
+# package is free _not_ to := depend on FFmpeg but I would strongly encourage
+# doing so since such a case is unlikely.
+FFMPEG_SUBSLOT=54.56.56
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-2"
+   EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git"
+fi
+
+inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
+
+DESCRIPTION="Complete solution to record, convert and stream audio and video. 
Includes libavcodec"
+HOMEPAGE="http://ffmpeg.org/;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
+   SRC_URI="mirror://gentoo/${P}.tar.bz2"
+else # Release
+   SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2;
+fi
+FFMPEG_REVISION="${PV#*_p}"
+
+SLOT="0/${FFMPEG_SUBSLOT}"
+LICENSE="
+   !gpl? ( LGPL-2.1 )
+   gpl? ( GPL-2 )
+   amr? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   encode? (
+   aac? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   amrenc? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   )
+   samba? ( GPL-3 )
+"
+if [ "${PV#}" = "${PV}" ] ; then
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+fi
+
+# Options to use as use_enable in the foo[:bar] form.
+# This will feed configure with $(use_enable foo bar)
+# or $(use_enable foo foo) if no :bar is set.
+# foo is added to IUSE.
+FFMPEG_FLAG_MAP=(
+   +bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls 
+gpl
+   +hardcoded-tables +iconv lzma +network openssl +postproc
+   samba:libsmbclient 

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

2015-12-21 Thread Michael Palimaka
commit: bc60b69e0a568bde29e55812d05a2c766f3f4fe7
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 21 14:17:16 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 21 14:17:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc60b69e

net-libs/signond: remove unused dependency

Gentoo-bug: 569000

Package-Manager: portage-2.2.26

 net-libs/signond/signond-8.58.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-libs/signond/signond-8.58.ebuild 
b/net-libs/signond/signond-8.58.ebuild
index 9343cf8..09bbe0b 100644
--- a/net-libs/signond/signond-8.58.ebuild
+++ b/net-libs/signond/signond-8.58.ebuild
@@ -32,6 +32,9 @@ DEPEND="${RDEPEND}
 "
 
 src_prepare() {
+   # remove unused dependency
+   sed -e "/xml \\\/d" -i src/signond/signond.pro || die
+
# ensure qt5 version of binary is used
sed -e "s|qdbusxml2cpp|$(qt5_get_bindir)/&|" -i src/signond/signond.pro 
|| die
 



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

2015-12-21 Thread Patrick Lauer
commit: 6acfe4019daff46e2ac6eee59c6b2adfca6b0380
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:26:36 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:26:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6acfe401

gnome-extra/nemo: Remove unneeded useflag descriptions from metadata.xml

 gnome-extra/nemo/metadata.xml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/gnome-extra/nemo/metadata.xml b/gnome-extra/nemo/metadata.xml
index ea7543e..721f1fd 100644
--- a/gnome-extra/nemo/metadata.xml
+++ b/gnome-extra/nemo/metadata.xml
@@ -3,8 +3,6 @@
 
gnome

-   Pull in 
gnome-extra/cinnamon-translations for
-   localization support
Use packagekit to search for programs 
to open
unknown file types
Add support for 
app-misc/tracker search



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

2015-12-21 Thread Patrick Lauer
commit: 81f6e1c3d336b8d68a9605e37635f93ff41524aa
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:28:19 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:28:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81f6e1c3

media-gfx/gthumb: Remove unneeded useflag descriptions from metadata.xml

 media-gfx/gthumb/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-gfx/gthumb/metadata.xml b/media-gfx/gthumb/metadata.xml
index 415357c..3a949fe 100644
--- a/media-gfx/gthumb/metadata.xml
+++ b/media-gfx/gthumb/metadata.xml
@@ -5,7 +5,6 @@

Enable webservice integration through 
net-libs/libsoup
Compile code that uses the libjson-glib 
library
-   Enable libsecret support to store login 
credentials
Enable slideshow plugin
Enable support for webp image format




[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/qgis/

2015-12-21 Thread Patrick Lauer
commit: 4ac4712926538c9465da063f73fdc4c536072536
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:29:13 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:29:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ac47129

sci-geosciences/qgis: Remove unneeded useflag descriptions from metadata.xml

 sci-geosciences/qgis/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sci-geosciences/qgis/metadata.xml 
b/sci-geosciences/qgis/metadata.xml
index be2c23b..2d85958 100644
--- a/sci-geosciences/qgis/metadata.xml
+++ b/sci-geosciences/qgis/metadata.xml
@@ -12,7 +12,6 @@
 
   
 Use internal copy of 
x11-libs/qwtpolar
-Add support for sci-geosciences/grass
 Enable Spatial DBMS over sqlite 
dev-db/spatialite
   
 



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

2015-12-21 Thread Patrick Lauer
commit: bdefc0606579d216fbcb1b4ae69cd0d2b7d043e6
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:32:47 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:32:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdefc060

media-sound/spek: Whitespace

 media-sound/spek/spek-0.8.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/spek/spek-0.8.3-r1.ebuild 
b/media-sound/spek/spek-0.8.3-r1.ebuild
index e618109..8a90995 100644
--- a/media-sound/spek/spek-0.8.3-r1.ebuild
+++ b/media-sound/spek/spek-0.8.3-r1.ebuild
@@ -30,7 +30,7 @@ DEPEND="${RDEPEND}
 
 src_prepare() {
need-wxwidgets unicode
-   
+
if [ $(gcc-major-version) -lt "4" ] ; then
die "You need to activate at least gcc:4.7"
fi



[gentoo-commits] repo/gentoo:master commit in: sys-auth/skey/

2015-12-21 Thread Patrick Lauer
commit: 9c8c3a9e1b6a3d246c492f49393ea11f8a093f15
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:47:23 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:47:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c8c3a9e

sys-auth/skey: Turn PATCHES into bash array

 sys-auth/skey/skey-1.1.5-r10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/skey/skey-1.1.5-r10.ebuild 
b/sys-auth/skey/skey-1.1.5-r10.ebuild
index 928968a..f9ff247 100644
--- a/sys-auth/skey/skey-1.1.5-r10.ebuild
+++ b/sys-auth/skey/skey-1.1.5-r10.ebuild
@@ -22,7 +22,7 @@ RDEPEND="dev-lang/perl
virtual/perl-Time-Local
sys-libs/cracklib"
 
-PATCHES="../patch"
+PATCHES=( "../patch" )
 
 src_configure() {
tc-export CC



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

2015-12-21 Thread Patrick Lauer
commit: 30dc8ef44c46c6e8ff4df2e411db3f6a073570c6
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:30:20 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:30:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30dc8ef4

sys-kernel/vanilla-sources: Remove unneeded useflag descriptions from 
metadata.xml

 sys-kernel/vanilla-sources/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/sys-kernel/vanilla-sources/metadata.xml 
b/sys-kernel/vanilla-sources/metadata.xml
index 47336f4..1ad4546 100644
--- a/sys-kernel/vanilla-sources/metadata.xml
+++ b/sys-kernel/vanilla-sources/metadata.xml
@@ -14,9 +14,6 @@

Vanilla prepatch/rc sources, for people who like to have the 
latest kernel available

-   
-   Remove binary blobs from kernel sources to 
provide libre license compliance.
-   

cpe:/o:linux:linux_kernel




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

2015-12-21 Thread Patrick Lauer
commit: ed17348497d046182dfd2828efb1e58a3a4c4d61
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:31:39 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:31:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed173484

dev-libs/liblinear: Whitespace

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

diff --git a/dev-libs/liblinear/liblinear-210-r1.ebuild 
b/dev-libs/liblinear/liblinear-210-r1.ebuild
index cbd8d0e..97dfda4 100644
--- a/dev-libs/liblinear/liblinear-210-r1.ebuild
+++ b/dev-libs/liblinear/liblinear-210-r1.ebuild
@@ -35,7 +35,7 @@ src_prepare() {
-e '/^CFLAGS/d;/^CXXFLAGS/d' \
-e 's|$${SHARED_LIB_FLAG}|& $(LDFLAGS)|g' \
Makefile || die
-   if use blas; then 
+   if use blas; then
sed -i -e 's:blas/blas.a::g' Makefile || die
fi
 }



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

2015-12-21 Thread Michael Palimaka
commit: cc62b10bb1309bb9451997782820edcaa0bdfef9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 21 14:35:20 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 21 14:35:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc62b10b

profiles: avoid kde-apps/kde-wallpapers blocker in plasma profile

 profiles/targets/desktop/plasma/package.use | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/targets/desktop/plasma/package.use 
b/profiles/targets/desktop/plasma/package.use
index 2c59c26..ffb262d 100644
--- a/profiles/targets/desktop/plasma/package.use
+++ b/profiles/targets/desktop/plasma/package.use
@@ -35,6 +35,7 @@ media-libs/mesa egl wayland
 # Allow certain KDE 4 components to be coinstalled with Plasma 5
 

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

2015-12-21 Thread Patrick Lauer
commit: 6d6e52bb485b64d4f075cb08e554c5099c4862db
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:34:11 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:34:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d6e52bb

sys-apps/shadow: Whitespace

 sys-apps/shadow/shadow-4.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/shadow/shadow-4.2.1-r2.ebuild 
b/sys-apps/shadow/shadow-4.2.1-r2.ebuild
index c376f1e..1597444 100644
--- a/sys-apps/shadow/shadow-4.2.1-r2.ebuild
+++ b/sys-apps/shadow/shadow-4.2.1-r2.ebuild
@@ -36,7 +36,7 @@ RDEPEND="${RDEPEND}
pam? ( >=sys-auth/pambase-20150213 )"
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-4.1.3-dots-in-usernames.patch 
+   "${FILESDIR}"/${PN}-4.1.3-dots-in-usernames.patch
"${FILESDIR}"/${P}-cross-size-checks.patch
"${FILESDIR}"/${P}-verbose-error-when-uid-doesnt-match.patch
 )



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

2015-12-21 Thread Patrick Lauer
commit: 5b0d3bb4ec734650d84a7c56372e4fb12edc7d96
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:45:33 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:45:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b0d3bb4

app-editors/emacs: Turn PATCHES into bash array

 app-editors/emacs/emacs-18.59-r11.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-editors/emacs/emacs-18.59-r11.ebuild 
b/app-editors/emacs/emacs-18.59-r11.ebuild
index e78983d..0e04654 100644
--- a/app-editors/emacs/emacs-18.59-r11.ebuild
+++ b/app-editors/emacs/emacs-18.59-r11.ebuild
@@ -27,7 +27,10 @@ RDEPEND=">=app-eselect/eselect-emacs-1.16
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 
-PATCHES="../${P}-linux22x-elf-glibc21.diff ../patch"
+PATCHES=(
+   "../${P}-linux22x-elf-glibc21.diff"
+   "../patch"
+   )
 
 src_configure() {
# autoconf? What's autoconf? We are living in 1992. ;-)



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

2015-12-21 Thread Patrick Lauer
commit: d339fa2f0a10225f9d8105d0d91ca19bf7c0b31e
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:48:32 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:48:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d339fa2f

sys-libs/ncurses: Whitespace

 sys-libs/ncurses/ncurses-5.9-r101.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-libs/ncurses/ncurses-5.9-r101.ebuild 
b/sys-libs/ncurses/ncurses-5.9-r101.ebuild
index a90cf85..541bb16 100644
--- a/sys-libs/ncurses/ncurses-5.9-r101.ebuild
+++ b/sys-libs/ncurses/ncurses-5.9-r101.ebuild
@@ -169,7 +169,6 @@ src_compile() {
multilib-minimal_src_compile
 }
 
-
 multilib_src_compile() {
local t
for t in "${NCURSES_TARGETS[@]}" ; do



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

2015-12-21 Thread Patrick Lauer
commit: 2ed3a7bf9e80c6b492daef3d1cef77a81a1eb8d0
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Dec 21 14:50:06 2015 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Dec 21 14:50:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ed3a7bf

media-video/mjpg-streamer: Whitespace

 media-video/mjpg-streamer/mjpg-streamer-0_pre20120621-r1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-video/mjpg-streamer/mjpg-streamer-0_pre20120621-r1.ebuild 
b/media-video/mjpg-streamer/mjpg-streamer-0_pre20120621-r1.ebuild
index 7c0a0c2..a527458 100644
--- a/media-video/mjpg-streamer/mjpg-streamer-0_pre20120621-r1.ebuild
+++ b/media-video/mjpg-streamer/mjpg-streamer-0_pre20120621-r1.ebuild
@@ -33,7 +33,6 @@ src_prepare() {
epatch "${FILESDIR}/${PV}-make-var-instead-of-cmd.patch"
epatch "${FILESDIR}/${PV}-to-work-with-kernel-3.18.patch"
 
-
local flag switch
 
for flag in ${IUSE_PLUGINS}; do



[gentoo-commits] proj/grs:desktop-amd64-uclibc-hardened commit in: core/etc/grs/

2015-12-21 Thread Anthony G. Basile
commit: fb769359aba65ef1c99a85a9345df4c3c8b1d614
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec 22 04:22:36 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Dec 22 04:22:36 2015 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=fb769359

world.conf: xf86-input-keyboard requires _XOPEN_SOURCE

 core/etc/grs/world.conf | 4 
 1 file changed, 4 insertions(+)

diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf
index 24c2028..804d353 100644
--- a/core/etc/grs/world.conf
+++ b/core/etc/grs/world.conf
@@ -7969,6 +7969,10 @@ package.use : x11-base/xorg-drivers:0 
-input_devices_libinput -input_devices_vmm
 [x11-base/xorg-server:0]
 package.use : x11-base/xorg-server:0 -dmx -doc -glamor -kdrive -libressl 
-minimal -selinux -systemd -tslib -unwind -wayland -xephyr -xnest -xvfb ipv6 
nptl static-libs suid udev xorg
 
+[x11-drivers/xf86-input-keyboard:0]
+package.env : x11-drivers/xf86-input-keyboard:0 
x11-drivers_xf86-input-keyboard_0
+env : CPPFLAGS="-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED"
+
 [x11-drivers/xf86-input-mtrack:0]
 package.use : x11-drivers/xf86-input-mtrack:0 -debug
 



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

2015-12-21 Thread Matthias Maier
commit: 7230e64625a7b356b43335ce7cadb321a0b7cb16
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Dec 22 06:13:56 2015 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Dec 22 06:15:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7230e646

app-emulation/libvirt: remove vuln. 1.2.(20|21) (CVE-2015-5313, bug #568870)

This is a cleanup for CVE-2015-5313 bug 568870.

Gentoo-Bugs: 568870

Package-Manager: portage-2.2.26

 app-emulation/libvirt/Manifest |   2 -
 app-emulation/libvirt/libvirt-1.2.19-r1.ebuild | 381 -
 app-emulation/libvirt/libvirt-1.2.20-r1.ebuild | 380 
 3 files changed, 763 deletions(-)

diff --git a/app-emulation/libvirt/Manifest b/app-emulation/libvirt/Manifest
index 2350083..6914572 100644
--- a/app-emulation/libvirt/Manifest
+++ b/app-emulation/libvirt/Manifest
@@ -1,5 +1,3 @@
 DIST libvirt-1.2.18.tar.gz 29412554 SHA256 
d5a5ff18af4cced21fed986d28fa0a21b782d256920326bf0ff1c7731eeb6ade SHA512 
e89d494066ebec4de4c9a53089f015635b7b5ccf4a10ab9749883cc81f6f9607b18ca91a1bd01a9cdacb3a46de86223f0432fae3954106cb92dd275e5b4138c5
 WHIRLPOOL 
dbbbd627ccb9be154bc680407898cd32dfdbc218a67f54560e6b0f0200cbc157a9aa05834de5d9d23e3b6da0625fd5943b4c8e38f8bb9a6ff920bc5820287bfc
-DIST libvirt-1.2.19.tar.gz 29644247 SHA256 
282c141f03331d640020c15f81464b27400e0ee307ef4c5190393b021caedd6e SHA512 
2f3f26b90120a39861683f1b5af93ac661ab561e23514c71c2ebfb1ab88da99d25acee9a5d11bec35478e38b9105f3779bffb4d4649f16a91aeccdcaa61e4aa4
 WHIRLPOOL 
4262beb2248495746d32bc7b16c3eec69d9cba7d4fb3870fcd560bd4d222827cf90eb9cc3df647f3fe10467d1562e72138cbf871adc5f63d4788069e1b9740ac
-DIST libvirt-1.2.20.tar.gz 29725368 SHA256 
df0b5d8a150863a86b98cf809a586c91b2d49af25b74a354049ea416b0b27d30 SHA512 
2c7f7995d38d15453de99cc34e63db9c39c653fc24a4fd949207e62c0241f2a5ff3ab5505909ffae77f7a91d321396372188aa29124b8271f876d93546c44d07
 WHIRLPOOL 
553517c8eec3f601987d9a9205668a81ffcaf9081ee0d79de847ce1d2c9bcd9115471adf2022095143d440a07f7d48059cfd88094b7dda7046a784c93c449817
 DIST libvirt-1.2.21-20151222.tar.xz 1684 SHA256 
6c97f288470ec58bcbe98507563c6a191892c6f8813a7b9688c09b823934cbe5 SHA512 
4fd43f0e12434b78ac3e671ad8eb0e402d384cff6278f6d0db322a068c2c8807c7c7f7e5774aa9d19e2a85e49f6d9888908b32fca5fc04980134edaccba0afe2
 WHIRLPOOL 
2bfbc3cbf1ca44a2bb06ddf2e8eabeb116165560b9c73d649d7b8cc9baba851f5e9246414bfc2c4740f27d0d0d42b6176eaec43b05e8c1e54de2804150c2cde1
 DIST libvirt-1.2.21.tar.gz 29848954 SHA256 
8d406582f5fe88d739d1d83e0ba7ac7f91f5a8da4be82162ab85631744d8925b SHA512 
5c15d0ba5d75c13f735c6a60dfdbad007426f77e113f95894d520f7fc358fa4361d5cce7bb9a548a436f323b845f13b8940abbad568b8b146418430068bb970e
 WHIRLPOOL 
d53bbb07c85b3aa2d9b0f38ff2edd3cd0a2a5300627f3e2f0a82bc057303617cab9d6f1d8a9a771bd968b0496d38d3a39a0154f88bdca44dda359a65fdc2c650

diff --git a/app-emulation/libvirt/libvirt-1.2.19-r1.ebuild 
b/app-emulation/libvirt/libvirt-1.2.19-r1.ebuild
deleted file mode 100644
index cd93dce..000
--- a/app-emulation/libvirt/libvirt-1.2.19-r1.ebuild
+++ /dev/null
@@ -1,381 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils user autotools-utils linux-info systemd readme.gentoo
-
-BACKPORTS=""
-
-if [[ ${PV} = ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="git://libvirt.org/libvirt.git"
-   SRC_URI=""
-   KEYWORDS=""
-   SLOT="0"
-else
-   # Versions with 4 numbers are stable updates:
-   if [[ ${PV} =~ ^[0-9]+(\.[0-9]+){3} ]]; then
-   SRC_URI="http://libvirt.org/sources/stable_updates/${P}.tar.gz;
-   else
-   SRC_URI="http://libvirt.org/sources/${P}.tar.gz;
-   fi
-   SRC_URI+=" ${BACKPORTS:+
-   
https://dev.gentoo.org/~cardoe/distfiles/${P}-${BACKPORTS}.tar.xz
-   
https://dev.gentoo.org/~tamiko/distfiles/${P}-${BACKPORTS}.tar.xz};
-   KEYWORDS="~amd64 ~x86"
-   SLOT="0/${PV}"
-fi
-
-DESCRIPTION="C toolkit to manipulate virtual machines"
-HOMEPAGE="http://www.libvirt.org/;
-LICENSE="LGPL-2.1"
-IUSE="apparmor audit avahi +caps firewalld fuse glusterfs iscsi +libvirtd lvm \
-   lxc +macvtap nfs nls numa openvz parted pcap phyp policykit +qemu rbd 
sasl \
-   selinux systemd +udev uml +vepa virtualbox virt-network 
wireshark-plugins \
-   xen elibc_glibc"
-
-REQUIRED_USE="
-   firewalld? ( virt-network )
-   libvirtd? ( || ( lxc openvz qemu uml virtualbox xen ) )
-   lxc? ( caps libvirtd )
-   openvz? ( libvirtd )
-   qemu? ( libvirtd )
-   uml? ( libvirtd )
-   vepa? ( macvtap )
-   virt-network? ( libvirtd )
-   virtualbox? ( libvirtd )
-   xen? ( libvirtd )"
-
-# gettext.sh command is used by the libvirt command wrappers, and it's
-# non-optional, so put it into RDEPEND.
-# We can use both libnl:1.1 and libnl:3, but if you have both installed, the
-# package will 

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

2015-12-21 Thread Anthony G. Basile
commit: 82add8fb6f6b87ea7f95caa7405fbb4d69fe3956
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec 22 03:09:58 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Dec 22 03:11:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82add8fb

dev-libs/xapian: add `|| die` when renaming the doc dir

Package-Manager: portage-2.2.24

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

diff --git a/dev-libs/xapian/xapian-1.3.3-r1.ebuild 
b/dev-libs/xapian/xapian-1.3.3-r1.ebuild
index 5aa263c..e12e0f3 100644
--- a/dev-libs/xapian/xapian-1.3.3-r1.ebuild
+++ b/dev-libs/xapian/xapian-1.3.3-r1.ebuild
@@ -54,7 +54,7 @@ src_configure() {
 src_install() {
emake DESTDIR="${D}" install
 
-   mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
+   mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}" || die
use doc || rm -rf "${D}usr/share/doc/${PF}"
 
dodoc AUTHORS HACKING PLATFORMS README NEWS



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

2015-12-21 Thread Anthony G. Basile
commit: efd4acc245415fb1f6e003d4af5d88b4e7dccef3
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec 22 03:02:17 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Dec 22 03:11:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efd4acc2

dev-libs/xapian: USE=inmemory requires chert

Package-Manager: portage-2.2.24

 dev-libs/xapian/xapian-1.3.3-r1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-libs/xapian/xapian-1.3.3-r1.ebuild 
b/dev-libs/xapian/xapian-1.3.3-r1.ebuild
index 2083c8a..5aa263c 100644
--- a/dev-libs/xapian/xapian-1.3.3-r1.ebuild
+++ b/dev-libs/xapian/xapian-1.3.3-r1.ebuild
@@ -18,6 +18,8 @@ IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 
+brass +chert +inme
 DEPEND="sys-libs/zlib"
 RDEPEND="${DEPEND}"
 
+REQUIRED_USE="inmemory? ( chert )"
+
 S="${WORKDIR}/${MY_P}"
 
 src_configure() {



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

2015-12-21 Thread Anthony G. Basile
commit: 8d8bcb64e0aa4bd014aa8dc14c11e6169de80088
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec 22 03:11:14 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Dec 22 03:11:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d8bcb64

dev-libs/xapian: prune .la files

Package-Manager: portage-2.2.24

 dev-libs/xapian/{xapian-1.3.3-r1.ebuild => xapian-1.3.3-r2.ebuild} | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-libs/xapian/xapian-1.3.3-r1.ebuild 
b/dev-libs/xapian/xapian-1.3.3-r2.ebuild
similarity index 97%
rename from dev-libs/xapian/xapian-1.3.3-r1.ebuild
rename to dev-libs/xapian/xapian-1.3.3-r2.ebuild
index e12e0f3..27a5beb 100644
--- a/dev-libs/xapian/xapian-1.3.3-r1.ebuild
+++ b/dev-libs/xapian/xapian-1.3.3-r2.ebuild
@@ -4,6 +4,8 @@
 
 EAPI="5"
 
+inherit eutils
+
 MY_P="${PN}-core-${PV}"
 
 DESCRIPTION="Xapian Probabilistic Information Retrieval library"
@@ -58,6 +60,8 @@ src_install() {
use doc || rm -rf "${D}usr/share/doc/${PF}"
 
dodoc AUTHORS HACKING PLATFORMS README NEWS
+
+   prune_libtool_files
 }
 
 src_test() {



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

2015-12-21 Thread Anthony G. Basile
commit: c4fc8afb2d868304d1f201b6d1f0f85cba95e956
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec 22 03:17:05 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Dec 22 03:17:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4fc8afb

dev-libs/xapian: add `|| die` to 1.2.21-r1 version

Package-Manager: portage-2.2.24

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

diff --git a/dev-libs/xapian/xapian-1.2.21-r1.ebuild 
b/dev-libs/xapian/xapian-1.2.21-r1.ebuild
index 67dee7e..dfa0ed1 100644
--- a/dev-libs/xapian/xapian-1.2.21-r1.ebuild
+++ b/dev-libs/xapian/xapian-1.2.21-r1.ebuild
@@ -52,7 +52,7 @@ src_configure() {
 src_install() {
emake DESTDIR="${D}" install
 
-   mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
+   mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}" || die
use doc || rm -rf "${D}usr/share/doc/${PF}"
 
dodoc AUTHORS HACKING PLATFORMS README NEWS



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

2015-12-21 Thread Anthony G. Basile
commit: 4443eba81a16c7e2b4455958afca54e2453fe847
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec 22 03:43:15 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Dec 22 03:43:34 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4443eba8

dev-libs/xapian: add prune_libtool_files to 1.2.21-r2

Package-Manager: portage-2.2.24

 dev-libs/xapian/{xapian-1.2.21-r1.ebuild => xapian-1.2.21-r2.ebuild} | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-libs/xapian/xapian-1.2.21-r1.ebuild 
b/dev-libs/xapian/xapian-1.2.21-r2.ebuild
similarity index 97%
rename from dev-libs/xapian/xapian-1.2.21-r1.ebuild
rename to dev-libs/xapian/xapian-1.2.21-r2.ebuild
index dfa0ed1..54e12ec 100644
--- a/dev-libs/xapian/xapian-1.2.21-r1.ebuild
+++ b/dev-libs/xapian/xapian-1.2.21-r2.ebuild
@@ -4,6 +4,8 @@
 
 EAPI="5"
 
+inherit eutils
+
 MY_P="${PN}-core-${PV}"
 
 DESCRIPTION="Xapian Probabilistic Information Retrieval library"
@@ -56,6 +58,8 @@ src_install() {
use doc || rm -rf "${D}usr/share/doc/${PF}"
 
dodoc AUTHORS HACKING PLATFORMS README NEWS
+
+   prune_libtool_files --all
 }
 
 src_test() {



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

2015-12-21 Thread Anthony G. Basile
commit: df3d27e82c726eb340878eebc0c2e860c6707e49
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec 22 03:39:10 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Dec 22 03:39:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df3d27e8

dev-libs/xapian: prune_libtool_files requires --all

Package-Manager: portage-2.2.24

 dev-libs/xapian/xapian-1.3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xapian/xapian-1.3.3-r2.ebuild 
b/dev-libs/xapian/xapian-1.3.3-r2.ebuild
index 27a5beb..58616c5 100644
--- a/dev-libs/xapian/xapian-1.3.3-r2.ebuild
+++ b/dev-libs/xapian/xapian-1.3.3-r2.ebuild
@@ -61,7 +61,7 @@ src_install() {
 
dodoc AUTHORS HACKING PLATFORMS README NEWS
 
-   prune_libtool_files
+   prune_libtool_files --all
 }
 
 src_test() {



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

2015-12-21 Thread Michał Górny
commit: 86eec564c0b2cec9fc1d35ee59cde542c2612fdb
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 22 05:11:40 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 22 05:15:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86eec564

python.eclass: Remove another python symlink check, #569088 and dupes

 eclass/python.eclass | 8 
 1 file changed, 8 deletions(-)

diff --git a/eclass/python.eclass b/eclass/python.eclass
index 7627214..d6742c1 100644
--- a/eclass/python.eclass
+++ b/eclass/python.eclass
@@ -796,10 +796,6 @@ _python_calculate_PYTHON_ABIS() {
python_version="$("${EPREFIX}/usr/bin/python" -c 'from 
sys import version_info; print(".".join(str(x) for x in version_info[:2]))')"
 
if has_version "=dev-lang/python-2*"; then
-   if [[ "$(readlink 
"${EPREFIX}/usr/bin/python2")" != "python2."* ]]; then
-   die "'${EPREFIX}/usr/bin/python2' is 
not a valid symlink"
-   fi
-
python2_version="$("${EPREFIX}/usr/bin/python2" 
-c 'from sys import version_info; print(".".join(str(x) for x in 
version_info[:2]))')"
 
support_python_major_version="0"
@@ -819,10 +815,6 @@ _python_calculate_PYTHON_ABIS() {
fi
 
if has_version "=dev-lang/python-3*"; then
-   if [[ "$(readlink 
"${EPREFIX}/usr/bin/python3")" != "python3."* ]]; then
-   die "'${EPREFIX}/usr/bin/python3' is 
not a valid symlink"
-   fi
-
python3_version="$("${EPREFIX}/usr/bin/python3" 
-c 'from sys import version_info; print(".".join(str(x) for x in 
version_info[:2]))')"
 
support_python_major_version="0"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-qt5/

2015-12-21 Thread Yixun Lan
commit: 9011fa4e01f2b31280bb82faf6e4d236dc3a7a68
Author: Jiajun Wang  gmail  com>
AuthorDate: Thu Dec 10 08:20:16 2015 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Dec 22 02:31:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9011fa4e

app-i18n/fcitx-qt5: version bump to 1.0.4

Package-Manager: portage-2.2.26
Signed-off-by: Yixun Lan  gentoo.org>

 app-i18n/fcitx-qt5/Manifest   |  1 +
 app-i18n/fcitx-qt5/fcitx-qt5-1.0.4.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/app-i18n/fcitx-qt5/Manifest b/app-i18n/fcitx-qt5/Manifest
index 9a86957..9fe4f27 100644
--- a/app-i18n/fcitx-qt5/Manifest
+++ b/app-i18n/fcitx-qt5/Manifest
@@ -1 +1,2 @@
 DIST fcitx-qt5-1.0.2.tar.xz 53324 SHA256 
b8073f07d9384878c616f6d2cea44fc739a3b5731b95b10b3133e0914d49f66d SHA512 
f7075d5334e29fd00c54563182c9cc4027011503aa14d577aa2fb75eb8558c385d91c939f1f21e51850c9c64fc5c396aad5b32fdcc8ddd99c46ec74bd577255d
 WHIRLPOOL 
35ae384cf13fdfdb86c34b7dbefbbe780a2c20ac220868824e25a0ba4368581c19d45cbc9447e1c2dd3236b0758ee9e4311dab1f348a524ca2d002d0b43c760c
+DIST fcitx-qt5-1.0.4.tar.xz 53552 SHA256 
b42a428008d9bf3a5d9140d63c9a475386480d598bb9ce3b78fad43879a50d1c SHA512 
f5a2d3ed308da3687dc12dd5be3038242ba40e6bef48483931aacfd9f200db9d24d0df03cb93058eedb3941ef6ecb92d874040eb60742f60a44beda77868
 WHIRLPOOL 
c1dcf45eed09625721c175b1b09724f1f9934cb8cb3413df811009815d4231d2758c54a7b346cb29910c0ce156eb9906136d471359566eb288438cc1f5466710

diff --git a/app-i18n/fcitx-qt5/fcitx-qt5-1.0.4.ebuild 
b/app-i18n/fcitx-qt5/fcitx-qt5-1.0.4.ebuild
new file mode 100644
index 000..f066264
--- /dev/null
+++ b/app-i18n/fcitx-qt5/fcitx-qt5-1.0.4.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit cmake-utils
+
+DESCRIPTION="Qt5 input module for Fcitx"
+HOMEPAGE="http://fcitx-im.org/;
+SRC_URI="http://download.fcitx-im.org/${PN}/${P}.tar.xz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=app-i18n/fcitx-4.2.8
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   kde-frameworks/extra-cmake-modules"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-qt5/, app-i18n/fcitx-qt5/files/

2015-12-21 Thread Yixun Lan
commit: 887f90fd1bb73ebc2fe508e581d2e8dfced48efa
Author: Jiajun Wang  gmail  com>
AuthorDate: Thu Dec 10 08:17:51 2015 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Dec 22 02:31:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=887f90fd

app-i18n/fcitx-qt5: fix compatibility issue with qt5.5

Gentoo-Bug: 565942

Package-Manager: portage-2.2.26
Signed-off-by: Yixun Lan  gentoo.org>

 ...-qt5-1.0.2.ebuild => fcitx-qt5-1.0.2-r1.ebuild} |  2 ++
 .../files/fcitx-qt5-qt-5.5-compatibility-fix.patch | 23 ++
 2 files changed, 25 insertions(+)

diff --git a/app-i18n/fcitx-qt5/fcitx-qt5-1.0.2.ebuild 
b/app-i18n/fcitx-qt5/fcitx-qt5-1.0.2-r1.ebuild
similarity index 88%
rename from app-i18n/fcitx-qt5/fcitx-qt5-1.0.2.ebuild
rename to app-i18n/fcitx-qt5/fcitx-qt5-1.0.2-r1.ebuild
index f066264..0af11f2 100644
--- a/app-i18n/fcitx-qt5/fcitx-qt5-1.0.2.ebuild
+++ b/app-i18n/fcitx-qt5/fcitx-qt5-1.0.2-r1.ebuild
@@ -21,3 +21,5 @@ RDEPEND=">=app-i18n/fcitx-4.2.8
dev-qt/qtwidgets:5
kde-frameworks/extra-cmake-modules"
 DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-qt-5.5-compatibility-fix.patch" )

diff --git a/app-i18n/fcitx-qt5/files/fcitx-qt5-qt-5.5-compatibility-fix.patch 
b/app-i18n/fcitx-qt5/files/fcitx-qt5-qt-5.5-compatibility-fix.patch
new file mode 100644
index 000..4bdd058
--- /dev/null
+++ b/app-i18n/fcitx-qt5/files/fcitx-qt5-qt-5.5-compatibility-fix.patch
@@ -0,0 +1,23 @@
+From 78c482b3fdfe558da74657893a3bcd1ece6d7758 Mon Sep 17 00:00:00 2001
+From: Weng Xuetian 
+Date: Thu, 2 Jul 2015 20:02:17 -0700
+Subject: [PATCH] [qt5] fixes #6
+
+use macro instead of string literal and fix compatibility issue with qt5.5
+---
+ platforminputcontext/main.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/platforminputcontext/main.h b/platforminputcontext/main.h
+index 1492d72..9938da1 100644
+--- a/platforminputcontext/main.h
 b/platforminputcontext/main.h
+@@ -29,7 +29,7 @@ class QFcitxPlatformInputContextPlugin : public 
QPlatformInputContextPlugin
+ {
+ Q_OBJECT
+ public:
+-Q_PLUGIN_METADATA(IID 
"org.qt-project.Qt.QPlatformInputContextFactoryInterface" FILE "fcitx.json")
++Q_PLUGIN_METADATA(IID QPlatformInputContextFactoryInterface_iid FILE 
"fcitx.json")
+ QStringList keys() const;
+ QFcitxPlatformInputContext *create(const QString& system, const 
QStringList& paramList);
+ };



[gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx/

2015-12-21 Thread Yixun Lan
commit: c6fb7699866f07be0ac1c089b975944aa99e2519
Author: Jiajun Wang  gmail  com>
AuthorDate: Thu Dec 10 08:36:54 2015 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Dec 22 02:31:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6fb7699

app-i18n/fcitx: version bump to 4.2.9

Signed-off-by: Yixun Lan  gentoo.org>

 app-i18n/fcitx/Manifest   |   1 +
 app-i18n/fcitx/fcitx-4.2.9.ebuild | 129 ++
 2 files changed, 130 insertions(+)

diff --git a/app-i18n/fcitx/Manifest b/app-i18n/fcitx/Manifest
index 47e7d57..e40ae26 100644
--- a/app-i18n/fcitx/Manifest
+++ b/app-i18n/fcitx/Manifest
@@ -1,3 +1,4 @@
 DIST fcitx-4.2.7_dict.tar.xz 8546416 SHA256 
0c902617581f04eb0d337634b0bf2b39956abbcc949512cc79d4ee24cfc9dbb5 SHA512 
e5d8eb55f644250197e69315ad02b9f6bc84e697b23c20c01a731f98ce8b1a16d764a58b1e1047d45b8decb6be33144707c2a52fc427e6338d8b8186cd4da074
 WHIRLPOOL 
e344bc92a84940d3c885d1ae87a2fc83c95d6cb0f0e95eed76078e996c4a00df82a0c09c4540771f628928db1716f90d50d04469f2c0f2d5c17b5048fbf2d482
 DIST fcitx-4.2.8.5_dict.tar.xz 8696468 SHA256 
fe3d6f57805fc61130f8254f19a86fe3baa0f405406414ca2e94bcf86d3d1b72 SHA512 
ee6612a34087135065537fa14f09078bad9f029f69b636fb2221193f23d86c5431a9d8a848b264bdcb259680f6bda41d08d58dcf67d19e5a200cb11fa4a26ffe
 WHIRLPOOL 
0a394d5aaa53819bbab66b32e7ae5896187bc45fad146c7eef4ab75640e5c6670cf811bec87e482bb3516b30e1ce28f2cefa91c10838092f9329b1101b5c70db
 DIST fcitx-4.2.8.6_dict.tar.xz 8694328 SHA256 
91034e9ef976bbe2649a96b67adf0c133d64e2c0d53be440cc40a4370569d597 SHA512 
822e448932e735fe3087384eaf91c6b029b06d3461aa3798501bfbf8f79b8ebc5ea3ac57f01ec32674cc3cb74fcb34b6e285ef265bb49be54543f34dcaf624e4
 WHIRLPOOL 
df24b3b6bbe18a8498732b27817caef6c28278bddd6acfbe49edd9a63d8f33b09ba93ff0bd144e1c1d3b9b9c8079a35a8a047ebf9b361b4f173ec9b23138042e
+DIST fcitx-4.2.9_dict.tar.xz 8675292 SHA256 
3a935b7098fe573b126f8e393d93bccc6d4e4e9988830430fa9b1c87876bfc6c SHA512 
4bad2efc283858bf9af7f7f283f7beefb210aa361ff034464ff97ea0e536f084c99d876f3595a5375114b68cd51714bd0b5c622a53efc57154a4e629fd416093
 WHIRLPOOL 
520a6f41a68fd5dbd4b00eb5de5ed2aea0801adc9dd64449e36c442311c9c85bdd28f1d5f79917e99b7fff2f8372bed9bb780fdda7d6d16cf528e5c1a6a0914f

diff --git a/app-i18n/fcitx/fcitx-4.2.9.ebuild 
b/app-i18n/fcitx/fcitx-4.2.9.ebuild
new file mode 100644
index 000..49b3256
--- /dev/null
+++ b/app-i18n/fcitx/fcitx-4.2.9.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit cmake-utils eutils gnome2-utils fdo-mime multilib readme.gentoo
+
+DESCRIPTION="Flexible Contect-aware Input Tool with eXtension support"
+HOMEPAGE="http://fcitx-im.org/;
+SRC_URI="http://download.fcitx-im.org/fcitx/${P}_dict.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="+X +autostart +cairo +dbus debug +enchant gtk gtk3 icu introspection lua
+nls opencc +pango qt4 static-libs +table test +xml"
+
+REQUIRED_USE="cairo? ( X ) gtk? ( X ) gtk3? ( X ) qt4? ( X )"
+
+RDEPEND="
+   X? (
+   x11-libs/libX11
+   x11-libs/libXinerama
+   )
+   cairo? (
+   x11-libs/cairo[X]
+   pango? ( x11-libs/pango[X] )
+   !pango? ( media-libs/fontconfig )
+   )
+   dbus? ( sys-apps/dbus )
+   enchant? ( app-text/enchant )
+   gtk? (
+   x11-libs/gtk+:2
+   dev-libs/glib:2
+   dev-libs/dbus-glib
+   )
+   gtk3? (
+   x11-libs/gtk+:3
+   dev-libs/glib:2
+   dev-libs/dbus-glib
+   )
+   icu? ( dev-libs/icu:= )
+   introspection? ( dev-libs/gobject-introspection )
+   lua? ( dev-lang/lua:= )
+   nls? ( sys-devel/gettext )
+   opencc? ( app-i18n/opencc )
+   qt4? (
+   dev-qt/qtdbus:4
+   dev-qt/qtgui:4[glib]
+   )
+   xml? (
+   app-text/iso-codes
+   dev-libs/libxml2
+   x11-libs/libxkbfile
+   )"
+DEPEND="${RDEPEND}
+   virtual/libintl
+   virtual/pkgconfig
+   kde-frameworks/extra-cmake-modules
+   x11-libs/libxkbcommon"
+
+DOCS=( AUTHORS ChangeLog README THANKS TODO
+   doc/pinyin.txt doc/cjkvinput.txt doc/API.txt doc/Develop_Readme )
+HTML_DOCS=( doc/wb_fh.htm )
+
+src_prepare() {
+   use autostart && DOC_CONTENTS="You have enabled the autostart USE flag,
+   which will let fcitx start automatically on XDG compatible desktop
+   environments, such as Gnome, KDE, LXDE, LXQt and Xfce. If you use
+   ~/.xinitrc to configure your desktop, make sure to include the fcitx
+   command to start it."
+   epatch_user
+}
+
+src_configure() {
+   local mycmakeargs="
+   -DLIB_INSTALL_DIR=/usr/$(get_libdir)
+   -DSYSCONFDIR=/etc/
+   $(cmake-utils_use_enable X X11)
+   $(cmake-utils_use_enable autostart 

[gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-unikey/

2015-12-21 Thread Yixun Lan
commit: 275b6b2fb30ff73d5f38dfe0a95035901fc9de17
Author: Jiajun Wang  gmail  com>
AuthorDate: Thu Dec 10 07:47:00 2015 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Dec 22 02:31:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=275b6b2f

app-i18n/fcitx-unikey: version bump to 0.2.5

Package-Manager: portage-2.2.26
Signed-off-by: Yixun Lan  gentoo.org>

 app-i18n/fcitx-unikey/Manifest  |  1 +
 app-i18n/fcitx-unikey/fcitx-unikey-0.2.5.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/app-i18n/fcitx-unikey/Manifest b/app-i18n/fcitx-unikey/Manifest
index eef4f12..6251209 100644
--- a/app-i18n/fcitx-unikey/Manifest
+++ b/app-i18n/fcitx-unikey/Manifest
@@ -1,2 +1,3 @@
 DIST fcitx-unikey-0.2.0.tar.xz 70944 SHA256 
152da48ffeb665fc5d88202f6491fa5f4d11284792c2ef079bea4a94c8b125e1 SHA512 
10c5c2c5b7e4f40710daccc485b220ed4cdadc6e866636032873a86f9f8489490a42671c9d02aedbbda78a94e40801dd888efc9b692d26ff81fe6d1fe2e10fa7
 WHIRLPOOL 
d6dfd445bd5aa98ec28ab0bd9668f288d67f27874ecdd079f78956172f3d5695fd990ce9e70f190a26edd1eab4f48a8263efc8682fe93679a85fc1db2f6745be
 DIST fcitx-unikey-0.2.4.tar.xz 72308 SHA256 
726e5999c00e93856639258298688c835db1e80e4ac4d5ff0786433c0593c195 SHA512 
d55fe71bbcbc420e0ba3ec61ad3c7e9293e33f30b6303d90591d5a94e89d7bbc513dc940ae5a081b81c0d973fa6674872a695eac03cfbbefb460609993219221
 WHIRLPOOL 
9178a4ec7bcf0b6f969295bef0b066b266e336352c52f9a8761cb1cb6456df6c3d90a90d90212c2fbe137ebc07a1cf6b79f82e959dc6ad3806158675ee040fbb
+DIST fcitx-unikey-0.2.5.tar.xz 72640 SHA256 
8e0bc06d7771074e17acf7045f43aa3a6d9dc2c0e48f8d52548af9b393607b18 SHA512 
b70cbc468c44677a6f831ab92539dc01386eec66d8b40eba57efc7130a3811548b5b1e8213c278fd26d1eac169d43913a5fe0f3728e925c874e7360ccd93636a
 WHIRLPOOL 
5c223124a9750b1a060b9dc0f99236676f29f1280bc787e306d65a746671f667dfface3f23bb441d2122d9b33ed0d1a58491feea5c026c23dd91f51b71113c1b

diff --git a/app-i18n/fcitx-unikey/fcitx-unikey-0.2.5.ebuild 
b/app-i18n/fcitx-unikey/fcitx-unikey-0.2.5.ebuild
new file mode 100644
index 000..d02e536
--- /dev/null
+++ b/app-i18n/fcitx-unikey/fcitx-unikey-0.2.5.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 cmake-utils gnome2-utils
+
+DESCRIPTION="Vietnamese Unikey module for Fcitx"
+HOMEPAGE="http://fcitx-im.org/;
+SRC_URI="http://download.fcitx-im.org/${PN}/${P}.tar.xz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="+qt4"
+
+RDEPEND=">=app-i18n/fcitx-4.2.8[qt4?]"
+DEPEND="${RDEPEND}
+   sys-devel/gettext"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_enable qt4 QT)
+   )
+   cmake-utils_src_configure
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx/

2015-12-21 Thread Yixun Lan
commit: 89f9cc3016ba66c5ddeee712f6942cb2f1523a51
Author: Jiajun Wang  gmail  com>
AuthorDate: Fri Dec 11 03:39:27 2015 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Dec 22 02:31:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f9cc30

app-i18n/fcitx: drop hppa, ppc, ppc64 keywords

Gentoo-Bug: 568972, unsatisfied keywords
kde-frameworks/extra-cmake-modules isn't keyworded on those platforms

Package-Manager: portage-2.2.26
Signed-off-by: Yixun Lan  gentoo.org>

 app-i18n/fcitx/fcitx-4.2.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/fcitx/fcitx-4.2.9.ebuild 
b/app-i18n/fcitx/fcitx-4.2.9.ebuild
index 49b3256..7fe975b 100644
--- a/app-i18n/fcitx/fcitx-4.2.9.ebuild
+++ b/app-i18n/fcitx/fcitx-4.2.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://download.fcitx-im.org/fcitx/${P}_dict.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="+X +autostart +cairo +dbus debug +enchant gtk gtk3 icu introspection lua
 nls opencc +pango qt4 static-libs +table test +xml"
 



[gentoo-commits] repo/gentoo:master commit in: app-i18n/kcm-fcitx/

2015-12-21 Thread Yixun Lan
commit: 152ac83fa5dd787a34d17260cc6564bd9b150ea9
Author: Jiajun Wang  gmail  com>
AuthorDate: Thu Dec 10 07:52:14 2015 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Dec 22 02:31:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=152ac83f

app-i18n/kcm-fcitx: version bump to 0.5.2

Package-Manager: portage-2.2.26
Signed-off-by: Yixun Lan  gentoo.org>

 app-i18n/kcm-fcitx/Manifest   |  1 +
 app-i18n/kcm-fcitx/kcm-fcitx-0.5.2.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/app-i18n/kcm-fcitx/Manifest b/app-i18n/kcm-fcitx/Manifest
index 54f743a..14a52e6 100644
--- a/app-i18n/kcm-fcitx/Manifest
+++ b/app-i18n/kcm-fcitx/Manifest
@@ -1,3 +1,4 @@
 DIST kcm-fcitx-0.4.2.tar.xz 63796 SHA256 
f681c1a4172b74a63c36094f860eff4ea778422e1062b00fd03509eda745ed66 SHA512 
51ccc5b03f076e73cda7852b1bb1598e56114fe1a7733f3eb0a731c0249cbaa2ac7f4c27115929d236cc94a3f131fc790933cddff624387d050fecf3e170842e
 WHIRLPOOL 
6c0f3e4d345c7570ee519878c141ba2f708c85e0dc8a171058af291e6a02b48cdd3965335b9eb766f9a149b31d5fccc0334f8bb7352eb978625367af064e6b17
 DIST kcm-fcitx-0.4.3.tar.xz 56864 SHA256 
b7e9ad4569c0940f9654d58de1f13281fcbcab56febbd346951edcfa0a86e208 SHA512 
d311699a5d99f75d353899b7fba0a950491ee8b891724b855033449900ec4b3db9408bb1b80e60ceb0dbb0ce91072162062261a497f83a2a683214b71c3f4713
 WHIRLPOOL 
04aec049436a120362d02ba900a0d8639feb359b4cc6b99a871c7ffa8d9660270c321828b8660c718890a7f0ea308ea584711ed712762aab712fe8d7e72a205a
 DIST kcm-fcitx-0.5.0.tar.xz 55964 SHA256 
079b309aea4b354d081d45d3dde6d754b24717eb7653344055633453cb328b33 SHA512 
219b962c4b6f1763b389dc20d22a671d960a884f5c3f0faddbd4919b61dd6d93e600cbf440b15bc42f63cb383ed5ca65e657fa835c520196c8bd9d64a160baa3
 WHIRLPOOL 
df9db7b5198130409986c4805a7771b6df4bd44d532071499ec6eb522af7bfdd9d576fbdf3664720e47a02a57e35409c69fff962152423ac59bab71d8c1e0947
+DIST kcm-fcitx-0.5.2.tar.xz 55936 SHA256 
348b7afd18670c0879e616d6e097c2d8b033d1a7f5abbc3b75876953bd67f504 SHA512 
9418001ad92ada2e7c48c426b24b6babebb3e41510c9ff2aac01e25f84f79cd02a3e413267a31feb677beca51070a4ca55f5d64bd103ddd9ab7853f207370882
 WHIRLPOOL 
8ca8032ea4b50228ea33189d7afac160cc04882c2ac7403de8cb244b39feddfb89019b4ab4a6caf67b2a9d40c2a9b97cdee0832c5beec4c108b67bc35f0b5923

diff --git a/app-i18n/kcm-fcitx/kcm-fcitx-0.5.2.ebuild 
b/app-i18n/kcm-fcitx/kcm-fcitx-0.5.2.ebuild
new file mode 100644
index 000..283188e
--- /dev/null
+++ b/app-i18n/kcm-fcitx/kcm-fcitx-0.5.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit kde5
+
+DESCRIPTION="KDE configuration module for Fcitx"
+HOMEPAGE="http://fcitx-im.org/;
+SRC_URI="http://download.fcitx-im.org/${PN}/${P}.tar.xz;
+
+LICENSE="GPL-3"
+SLOT="5"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=app-i18n/fcitx-4.2.8
+   app-i18n/fcitx-qt5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   $(add_frameworks_dep extra-cmake-modules)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemviews)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep kwidgetsaddons)
+   sys-devel/gettext
+   x11-libs/libxkbfile"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   # po directory is empty, making the build fail
+   comment_add_subdirectory po
+}



[gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-anthy/

2015-12-21 Thread Yixun Lan
commit: 80af978bee5a4bc08a4f968f5091931cbd07ff12
Author: Jiajun Wang  gmail  com>
AuthorDate: Thu Dec 10 07:36:36 2015 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Dec 22 02:31:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80af978b

app-i18n/fcitx-anthy: version bump to 0.2.2

Package-Manager: portage-2.2.26
Signed-off-by: Yixun Lan  gentoo.org>

 app-i18n/fcitx-anthy/Manifest |  1 +
 app-i18n/fcitx-anthy/fcitx-anthy-0.2.2.ebuild | 29 +++
 2 files changed, 30 insertions(+)

diff --git a/app-i18n/fcitx-anthy/Manifest b/app-i18n/fcitx-anthy/Manifest
index f9552c2..8b9834b 100644
--- a/app-i18n/fcitx-anthy/Manifest
+++ b/app-i18n/fcitx-anthy/Manifest
@@ -1,2 +1,3 @@
 DIST fcitx-anthy-0.1.1.tar.xz 68604 SHA256 
c508068c7c9a56c26ea44b8e6ddb90a2ea75860031f89e171dcda8ec4cd08955 SHA512 
e2c4bb20f0b0a370e5f28bff14312c2c14210695418438ebe697b94570fe502be8c96dc8fbf813fd3aa6e352283a7d31808a1f12266d4a8050646a8ae86de9d9
 WHIRLPOOL 
48f674ef23d62f2dc1286712cbb252d709d9e3890921d1f9296ff89f85c5ae211daa887841fc01f267fe44764275e8b6de4aef859d9f1456cb24f00023b262ce
 DIST fcitx-anthy-0.2.1.tar.xz 72196 SHA256 
fd208474666f09f1c189c10c2c0fa9cfda33948b704410e02878fdd92174d78d SHA512 
18599251d6ebda96a23f81f63d91e9a9d469d2ea534975c2f4ddbc80584d70646ac6d157d0571f9d48565c0cfd1bb111e2907cae2c00b750014b9f39a7bcf961
 WHIRLPOOL 
99632911a7831ce24c7535b0e0a249cbbc48b24ec44682f6a09e3dc0a61d7eb74363642098158cc409c3390fb141d03591f1e1b1b3683164d4d6002fe9c92769
+DIST fcitx-anthy-0.2.2.tar.xz 72360 SHA256 
c8dd54fee3ada834d6ed0df561a95210256ea2a17fa5e00d9ae09892bafbd92b SHA512 
a4b1eeba813481cc40617e70bd5ee97d1921dc92bab15cf0bdc059d689c239e46caf9e8aba3403ff6374acfbdea565261a948444fe40fa18d5513797eccbd28d
 WHIRLPOOL 
7427384e8e12d7e35027a4a149cc758828fb9664204490d35f7b43ad083cc8545c4b52164af716065bccdd4a347f047e34c80cac32699641798fd2e21dccc8ea

diff --git a/app-i18n/fcitx-anthy/fcitx-anthy-0.2.2.ebuild 
b/app-i18n/fcitx-anthy/fcitx-anthy-0.2.2.ebuild
new file mode 100644
index 000..7675f95
--- /dev/null
+++ b/app-i18n/fcitx-anthy/fcitx-anthy-0.2.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit cmake-utils gnome2-utils
+
+DESCRIPTION="Japanese Anthy module for Fcitx"
+HOMEPAGE="http://fcitx-im.org/;
+SRC_URI="http://download.fcitx-im.org/${PN}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND=">=app-i18n/fcitx-4.2.8
+   app-i18n/anthy"
+DEPEND="${RDEPEND}
+   sys-devel/gettext
+   virtual/libintl"
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2015-12-21 Thread Michał Górny
commit: 2080c945c33fc35793429d1b21908cd0b81c7b51
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 22 05:25:34 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 22 05:25:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2080c945

x11-misc/googsystray: Convert to distutils-r1

 x11-misc/googsystray/googsystray-1.3.1-r1.ebuild | 21 +
 1 file changed, 21 insertions(+)

diff --git a/x11-misc/googsystray/googsystray-1.3.1-r1.ebuild 
b/x11-misc/googsystray/googsystray-1.3.1-r1.ebuild
new file mode 100644
index 000..23377a1
--- /dev/null
+++ b/x11-misc/googsystray/googsystray-1.3.1-r1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="System tray application for Google Voice, GMail, Google Calendar, 
Google Reader, and Google Wave"
+HOMEPAGE="http://googsystray.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=" >=dev-python/pygtk-2.14[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"



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

2015-12-21 Thread Matthias Maier
commit: 6420c69559c3b40f127215bb0c3e8a8556b6fefa
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Dec 22 06:09:46 2015 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Dec 22 06:15:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6420c695

app-emulation/libvirt: security fix for 1.2.21 (CVE-2015-5313, bug #568870)

Apply fix for CVE-2015-5313 to 1.2.21:
  A path-traversal flaw was found in the way the libvirt daemon handled
  file-system names for storage volumes. A libvirt user with privileges to
  create storage volumes and without privileges to create and modify
  domains could possibly use this flaw to escalate their privileges.

Gentoo-Bug: 568870

Package-Manager: portage-2.2.26

 app-emulation/libvirt/Manifest  | 1 +
 .../libvirt/{libvirt-1.2.21.ebuild => libvirt-1.2.21-r1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-emulation/libvirt/Manifest b/app-emulation/libvirt/Manifest
index ea286cf..2350083 100644
--- a/app-emulation/libvirt/Manifest
+++ b/app-emulation/libvirt/Manifest
@@ -1,4 +1,5 @@
 DIST libvirt-1.2.18.tar.gz 29412554 SHA256 
d5a5ff18af4cced21fed986d28fa0a21b782d256920326bf0ff1c7731eeb6ade SHA512 
e89d494066ebec4de4c9a53089f015635b7b5ccf4a10ab9749883cc81f6f9607b18ca91a1bd01a9cdacb3a46de86223f0432fae3954106cb92dd275e5b4138c5
 WHIRLPOOL 
dbbbd627ccb9be154bc680407898cd32dfdbc218a67f54560e6b0f0200cbc157a9aa05834de5d9d23e3b6da0625fd5943b4c8e38f8bb9a6ff920bc5820287bfc
 DIST libvirt-1.2.19.tar.gz 29644247 SHA256 
282c141f03331d640020c15f81464b27400e0ee307ef4c5190393b021caedd6e SHA512 
2f3f26b90120a39861683f1b5af93ac661ab561e23514c71c2ebfb1ab88da99d25acee9a5d11bec35478e38b9105f3779bffb4d4649f16a91aeccdcaa61e4aa4
 WHIRLPOOL 
4262beb2248495746d32bc7b16c3eec69d9cba7d4fb3870fcd560bd4d222827cf90eb9cc3df647f3fe10467d1562e72138cbf871adc5f63d4788069e1b9740ac
 DIST libvirt-1.2.20.tar.gz 29725368 SHA256 
df0b5d8a150863a86b98cf809a586c91b2d49af25b74a354049ea416b0b27d30 SHA512 
2c7f7995d38d15453de99cc34e63db9c39c653fc24a4fd949207e62c0241f2a5ff3ab5505909ffae77f7a91d321396372188aa29124b8271f876d93546c44d07
 WHIRLPOOL 
553517c8eec3f601987d9a9205668a81ffcaf9081ee0d79de847ce1d2c9bcd9115471adf2022095143d440a07f7d48059cfd88094b7dda7046a784c93c449817
+DIST libvirt-1.2.21-20151222.tar.xz 1684 SHA256 
6c97f288470ec58bcbe98507563c6a191892c6f8813a7b9688c09b823934cbe5 SHA512 
4fd43f0e12434b78ac3e671ad8eb0e402d384cff6278f6d0db322a068c2c8807c7c7f7e5774aa9d19e2a85e49f6d9888908b32fca5fc04980134edaccba0afe2
 WHIRLPOOL 
2bfbc3cbf1ca44a2bb06ddf2e8eabeb116165560b9c73d649d7b8cc9baba851f5e9246414bfc2c4740f27d0d0d42b6176eaec43b05e8c1e54de2804150c2cde1
 DIST libvirt-1.2.21.tar.gz 29848954 SHA256 
8d406582f5fe88d739d1d83e0ba7ac7f91f5a8da4be82162ab85631744d8925b SHA512 
5c15d0ba5d75c13f735c6a60dfdbad007426f77e113f95894d520f7fc358fa4361d5cce7bb9a548a436f323b845f13b8940abbad568b8b146418430068bb970e
 WHIRLPOOL 
d53bbb07c85b3aa2d9b0f38ff2edd3cd0a2a5300627f3e2f0a82bc057303617cab9d6f1d8a9a771bd968b0496d38d3a39a0154f88bdca44dda359a65fdc2c650

diff --git a/app-emulation/libvirt/libvirt-1.2.21.ebuild 
b/app-emulation/libvirt/libvirt-1.2.21-r1.ebuild
similarity index 99%
rename from app-emulation/libvirt/libvirt-1.2.21.ebuild
rename to app-emulation/libvirt/libvirt-1.2.21-r1.ebuild
index 1c2ba1a..aef232a 100644
--- a/app-emulation/libvirt/libvirt-1.2.21.ebuild
+++ b/app-emulation/libvirt/libvirt-1.2.21-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils user autotools-utils linux-info systemd readme.gentoo
 
-BACKPORTS=""
+BACKPORTS="20151222"
 
 if [[ ${PV} = ** ]]; then
inherit git-r3



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

2015-12-21 Thread Matthias Maier
commit: c8308f11262b27472963c980f11f980f795f3d52
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Dec 22 06:12:19 2015 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Dec 22 06:15:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8308f11

dev-python/libvirt-python: remove 1.2.20 and 1.2.21 (bug #568870)

This is a cleanup for CVE-2015-5313 bug 568870.

Gentoo-Bugs: 568870

Package-Manager: portage-2.2.26

 dev-python/libvirt-python/Manifest |  2 -
 .../libvirt-python/libvirt-python-1.2.19.ebuild| 44 --
 .../libvirt-python/libvirt-python-1.2.20.ebuild| 44 --
 3 files changed, 90 deletions(-)

diff --git a/dev-python/libvirt-python/Manifest 
b/dev-python/libvirt-python/Manifest
index 990e7f9..00f6499 100644
--- a/dev-python/libvirt-python/Manifest
+++ b/dev-python/libvirt-python/Manifest
@@ -1,4 +1,2 @@
 DIST libvirt-python-1.2.18.tar.gz 171009 SHA256 
204535ef160c9d10600b5fc3417f00f382e74b137a85b33774b97eb36d8a3638 SHA512 
bf9f246d8bc2e55dc0cdeb22901b2dd2858b058c0616a2d5db3ca4a700c3430c9cd1f904ec3090cab7c3db1d40195a6365fed3b7b18fbd1d975fdca5fa57ce29
 WHIRLPOOL 
a1e684360341b896bd96d6a313320ddb7ad455c64e4d1577076713e4913c95d2bd6f9222a6ac45b735a33d8e7fff06b40327e298d21e214857db17c859fb4849
-DIST libvirt-python-1.2.19.tar.gz 172149 SHA256 
88ab63b0c53e435bd2c6e8551805fe273353708efd4dfab908257dc5f37bec49 SHA512 
670cc7af3fc5e67fa8daa8312278ecf81608ceddd34c40fc799e0c2836a5a8c3489186dee5ffcd806bf70840c1aa7b64178eef334f35c4bbe5fe21413b473d3b
 WHIRLPOOL 
74e73e1dcabd0ed67988f34cd12c7ecc3d71e5dbfc4a5f81f22e3aeed37ee3fa343b780bbafa7941a79abffdb4d7a566e65b73c185c695567d6558e18ef58b32
-DIST libvirt-python-1.2.20.tar.gz 170437 SHA256 
e1ea097546edc7cb0e7fd01e2ca9906ac12cc4f16d07f15f8f0f5154626ba446 SHA512 
2fd642b1f7efee46331636098e8bc9d1194f399bb93e9d445103a70264332bb6b216bb42846432707e1538f73f96c4c141dde84779d3b36cc93f6f7914466ef9
 WHIRLPOOL 
19c56d69a8c61814b8312e5b0920efae6433bffe3cd33237a34efb6847abd4bafa686481cd40c72cc0f92290d0c70efc53d83c42d2b6a2f20928608321c41351
 DIST libvirt-python-1.2.21.tar.gz 171250 SHA256 
7ffb49fcb64ac06188fc626c853c99361e5965766ab020f8ea66f8fbcfc29684 SHA512 
7e2481ffa26105ddde703bd6eafe74240b69990b2f2ce0042f20f7fceb1d326fb8a66bf26042bfe63a12cf3202d7c19b14b6d766dd42fb66af212393d7aaf332
 WHIRLPOOL 
18dd5bc0d565b6846c40960cf258d7fb3714054be15fe54507e2846c5a7c2cd81e9b209c8e70cbfd5319d5a06f00c2c5322995058637af87d1676276f8675b2e

diff --git a/dev-python/libvirt-python/libvirt-python-1.2.19.ebuild 
b/dev-python/libvirt-python/libvirt-python-1.2.19.ebuild
deleted file mode 100644
index cc59d1b..000
--- a/dev-python/libvirt-python/libvirt-python-1.2.19.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-AUTOTOOLIZE=yes
-
-MY_P="${P/_rc/-rc}"
-
-inherit eutils distutils-r1
-
-if [[ ${PV} = ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="git://libvirt.org/libvirt-python.git"
-   SRC_URI=""
-   KEYWORDS=""
-   RDEPEND="app-emulation/libvirt:=[-python(-)]"
-else
-   SRC_URI="http://libvirt.org/sources/python/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~x86"
-   RDEPEND="app-emulation/libvirt:0/${PV}"
-fi
-S="${WORKDIR}/${P%_rc*}"
-
-DESCRIPTION="libvirt Python bindings"
-HOMEPAGE="http://www.libvirt.org;
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="test"
-
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   test? ( dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}] )"
-
-# testsuite is currently not included in upstream tarball
-RESTRICT="test"
-
-python_test() {
-   esetup.py test
-}

diff --git a/dev-python/libvirt-python/libvirt-python-1.2.20.ebuild 
b/dev-python/libvirt-python/libvirt-python-1.2.20.ebuild
deleted file mode 100644
index cc59d1b..000
--- a/dev-python/libvirt-python/libvirt-python-1.2.20.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-AUTOTOOLIZE=yes
-
-MY_P="${P/_rc/-rc}"
-
-inherit eutils distutils-r1
-
-if [[ ${PV} = ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="git://libvirt.org/libvirt-python.git"
-   SRC_URI=""
-   KEYWORDS=""
-   RDEPEND="app-emulation/libvirt:=[-python(-)]"
-else
-   SRC_URI="http://libvirt.org/sources/python/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~x86"
-   RDEPEND="app-emulation/libvirt:0/${PV}"
-fi
-S="${WORKDIR}/${P%_rc*}"
-
-DESCRIPTION="libvirt Python bindings"
-HOMEPAGE="http://www.libvirt.org;
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="test"
-
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   test? ( dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}] )"
-
-# testsuite is currently not 

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-data-server/

2015-12-21 Thread Gilles Dartiguelongue
commit: e7a292898afe76b8b522635be131a9c58c83af7c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Dec 21 07:41:31 2015 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Dec 21 08:14:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7a29289

gnome-extra/evolution-data-server: version bump to 3.18.3

Package-Manager: portage-2.2.26

 gnome-extra/evolution-data-server/Manifest |   1 +
 .../evolution-data-server-3.18.3.ebuild| 130 +
 2 files changed, 131 insertions(+)

diff --git a/gnome-extra/evolution-data-server/Manifest 
b/gnome-extra/evolution-data-server/Manifest
index e15074f..3c200bf 100644
--- a/gnome-extra/evolution-data-server/Manifest
+++ b/gnome-extra/evolution-data-server/Manifest
@@ -1,2 +1,3 @@
 DIST evolution-data-server-3.16.5.tar.xz 5364120 SHA256 
e44ad4143402957cab8cab1a6b3d7057d8b111d268c6b9ad4e4008850f5b244c SHA512 
7f4fd758175d3d48d249cebd855fe684b808574421f1d09ee90aad16c76da89980f17bb2fa9741187adb44327166ebcb78c5330f28f01b20f3810c36653f78d1
 WHIRLPOOL 
559b4e2f1de4f26bf5806c1f5cabc3afe6aea910fa0dcf657947d085ea2344250b8b149a7d6760d342abb1893872b937c7d7626648cff2fe12fe531fb52cd3c2
 DIST evolution-data-server-3.18.2.tar.xz 5410148 SHA256 
5942fc1cf395acdc15425939d83824d861d01c57225ee3fc8c1d77009468ce9b SHA512 
b90d7b53048dad2ac94e414e55f99eeb7695475c4db8c7d803206eabfe8a7b2a42a9c5083119e72fbe4ccc6afc8b120087da712dfc40c953bb66cb3bcbefe2f7
 WHIRLPOOL 
992b262ce926bdf176a5d5cb041e25e61be3609eedee1d35d7232afcc4e576da571bcef98a695cfa908b92c567c128a39846f528eb5ed51967e6535c976c2025
+DIST evolution-data-server-3.18.3.tar.xz 5411056 SHA256 
9de9d6392822bb4b89318a88f5db1fd2f0f09899b793a0dd5525a656ed0e8163 SHA512 
af17a550991a453de9e953c343e774c0ee1155a483a3c2d55e3da9b5ba9a99adbbc9de56c57d27176c8508dec8bba771480a1787d88fb09daaab57b9c1cdf712
 WHIRLPOOL 
01871974e33cf3510a181ea5a3e1ade4cc29675445b39b0de3e64ad93ab0de5b2330c778e8ef201e43d071c79b1825ab01731b71497b49e1f7b65bd02f3b3da9

diff --git 
a/gnome-extra/evolution-data-server/evolution-data-server-3.18.3.ebuild 
b/gnome-extra/evolution-data-server/evolution-data-server-3.18.3.ebuild
new file mode 100644
index 000..555a55c
--- /dev/null
+++ b/gnome-extra/evolution-data-server/evolution-data-server-3.18.3.ebuild
@@ -0,0 +1,130 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python2_7 python3_4 pypy pypy2_0 )
+VALA_MIN_API_VERSION="0.22"
+VALA_USE_DEPEND="vapigen"
+
+inherit db-use flag-o-matic gnome2 python-any-r1 vala virtualx
+
+DESCRIPTION="Evolution groupware backend"
+HOMEPAGE="https://wiki.gnome.org/Apps/Evolution;
+
+# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+".
+LICENSE="|| ( LGPL-2 LGPL-3 ) BSD Sleepycat"
+SLOT="0/54" # subslot = libcamel-1.2 soname version
+IUSE="api-doc-extras +gnome-online-accounts +gtk +introspection ipv6 ldap 
kerberos vala +weather"
+REQUIRED_USE="vala? ( introspection )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
+
+# sys-libs/db is only required for migrating from <3.13 versions
+# gdata-0.15.1 is required for google tasks
+RDEPEND="
+   >=app-crypt/gcr-3.4
+   >=app-crypt/libsecret-0.5[crypt]
+   >=dev-db/sqlite-3.7.17:=
+   >=dev-libs/glib-2.40:2
+   >=dev-libs/libgdata-0.10:=
+   >=dev-libs/libical-0.43:=
+   >=net-libs/libsoup-2.42:2.4
+   >=dev-libs/libxml2-2
+   >=dev-libs/nspr-4.4:=
+   >=dev-libs/nss-3.9:=
+   >=sys-libs/db-4:=
+
+   dev-libs/icu:=
+   sys-libs/zlib:=
+   virtual/libiconv
+
+   gtk? (
+   >=app-crypt/gcr-3.4[gtk]
+   >=x11-libs/gtk+-3.10:3
+   )
+   gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8 )
+   introspection? ( >=dev-libs/gobject-introspection-0.9.12:= )
+   kerberos? ( virtual/krb5:= )
+   ldap? ( >=net-nds/openldap-2:= )
+   weather? ( >=dev-libs/libgweather-3.10:2= )
+"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   dev-util/gdbus-codegen
+   dev-util/gperf
+   >=dev-util/gtk-doc-am-1.14
+   >=dev-util/intltool-0.35.5
+   >=gnome-base/gnome-common-3.5.5
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+   vala? ( $(vala_depend) )
+"
+
+# eautoreconf needs:
+#  >=gnome-base/gnome-common-2
+
+# Some tests fail due to missings locales.
+# Also, dbus tests are flacky, bugs #397975 #501834
+# It looks like a nightmare to disable those for now.
+RESTRICT="test"
+
+pkg_setup() {
+   python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   use vala && vala_src_prepare
+
+   # Fix relink issues in src_install
+   ELTCONF="--reverse-deps"
+
+   gnome2_src_prepare
+}
+
+src_configure() {
+   # /usr/include/db.h is always db-1 on FreeBSD
+   # so include the 

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

2015-12-21 Thread Gilles Dartiguelongue
commit: 448ee48f31d24942f659310ea9c55f4cc24500b2
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Dec 21 07:51:20 2015 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Dec 21 08:14:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=448ee48f

mail-client/evolution: restore ~ppc* keywords since cryptui has been keyworded

Package-Manager: portage-2.2.26

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

diff --git a/mail-client/evolution/evolution-3.18.3.ebuild 
b/mail-client/evolution/evolution-3.18.3.ebuild
index 45f4788..c65ba00 100644
--- a/mail-client/evolution/evolution-3.18.3.ebuild
+++ b/mail-client/evolution/evolution-3.18.3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Evolution;
 LICENSE="|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP"
 SLOT="2.0"
 IUSE="+bogofilter crypt highlight ldap map spamassassin spell ssl +weather"
-KEYWORDS="~alpha ~amd64 ~ia64 ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~ia64 ~x86 ~x86-fbsd"
 
 # We need a graphical pinentry frontend to be able to ask for the GPG
 # password from inside evolution, bug 160302



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

2015-12-21 Thread Justin Lecher
commit: 9bad55710628dd34589c6872d68bafe3c194cb61
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 21 10:50:39 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 21 10:50:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bad5571

sys-fs/aufs4: Bump to latest aufs release

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

 sys-fs/aufs4/Manifest   |   1 +
 sys-fs/aufs4/aufs4-0_pre20151221.ebuild | 164 
 2 files changed, 165 insertions(+)

diff --git a/sys-fs/aufs4/Manifest b/sys-fs/aufs4/Manifest
index 91d5164..2f6f689 100644
--- a/sys-fs/aufs4/Manifest
+++ b/sys-fs/aufs4/Manifest
@@ -11,3 +11,4 @@ DIST aufs4-standalone-0_pre20151012.tar.xz 651492 SHA256 
3cb564a71a4d4fe4f16c941
 DIST aufs4-standalone-0_pre20151102.tar.xz 677588 SHA256 
5e0aa085e42dacc45991e49e485bf4f20cb911c71c8d5363ef2986733cb3d9ef SHA512 
b4973078f31c50bb58afeb4fc5216a34d31b1dd4de60a5dd172962935becad60820146e22e39e88fc16a4c7a74e21923f02a77d6b0d8cd8aeef946806ed97932
 WHIRLPOOL 
e04651079f1f04a74c330786ff3bbe72c367657ad8d0351ce251a4287ddee65231df410436f86474e6418b3e848eaa370f930376a2a1ad9fe57280b4d75be4cb
 DIST aufs4-standalone-0_pre20151109.tar.xz 697760 SHA256 
6dc6341cf729106d0f53b36f100c8d561992985f8dd8000a0956d716b10321a9 SHA512 
dcacf98040bd51ad974582e1129b1993d8945b19449dd1e9ce855a5eb1502b05ab67196fa0f61e10eb45a3496d9866c0137122486ef9021704a59a41a7ffa944
 WHIRLPOOL 
2fd61080044b11f05514d55c9edabb345109cd217a7fcafdae3cc9c2cf8322a998da0f6416e20782ae9dfebd9483d7d87c3280bdf86d718bc2df993e11f2925a
 DIST aufs4-standalone-0_pre20151116.tar.xz 741280 SHA256 
362d56dac519b35e73cb93b0ed61442e9cfd01da463ab92579f7e231543dec66 SHA512 
425adac57115b61af0d0db713cf60dfbd2820464b4e9beae84ae14bb2e37d99b4e940a67c82aae1fb7b1693a4c812e606239e7f7b254d62105da14973200b40e
 WHIRLPOOL 
5d336ba26ffc4a9daa2675f28d88b53a306224bc42b2751f3cbe7d1fa2c34d93fb0babec82ff6aa844de56cfc5ddda17fc9deb5f1e6d43efc4b3a19389096be0
+DIST aufs4-standalone-0_pre20151221.tar.xz 782884 SHA256 
7871f3159418956ab7498df800cf082c55ea84af82720c2fe254cfe0ddbb090f SHA512 
a0f5e0af490209b3ac76bcb8c2ac31dcff05d881b9dad314c701ac84b990c26b0b5beb59f36ce5e373b6548052eeda1389bd8ba39a5be15b9eeea13dfc9b2c65
 WHIRLPOOL 
92cf2595e167a47f571d565a61e69dee779b8a7dc52400492eb52bf9107936787d570f48af517d935fedb8ef89cfafcdde0b8c0bae2968dd3e69a80b58e42f5d

diff --git a/sys-fs/aufs4/aufs4-0_pre20151221.ebuild 
b/sys-fs/aufs4/aufs4-0_pre20151221.ebuild
new file mode 100644
index 000..e30e5f2
--- /dev/null
+++ b/sys-fs/aufs4/aufs4-0_pre20151221.ebuild
@@ -0,0 +1,164 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils flag-o-matic linux-info linux-mod multilib readme.gentoo 
toolchain-funcs
+
+AUFS_VERSION="${PV%%_p*}"
+# highest branch version
+PATCH_MAX_VER=3
+# highest supported version
+KERN_MAX_VER=4
+# lowest supported version
+KERN_MIN_VER=0
+
+DESCRIPTION="An entirely re-designed and re-implemented Unionfs"
+HOMEPAGE="http://aufs.sourceforge.net/;
+SRC_URI="https://dev.gentoo.org/~jlec/distfiles/aufs4-standalone-${PV}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc fuse hfs inotify kernel-patch nfs pax_kernel ramfs"
+
+DEPEND="
+   dev-util/patchutils
+   dev-vcs/git"
+RDEPEND="
+   sys-fs/aufs-util
+   !sys-fs/aufs
+   !sys-fs/aufs2
+   !sys-fs/aufs3"
+
+S="${WORKDIR}"/${PN}-standalone
+
+MODULE_NAMES="aufs(misc:${S})"
+
+pkg_setup() {
+   CONFIG_CHECK+=" !AUFS_FS"
+   use inotify && CONFIG_CHECK+=" ~FSNOTIFY"
+   use nfs && CONFIG_CHECK+=" EXPORTFS"
+   use fuse && CONFIG_CHECK+=" ~FUSE_FS"
+   use hfs && CONFIG_CHECK+=" ~HFSPLUS_FS"
+   use pax_kernel && CONFIG_CHECK+=" PAX" && ERROR_PAX="Please use 
hardened sources"
+
+   # this is needed so merging a binpkg ${PN} is possible w/out a kernel 
unpacked on the system
+   [ -n "$PKG_SETUP_HAS_BEEN_RAN" ] && return
+
+   get_version
+   kernel_is lt 4 ${KERN_MIN_VER} 0 && die "the kernel version isn't 
supported by upstream anymore. Please upgrade."
+   kernel_is gt 4 ${KERN_MAX_VER} 99 && die "kernel too new"
+
+   linux-mod_pkg_setup
+
+   if [[ "${KV_MINOR}" -gt "${PATCH_MAX_VER}" ]]; then
+   PATCH_BRANCH="x-rcN"
+   else
+   PATCH_BRANCH="${KV_MINOR}"
+   fi
+
+   case ${KV_EXTRA} in
+   "")
+   elog "It seems you are using vanilla-sources 
with aufs4"
+   elog "Please use sys-kernel/aufs-sources with 
USE=vanilla"
+   elog "This will save you the nasty reemerge of 
sys-fs/aufs4 on every kernel upgrade"
+   ;;
+   "-gentoo")
+   elog "It seems you are using gentoo-sources 
with aufs4"
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/virtualbox-additions/, x11-drivers/xf86-video-virtualbox/, ...

2015-12-21 Thread Lars Wendler
commit: 296934101964cdabc3123834e87ecf0b7d9bd7cb
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 21 08:02:43 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 21 08:07:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29693410

virtualbox packages: Bump to version 5.0.12

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

 app-emulation/virtualbox-additions/Manifest|   1 +
 .../virtualbox-additions-5.0.12.ebuild |  36 ++
 app-emulation/virtualbox-bin/Manifest  |   4 +
 .../virtualbox-bin-5.0.12.104815.ebuild| 357 +
 app-emulation/virtualbox-extpack-oracle/Manifest   |   1 +
 .../virtualbox-extpack-oracle-5.0.12.104815.ebuild |  43 +++
 app-emulation/virtualbox-guest-additions/Manifest  |   1 +
 .../virtualbox-guest-additions-5.0.12.ebuild   | 212 +++
 app-emulation/virtualbox-modules/Manifest  |   1 +
 .../virtualbox-modules-5.0.12.ebuild   |  59 +++
 app-emulation/virtualbox/Manifest  |   1 +
 app-emulation/virtualbox/virtualbox-5.0.12.ebuild  | 423 +
 x11-drivers/xf86-video-virtualbox/Manifest |   1 +
 .../xf86-video-virtualbox-5.0.12.ebuild| 174 +
 14 files changed, 1314 insertions(+)

diff --git a/app-emulation/virtualbox-additions/Manifest 
b/app-emulation/virtualbox-additions/Manifest
index 685e5fe..9f74ad6 100644
--- a/app-emulation/virtualbox-additions/Manifest
+++ b/app-emulation/virtualbox-additions/Manifest
@@ -2,4 +2,5 @@ DIST VBoxGuestAdditions_4.3.28.iso 58241024 SHA256 
9f52e186d6c9407b2676d4b2ed1cd
 DIST VBoxGuestAdditions_4.3.32.iso 58349568 SHA256 
187f49b567dea056d9de255c155f8eaa3449dffe08ccf22ae8ab1dda708f78fe SHA512 
3938ade4fd030f2471b34b11296af3874c3936659c635a9d7e222697f2dc72c65fc4f73f42800def8a8bcc518951bb9a3504156811af18e00722a6f61c03b6a4
 WHIRLPOOL 
8e5f25709ea1b74f94f303f29ef7d1601f29681515981b2f16fddd4af4c9bec842101bfab7626112777284c3f243f8e4a66a23d09a23af353e4f1e0645043618
 DIST VBoxGuestAdditions_4.3.34.iso 58361856 SHA256 
a6f20f5b8ec11ae127ae48bcb19c20de488d38dbf807a8608a6468da7353a9a8 SHA512 
b243558b510548518e1ed863bc4a5d8c849573f7664ce6c398766a10fe9cb5aa0f34e8ff4f9ac948e06929033800e8e2fa3583fcb92ecd44fb0cd755521be236
 WHIRLPOOL 
29019b8e14a9a28622b7c07c7049153aab7b846aa58713e7537d66addebe5a6627dcedbcd36944bc1a2ebe382f2f3acc3f793e2c2cee9bab9805f931e88b870e
 DIST VBoxGuestAdditions_5.0.10.iso 59002880 SHA256 
8f7ffee3fac75793e48d1859b65a95879b3ed5bc1c3164c967e85d69244c594b SHA512 
95080cc991f99d11aea771088b980faa42c9f0d33ee31afc53de758d49cb62db0275bd5907ff2bf29382194e6227e965986ccdbec7bf50e254e178689e291b65
 WHIRLPOOL 
24a2c79f3868d14da387c4f282af848411d0a78a8c4431b72f64474cc05ca2bb24aef923e3e1d9e0f1ae17cc342aa821c2ad782d8af233f3c09c4b26afb4c7f9
+DIST VBoxGuestAdditions_5.0.12.iso 58990592 SHA256 
61a19c9ec4b449cbc6bb41b636b03a16bf5a47ffa4943423d262863017e8bc9b SHA512 
9232752f1d71fde887755e917b9e146d53fabe3cc2736e96216a04b1a3faf692d00da47458f7c700587d424b5817debb56c375c068e3e5baa925b7f6732d0ab4
 WHIRLPOOL 
a87eb9877c0a4d7c432d32c3d4ec408d1167d152a09feaf037bc37dc8c31be0287af93e2c6eb73d01cdda859430f7517e1a1a2aabaf92301aabb9d5a81ff8955
 DIST VBoxGuestAdditions_5.0.8.iso 58992640 SHA256 
a6ab45a043e460c87f145ec626c1cc2a1ae74222f15aa725004cdc84bf48e9f3 SHA512 
8a808b964b916930748cdde96cbf0b3657506758155336b5d7a294cde28129cff50ec5e88fdd5e0c3bad8a5df99e8244c08677811aa4e3982f4255273d66820a
 WHIRLPOOL 
a2fe1cb6c334f44a4dd962a0479b1a2956ebd9a9d5aee9c6a3a2203c22a1f764aa1829f1a813d14f60cfdebef27ddb59c554a0db50b18641df2da6a1d67d20c5

diff --git 
a/app-emulation/virtualbox-additions/virtualbox-additions-5.0.12.ebuild 
b/app-emulation/virtualbox-additions/virtualbox-additions-5.0.12.ebuild
new file mode 100644
index 000..e46434c
--- /dev/null
+++ b/app-emulation/virtualbox-additions/virtualbox-additions-5.0.12.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+MY_PN=VBoxGuestAdditions
+MY_PV="${PV/beta/BETA}"
+MY_PV="${MY_PV/rc/RC}"
+MY_P=${MY_PN}_${MY_PV}
+
+DESCRIPTION="CD image containing guest additions for VirtualBox"
+HOMEPAGE="http://www.virtualbox.org/;
+SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.iso;
+
+LICENSE="GPL-2+ LGPL-2.1+ MIT SGI-B-2.0 CDDL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+RESTRICT="mirror"
+
+RDEPEND="!app-emulation/virtualbox-bin
+   !=app-emulation/virtualbox-"
+
+S="${WORKDIR}"
+
+src_unpack() {
+   return 0
+}
+
+src_install() {
+   insinto /usr/share/${PN/-additions}
+   newins "${DISTDIR}"/${MY_P}.iso ${MY_PN}.iso
+}

diff --git a/app-emulation/virtualbox-bin/Manifest 
b/app-emulation/virtualbox-bin/Manifest
index 4df3037..2d5334a 100644
--- a/app-emulation/virtualbox-bin/Manifest
+++ b/app-emulation/virtualbox-bin/Manifest
@@ -2,6 +2,7 @@ DIST 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/virtualbox-modules/, app-emulation/virtualbox-guest-additions/, ...

2015-12-21 Thread Lars Wendler
commit: e7fc87fea1c02cc25b0c1e42542a58f8197f8c4d
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 21 08:07:24 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 21 08:07:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7fc87fe

virtualbox packages: Removed old.

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

 app-emulation/virtualbox-additions/Manifest|   1 -
 .../virtualbox-additions-5.0.8.ebuild  |  36 --
 app-emulation/virtualbox-bin/Manifest  |   4 -
 .../virtualbox-bin-5.0.8.103449.ebuild | 357 -
 app-emulation/virtualbox-extpack-oracle/Manifest   |   1 -
 .../virtualbox-extpack-oracle-5.0.8.103449.ebuild  |  43 ---
 app-emulation/virtualbox-guest-additions/Manifest  |   1 -
 .../virtualbox-guest-additions-5.0.8.ebuild| 212 ---
 app-emulation/virtualbox-modules/Manifest  |   1 -
 .../virtualbox-modules-5.0.8.ebuild|  59 ---
 app-emulation/virtualbox/Manifest  |   1 -
 app-emulation/virtualbox/virtualbox-5.0.8.ebuild   | 423 -
 x11-drivers/xf86-video-virtualbox/Manifest |   1 -
 .../xf86-video-virtualbox-5.0.8.ebuild | 174 -
 14 files changed, 1314 deletions(-)

diff --git a/app-emulation/virtualbox-additions/Manifest 
b/app-emulation/virtualbox-additions/Manifest
index 9f74ad6..2bd568b 100644
--- a/app-emulation/virtualbox-additions/Manifest
+++ b/app-emulation/virtualbox-additions/Manifest
@@ -3,4 +3,3 @@ DIST VBoxGuestAdditions_4.3.32.iso 58349568 SHA256 
187f49b567dea056d9de255c155f8
 DIST VBoxGuestAdditions_4.3.34.iso 58361856 SHA256 
a6f20f5b8ec11ae127ae48bcb19c20de488d38dbf807a8608a6468da7353a9a8 SHA512 
b243558b510548518e1ed863bc4a5d8c849573f7664ce6c398766a10fe9cb5aa0f34e8ff4f9ac948e06929033800e8e2fa3583fcb92ecd44fb0cd755521be236
 WHIRLPOOL 
29019b8e14a9a28622b7c07c7049153aab7b846aa58713e7537d66addebe5a6627dcedbcd36944bc1a2ebe382f2f3acc3f793e2c2cee9bab9805f931e88b870e
 DIST VBoxGuestAdditions_5.0.10.iso 59002880 SHA256 
8f7ffee3fac75793e48d1859b65a95879b3ed5bc1c3164c967e85d69244c594b SHA512 
95080cc991f99d11aea771088b980faa42c9f0d33ee31afc53de758d49cb62db0275bd5907ff2bf29382194e6227e965986ccdbec7bf50e254e178689e291b65
 WHIRLPOOL 
24a2c79f3868d14da387c4f282af848411d0a78a8c4431b72f64474cc05ca2bb24aef923e3e1d9e0f1ae17cc342aa821c2ad782d8af233f3c09c4b26afb4c7f9
 DIST VBoxGuestAdditions_5.0.12.iso 58990592 SHA256 
61a19c9ec4b449cbc6bb41b636b03a16bf5a47ffa4943423d262863017e8bc9b SHA512 
9232752f1d71fde887755e917b9e146d53fabe3cc2736e96216a04b1a3faf692d00da47458f7c700587d424b5817debb56c375c068e3e5baa925b7f6732d0ab4
 WHIRLPOOL 
a87eb9877c0a4d7c432d32c3d4ec408d1167d152a09feaf037bc37dc8c31be0287af93e2c6eb73d01cdda859430f7517e1a1a2aabaf92301aabb9d5a81ff8955
-DIST VBoxGuestAdditions_5.0.8.iso 58992640 SHA256 
a6ab45a043e460c87f145ec626c1cc2a1ae74222f15aa725004cdc84bf48e9f3 SHA512 
8a808b964b916930748cdde96cbf0b3657506758155336b5d7a294cde28129cff50ec5e88fdd5e0c3bad8a5df99e8244c08677811aa4e3982f4255273d66820a
 WHIRLPOOL 
a2fe1cb6c334f44a4dd962a0479b1a2956ebd9a9d5aee9c6a3a2203c22a1f764aa1829f1a813d14f60cfdebef27ddb59c554a0db50b18641df2da6a1d67d20c5

diff --git 
a/app-emulation/virtualbox-additions/virtualbox-additions-5.0.8.ebuild 
b/app-emulation/virtualbox-additions/virtualbox-additions-5.0.8.ebuild
deleted file mode 100644
index e46434c..000
--- a/app-emulation/virtualbox-additions/virtualbox-additions-5.0.8.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-MY_PN=VBoxGuestAdditions
-MY_PV="${PV/beta/BETA}"
-MY_PV="${MY_PV/rc/RC}"
-MY_P=${MY_PN}_${MY_PV}
-
-DESCRIPTION="CD image containing guest additions for VirtualBox"
-HOMEPAGE="http://www.virtualbox.org/;
-SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.iso;
-
-LICENSE="GPL-2+ LGPL-2.1+ MIT SGI-B-2.0 CDDL"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-RESTRICT="mirror"
-
-RDEPEND="!app-emulation/virtualbox-bin
-   !=app-emulation/virtualbox-"
-
-S="${WORKDIR}"
-
-src_unpack() {
-   return 0
-}
-
-src_install() {
-   insinto /usr/share/${PN/-additions}
-   newins "${DISTDIR}"/${MY_P}.iso ${MY_PN}.iso
-}

diff --git a/app-emulation/virtualbox-bin/Manifest 
b/app-emulation/virtualbox-bin/Manifest
index 2d5334a..1401d57 100644
--- a/app-emulation/virtualbox-bin/Manifest
+++ b/app-emulation/virtualbox-bin/Manifest
@@ -3,7 +3,6 @@ DIST Oracle_VM_VirtualBox_Extension_Pack-4.3.32-103443.tar.gz 
15994576 SHA256 3f
 DIST Oracle_VM_VirtualBox_Extension_Pack-4.3.34-104062.tar.gz 15994268 SHA256 
b9c03b6db79de16f70134884c18cb4854a8c24cb36f90e3a9d2b93eb09fb6b37 SHA512 
39b06eb26fcc01dc70de0a9d099a8919c53f72d9a74133d803bb5d10ea06cd390a6dd3853a024b311695c57805d6e2b664ec667fa0d882142f4a33fdfb01b642
 WHIRLPOOL 

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

2015-12-21 Thread Jason Zaman
commit: 8a54d1305b756fdc3b9a0872d7becac5cf5c30ec
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Dec 20 16:12:52 2015 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Dec 21 08:56:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a54d130

dev-python/sepolgen: migrate selinux herd to project

Package-Manager: portage-2.2.24

 dev-python/sepolgen/metadata.xml | 13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/dev-python/sepolgen/metadata.xml b/dev-python/sepolgen/metadata.xml
index 0e45428..48cda10 100644
--- a/dev-python/sepolgen/metadata.xml
+++ b/dev-python/sepolgen/metadata.xml
@@ -1,9 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  selinux
-  Python module needed for audit2allow
-  
-SELinuxProject/selinux
-  
+   
+   seli...@gentoo.org
+   SELinux Team
+   
+   Python module needed for audit2allow
+   
+   SELinuxProject/selinux
+   
 



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

2015-12-21 Thread Jason Zaman
commit: 969878ce4026fabbec440db7aaa4cc0dff505389
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Dec 21 02:49:38 2015 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Dec 21 08:56:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=969878ce

sys-libs/libsepol: migrate selinux herd to project

Package-Manager: portage-2.2.24

 sys-libs/libsepol/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sys-libs/libsepol/metadata.xml b/sys-libs/libsepol/metadata.xml
index a19075f..0c8cd5b 100644
--- a/sys-libs/libsepol/metadata.xml
+++ b/sys-libs/libsepol/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   selinux
+   
+   seli...@gentoo.org
+   SELinux Team
+   
SELinux library for manipulating binary security 
policies

SELinuxProject/selinux



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

2015-12-21 Thread Jason Zaman
commit: 454f76ba200128a00cf1d957c48bf970ed088408
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Dec 20 16:10:33 2015 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Dec 21 08:56:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=454f76ba

app-admin/setools: migrate selinux herd to project

Package-Manager: portage-2.2.24

 app-admin/setools/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-admin/setools/metadata.xml b/app-admin/setools/metadata.xml
index 12d653b..7fb3c36 100644
--- a/app-admin/setools/metadata.xml
+++ b/app-admin/setools/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   selinux
+   
+   seli...@gentoo.org
+   SELinux Team
+   
SELinux policy analysis tools.

TresysTechnology/setools



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

2015-12-21 Thread Jason Zaman
commit: 89fa91e29ebd2f87563a72520c9612afbc6e26c2
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Dec 21 02:48:43 2015 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Dec 21 08:56:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89fa91e2

sys-libs/libsemanage: migrate selinux herd to project

Package-Manager: portage-2.2.24

 sys-libs/libsemanage/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sys-libs/libsemanage/metadata.xml 
b/sys-libs/libsemanage/metadata.xml
index 83c24ee..0b389f5 100644
--- a/sys-libs/libsemanage/metadata.xml
+++ b/sys-libs/libsemanage/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   selinux
+   
+   seli...@gentoo.org
+   SELinux Team
+   
SELinux policy management libraries

SELinuxProject/selinux



  1   2   >