[gentoo-commits] gentoo-x86 commit in eclass: linux-info.eclass

2015-06-02 Thread Mike Frysinger (vapier)
vapier  15/06/02 07:39:52

  Modified: linux-info.eclass
  Log:
  fix typo in SYSROOT var pointed out by Michał Górny

Revision  ChangesPath
1.107eclass/linux-info.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/linux-info.eclass?rev=1.107view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/linux-info.eclass?rev=1.107content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/linux-info.eclass?r1=1.106r2=1.107

Index: linux-info.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- linux-info.eclass   2 Jun 2015 04:27:35 -   1.106
+++ linux-info.eclass   2 Jun 2015 07:39:52 -   1.107
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.106 2015/06/02 
04:27:35 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.107 2015/06/02 
07:39:52 vapier Exp $
 
 # @ECLASS: linux-info.eclass
 # @MAINTAINER:
@@ -531,7 +531,7 @@
# caught before this if they are.
if [[ -z ${OUTPUT_DIR} ]] ; then
# Try to locate a kernel that is most relevant for us.
-   for OUTPUT_DIR in ${SYROOT} ${ROOT}  ; do
+   for OUTPUT_DIR in ${SYSROOT} ${ROOT}  ; do

OUTPUT_DIR+=/lib/modules/${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}${KV_EXTRA}/build
if [[ -e ${OUTPUT_DIR} ]] ; then
break






[gentoo-commits] gentoo-x86 commit in dev-python/pylibmc: pylibmc-1.4.3.ebuild ChangeLog

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 08:06:00

  Modified: ChangeLog
  Added:pylibmc-1.4.3.ebuild
  Log:
  Version bump. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/131 
by jbergstroem.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.15 dev-python/pylibmc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibmc/ChangeLog?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibmc/ChangeLog?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibmc/ChangeLog?r1=1.14r2=1.15

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylibmc/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog   23 Apr 2015 09:03:32 -  1.14
+++ ChangeLog   2 Jun 2015 08:06:00 -   1.15
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/pylibmc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylibmc/ChangeLog,v 1.14 
2015/04/23 09:03:32 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylibmc/ChangeLog,v 1.15 
2015/06/02 08:06:00 mgorny Exp $
+
+*pylibmc-1.4.3 (02 Jun 2015)
+
+  02 Jun 2015; Michał Górny mgo...@gentoo.org +pylibmc-1.4.3.ebuild:
+  Version bump. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/131
+  by jbergstroem.
 
   23 Apr 2015; Ian Delaney idel...@gentoo.org -pylibmc-1.2.3.ebuild,
   -pylibmc-1.3.0.ebuild:



1.1  dev-python/pylibmc/pylibmc-1.4.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibmc/pylibmc-1.4.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibmc/pylibmc-1.4.3.ebuild?rev=1.1content-type=text/plain

Index: pylibmc-1.4.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pylibmc/pylibmc-1.4.3.ebuild,v 
1.1 2015/06/02 08:06:00 mgorny Exp $

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )

inherit distutils-r1

DESCRIPTION=Libmemcached wrapper written as a Python extension
HOMEPAGE=http://sendapatch.se/projects/pylibmc/ 
http://pypi.python.org/pypi/pylibmc;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=BSD
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=test

RDEPEND==dev-libs/libmemcached-0.32
DEPEND=${RDEPEND}
test? ( dev-python/nose[${PYTHON_USEDEP}] )

python_prepare_all() {
sed -e /with-info=1/d -i setup.cfg
distutils-r1_python_prepare_all
}

python_test() {
memcached -d -p 11219 -u nobody -l localhost -P ${T}/m.pid || die
MEMCACHED_PORT=11219 nosetests
local ret=${?}
kill $(${T}/m.pid) || die
[[ ${ret} == 0 ]] || die Tests fail with ${EPYTHON}!
}






[gentoo-commits] gentoo-x86 commit in dev-tex/mh: ChangeLog Manifest metadata.xml mh-20111011.ebuild

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 08:44:30

  Removed:  ChangeLog Manifest metadata.xml mh-20111011.ebuild
  Log:
  dev-tex/mh removal, bug 524114.



[gentoo-commits] gentoo-x86 commit in media-libs/phonon: phonon-9999.ebuild phonon-4.8.3-r1.ebuild ChangeLog

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 07:41:48

  Modified: phonon-.ebuild ChangeLog
  Added:phonon-4.8.3-r1.ebuild
  Log:
  Enable multilib support and sync the live ebuild. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/114 by MJDSys with 
some minor changes.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.28 media-libs/phonon/phonon-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-.ebuild?rev=1.28view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-.ebuild?rev=1.28content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-.ebuild?r1=1.27r2=1.28

Index: phonon-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-.ebuild,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- phonon-.ebuild  31 May 2015 13:17:10 -  1.27
+++ phonon-.ebuild  2 Jun 2015 07:41:48 -   1.28
@@ -1,11 +1,11 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-.ebuild,v 1.27 
2015/05/31 13:17:10 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-.ebuild,v 1.28 
2015/06/02 07:41:48 mgorny Exp $
 
 EAPI=5
 
 if [[ ${PV} != ** ]]; then
-   SRC_URI=mirror://kde/stable/phonon/${PV}/${P}.tar.xz
+   SRC_URI=mirror://kde/stable/phonon/${PV}/src/${P}.tar.xz
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
 else
SCM_ECLASS=git-r3
@@ -13,7 +13,7 @@
KEYWORDS=
 fi
 
-inherit cmake-utils multibuild ${SCM_ECLASS}
+inherit multibuild qmake-utils cmake-multilib ${SCM_ECLASS}
 
 DESCRIPTION=KDE multimedia API
 HOMEPAGE=https://projects.kde.org/projects/kdesupport/phonon;
@@ -23,6 +23,7 @@
 IUSE=aqua debug designer gstreamer pulseaudio +qt4 qt5 +vlc zeitgeist
 
 REQUIRED_USE=
+   || ( aqua gstreamer vlc )
|| ( qt4 qt5 )
zeitgeist? ( qt4 )
 
@@ -30,10 +31,10 @@
 RDEPEND=
!!dev-qt/qtphonon:4
qt4? (
-   dev-qt/qtcore:4
-   dev-qt/qtdbus:4
-   dev-qt/qtgui:4
-   designer? ( dev-qt/designer:4 )
+   dev-qt/qtcore:4[${MULTILIB_USEDEP}]
+   dev-qt/qtdbus:4[${MULTILIB_USEDEP}]
+   dev-qt/qtgui:4[${MULTILIB_USEDEP}]
+   designer? ( dev-qt/designer:4[${MULTILIB_USEDEP}] )
)
qt5? (
dev-qt/qtcore:5
@@ -43,14 +44,14 @@
designer? ( dev-qt/designer:5 )
)
pulseaudio? (
-   dev-libs/glib:2
-   =media-sound/pulseaudio-0.9.21[glib]
+   dev-libs/glib:2[${MULTILIB_USEDEP}]
+   =media-sound/pulseaudio-0.9.21[glib,${MULTILIB_USEDEP}]
)
zeitgeist? ( dev-libs/libqzeitgeist )
 
 DEPEND=${RDEPEND}
qt4? ( =dev-util/automoc-0.9.87 )
-   virtual/pkgconfig
+   virtual/pkgconfig[${MULTILIB_USEDEP}]
 
 PDEPEND=
aqua? ( media-libs/phonon-qt7 )
@@ -64,35 +65,66 @@
MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
 }
 
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=TRUE
+   $(cmake-utils_use designer PHONON_BUILD_DESIGNER_PLUGIN)
+   $(cmake-utils_use_with pulseaudio GLIB2)
+   $(cmake-utils_use_with pulseaudio PulseAudio)
+   $(multilib_is_native_abi  cmake-utils_use_with zeitgeist 
QZeitgeist)
+   
-DQT_QMAKE_EXECUTABLE=$(${QT_MULTIBUILD_VARIANT}_get_bindir)/qmake
+   )
+   if [[ ${QT_MULTIBUILD_VARIANT} = qt4 ]]; then
+   mycmakeargs+=(-DPHONON_BUILD_PHONON4QT5=OFF)
+   fi
+   if [[ ${QT_MULTIBUILD_VARIANT} = qt5 ]]; then
+   mycmakeargs+=(-DPHONON_BUILD_PHONON4QT5=ON)
+   fi
+   cmake-utils_src_configure
+}
+
 src_configure() {
myconfigure() {
-   local mycmakeargs=(
-   -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=TRUE
-   $(cmake-utils_use designer PHONON_BUILD_DESIGNER_PLUGIN)
-   $(cmake-utils_use_with pulseaudio GLIB2)
-   $(cmake-utils_use_with pulseaudio PulseAudio)
-   $(cmake-utils_use_with zeitgeist QZeitgeist)
-   )
-   if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
-   mycmakeargs+=(-DPHONON_BUILD_PHONON4QT5=OFF)
+   local QT_MULTIBUILD_VARIANT=${MULTIBUILD_VARIANT}
+   if [[ ${QT_MULTIBUILD_VARIANT} = qt4 ]]; then
+   

[gentoo-commits] gentoo-x86 commit in dev-python/virtualenv: virtualenv-13.0.3.ebuild ChangeLog

2015-06-02 Thread Justin Lecher (jlec)
jlec15/06/02 08:49:27

  Modified: ChangeLog
  Added:virtualenv-13.0.3.ebuild
  Log:
  Version Bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.148dev-python/virtualenv/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.148view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.148content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?r1=1.147r2=1.148

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog   31 May 2015 11:19:00 -  1.147
+++ ChangeLog   2 Jun 2015 08:49:26 -   1.148
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/virtualenv
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.147 
2015/05/31 11:19:00 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.148 
2015/06/02 08:49:26 jlec Exp $
+
+*virtualenv-13.0.3 (02 Jun 2015)
+
+  02 Jun 2015; Justin Lecher j...@gentoo.org +virtualenv-13.0.3.ebuild:
+  Version Bump
 
   31 May 2015; Mikle Kolyada zlog...@gentoo.org virtualenv-12.0.5.ebuild:
   arm stable wrt bug #538528



1.1  dev-python/virtualenv/virtualenv-13.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-13.0.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-13.0.3.ebuild?rev=1.1content-type=text/plain

Index: virtualenv-13.0.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-13.0.3.ebuild,v 1.1 
2015/06/02 08:49:26 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )

inherit distutils-r1

DESCRIPTION=Virtual Python Environment builder
HOMEPAGE=http://www.virtualenv.org/ http://pypi.python.org/pypi/virtualenv 
https://github.com/pypa/virtualenv/;
SRC_URI=https://github.com/pypa/${PN}/archive/${PV}.tar.gz - ${P}.tar.gz

LICENSE=MIT
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris
SLOT=0
IUSE=doc test

RDEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)

DOCS=( docs/index.rst docs/changes.rst )

PATCHES=(
${FILESDIR}/${PN}-1.8.2-no-versioned-script.patch
${FILESDIR}/${PN}-12.1.1-skip-broken-test.patch
)

python_compile_all() {
use doc  emake -C docs html
}

python_test() {
py.test || die Tests fail with ${EPYTHON}
}

python_install_all() {
use doc  local HTML_DOCS=( ${S}/docs/_build/html/. )
distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut: dracut-041-r3.ebuild ChangeLog

2015-06-02 Thread Amadeusz Zolnowski (aidecoe)
aidecoe 15/06/02 09:34:01

  Modified: ChangeLog
  Added:dracut-041-r3.ebuild
  Log:
  Make dracut tools compile on musl. Fix bug #550204.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
F0134531E1DBFAB5)

Revision  ChangesPath
1.191sys-kernel/dracut/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.191view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.191content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?r1=1.190r2=1.191

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -r1.190 -r1.191
--- ChangeLog   31 Mar 2015 10:54:29 -  1.190
+++ ChangeLog   2 Jun 2015 09:34:01 -   1.191
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/dracut
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.190 
2015/03/31 10:54:29 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.191 
2015/06/02 09:34:01 aidecoe Exp $
+
+*dracut-041-r3 (02 Jun 2015)
+
+  02 Jun 2015; Amadeusz Żołnowski aide...@gentoo.org +dracut-041-r3.ebuild,
+  +files/041-r2-0004-Portability-fixes.patch:
+  Make dracut tools compile on musl. Fix bug #550204.
 
   31 Mar 2015; Amadeusz Żołnowski aide...@gentoo.org dracut-040-r3.ebuild,
   dracut-041.ebuild, dracut-041-r2.ebuild:



1.1  sys-kernel/dracut/dracut-041-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/dracut-041-r3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/dracut-041-r3.ebuild?rev=1.1content-type=text/plain

Index: dracut-041-r3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-041-r3.ebuild,v 1.1 
2015/06/02 09:34:01 aidecoe Exp $

EAPI=4

inherit bash-completion-r1 eutils linux-info multilib systemd

DESCRIPTION=Generic initramfs generation tool
HOMEPAGE=http://dracut.wiki.kernel.org;
SRC_URI=mirror://kernel/linux/utils/boot/${PN}/${P}.tar.xz
LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=debug selinux systemd

RESTRICT=test

CDEPEND=virtual/udev
systemd? ( =sys-apps/systemd-199 )

RDEPEND=${CDEPEND}
app-arch/cpio
=app-shells/bash-4.0
sys-apps/kmod-5[tools]
|| (
=sys-apps/sysvinit-2.87-r3
sys-apps/systemd[sysv-utils]
sys-apps/systemd-sysv-utils
)
=sys-apps/util-linux-2.21

debug? ( dev-util/strace )
selinux? (
sys-libs/libselinux
sys-libs/libsepol
sec-policy/selinux-dracut
)

DEPEND=${CDEPEND}
app-text/asciidoc
=dev-libs/libxslt-1.1.26
app-text/docbook-xml-dtd:4.5
=app-text/docbook-xsl-stylesheets-1.75.2
virtual/pkgconfig


DOCS=( AUTHORS HACKING NEWS README README.generic README.kernel README.modules
README.testsuite TODO )
MY_LIBDIR=/usr/lib
PATCHES=(
${FILESDIR}/${PVR}-0001-Use-the-same-paths-in-dracut.sh-as-tho.patch
${FILESDIR}/${PVR}-0002-Install-dracut-install-and-skipcpio-in.patch
${FILESDIR}/${PVR}-0003-Take-into-account-lib64-dirs-when-dete.patch
${FILESDIR}/${PVR}-0004-Portability-fixes.patch
)
QA_MULTILIB_PATHS=
usr/lib/dracut/dracut-install
usr/lib/dracut/skipcpio


#
# Helper functions
#

# Removes module from modules.d.
# $1 = module name
# Module name can be specified without number prefix.
rm_module() {
local force m
[[ $1 = -f ]]  force=-f

for m in $@; do
if [[ $m =~ ^[0-9][0-9][^\ ]*$ ]]; then
rm ${force} --interactive=never -r ${modules_dir}/$m
else
rm ${force} --interactive=never -r 
${modules_dir}/[0-9][0-9]$m
fi
done
}

# Grabbed from net-misc/netctl ebuild.
optfeature() {
local desc=$1
shift
while (( $# )); do
if has_version $1; then
elog   [I] $1 to ${desc}
else
elog   [ ] $1 to ${desc}
fi
shift
done
}

#
# ebuild functions
#

src_prepare() {
epatch ${PATCHES[@]}

local libdirs=/$(get_libdir) /usr/$(get_libdir)
if [[ ${SYMLINK_LIB} = yes ]]; then
# Preserve lib - lib64 symlinks in initramfs
 

[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut/files: 041-r2-0004-Portability-fixes.patch

2015-06-02 Thread Amadeusz Zolnowski (aidecoe)
aidecoe 15/06/02 09:34:01

  Added:041-r2-0004-Portability-fixes.patch
  Log:
  Make dracut tools compile on musl. Fix bug #550204.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
F0134531E1DBFAB5)

Revision  ChangesPath
1.1  sys-kernel/dracut/files/041-r2-0004-Portability-fixes.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/041-r2-0004-Portability-fixes.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/041-r2-0004-Portability-fixes.patch?rev=1.1content-type=text/plain

Index: 041-r2-0004-Portability-fixes.patch
===
From 82f7e46c8fdb2bb41b7b26916e463add7af70a94 Mon Sep 17 00:00:00 2001
From: xtraeme xtra...@voidlinux.eu
Date: Tue, 2 Jun 2015 11:11:21 +0200
Subject: [PATCH 5/5] Portability fixes:

- Use uid_t not __uid_t.
- Define _GNU_SOURCE for cpu_set_t and others.
- Include string.h for strncmp().
- Detect musl's ldd error message.
---
 install/dracut-install.c | 7 ++-
 install/util.h   | 3 +++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/install/dracut-install.c b/install/dracut-install.c
index 201f181..0ff5c49 100644
--- a/install/dracut-install.c
+++ b/install/dracut-install.c
@@ -222,7 +222,7 @@ static int cp(const char *src, const char *dst)
 if (ret == 0) {
 struct timeval tv[2];
 if (fchown(dest_desc, sb.st_uid, sb.st_gid) != 0)
-if(fchown(dest_desc, (__uid_t) - 1, sb.st_gid) 
!= 0)
+if(fchown(dest_desc, (uid_t) - 1, sb.st_gid) 
!= 0)
 log_error(Failed to chown %s: %m, dst);
 tv[0].tv_sec = sb.st_atime;
 tv[0].tv_usec = 0;
@@ -388,6 +388,11 @@ static int resolve_deps(const char *src)
 break;
 }
 
+   /* musl ldd */
+   if (strstr(buf, Not a valid dynamic program))
+   break;
+
+   /* glibc */
 if (strstr(buf, not a dynamic executable))
 break;
 
diff --git a/install/util.h b/install/util.h
index cc7b988..2ad3254 100644
--- a/install/util.h
+++ b/install/util.h
@@ -20,6 +20,8 @@
   along with systemd; If not, see http://www.gnu.org/licenses/.
 ***/
 
+#define _GNU_SOURCE
+
 #include inttypes.h
 #include time.h
 #include sys/time.h
@@ -27,6 +29,7 @@
 #include stdbool.h
 #include stdlib.h
 #include stdio.h
+#include string.h
 #include signal.h
 #include sched.h
 #include limits.h
-- 
2.4.1







[gentoo-commits] gentoo-x86 commit in dev-python/ipython: ipython-3.1.0.ebuild ChangeLog

2015-06-02 Thread Justin Lecher (jlec)
jlec15/06/02 08:01:03

  Modified: ipython-3.1.0.ebuild ChangeLog
  Log:
  Fix Version of pyzmq in deps; thanks Marius Brehler for the work 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/138
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.4  dev-python/ipython/ipython-3.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-3.1.0.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-3.1.0.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-3.1.0.ebuild?r1=1.3r2=1.4

Index: ipython-3.1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-3.1.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ipython-3.1.0.ebuild20 May 2015 04:03:28 -  1.3
+++ ipython-3.1.0.ebuild2 Jun 2015 08:01:03 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-3.1.0.ebuild,v 
1.3 2015/05/20 04:03:28 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-3.1.0.ebuild,v 
1.4 2015/06/02 08:01:03 jlec Exp $
 
 EAPI=5
 
@@ -39,7 +39,7 @@
dev-python/jsonschema[${PYTHON_USEDEP}]
=dev-python/mistune-0.5[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
-   =dev-python/pyzmq-2.1.11[${PYTHON_USEDEP}]
+   =dev-python/pyzmq-13[${PYTHON_USEDEP}]
=dev-python/terminado-0.3.3[${PYTHON_USEDEP}]
=www-servers/tornado-3.1[${PYTHON_USEDEP}]
)



1.172dev-python/ipython/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.172view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.172content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.171r2=1.172

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog   20 May 2015 04:03:28 -  1.171
+++ ChangeLog   2 Jun 2015 08:01:03 -   1.172
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/ipython
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.171 
2015/05/20 04:03:28 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.172 
2015/06/02 08:01:03 jlec Exp $
+
+  02 Jun 2015; Justin Lecher j...@gentoo.org ipython-3.1.0.ebuild:
+  Fix Version of pyzmq in deps; thanks Marius Brehler for the work
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/138
 
   20 May 2015; Jeroen Roovers j...@gentoo.org ipython-3.0.0.ebuild,
   ipython-3.1.0.ebuild:






[gentoo-commits] gentoo-x86 commit in profiles/default/linux/amd64/13.0/no-emul-linux-x86/desktop: eapi parent

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:13:41

  Removed:  eapi parent
  Log:
  Wipe out obsolete no-emul-linux-x86 profiles.



[gentoo-commits] gentoo-x86 commit in profiles/default/linux/amd64/13.0/no-emul-linux-x86/desktop/kde: eapi parent

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:13:41

  Removed:  eapi parent
  Log:
  Wipe out obsolete no-emul-linux-x86 profiles.



[gentoo-commits] gentoo-x86 commit in profiles/default/linux/amd64/13.0/no-emul-linux-x86/selinux: eapi parent

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:13:41

  Removed:  eapi parent
  Log:
  Wipe out obsolete no-emul-linux-x86 profiles.



[gentoo-commits] gentoo-x86 commit in profiles/default/linux/amd64/13.0/no-emul-linux-x86/desktop/gnome/systemd: eapi parent

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:13:41

  Removed:  eapi parent
  Log:
  Wipe out obsolete no-emul-linux-x86 profiles.



[gentoo-commits] gentoo-x86 commit in profiles/default/linux/amd64/13.0/no-emul-linux-x86: eapi parent

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:13:41

  Removed:  eapi parent
  Log:
  Wipe out obsolete no-emul-linux-x86 profiles.



[gentoo-commits] proj/dotnet:master commit in: dev-util/monodevelop/

2015-06-02 Thread Heather Cynede
commit: 61b529a639548b45c4331581726e19a740b8af66
Author: Heather Heather AT live DOT ru
AuthorDate: Tue Jun  2 09:30:57 2015 +
Commit: Heather Cynede cynede AT gentoo DOT org
CommitDate: Tue Jun  2 09:30:57 2015 +
URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=61b529a6

monodevelop clean up  QA

 dev-util/monodevelop/monodevelop-4.2.3.ebuild |  64 --
 dev-util/monodevelop/monodevelop-5.0.1.ebuild |  72 ---
 dev-util/monodevelop/monodevelop-5.7.0-r1.ebuild  | 103 --
 dev-util/monodevelop/monodevelop-5.7.0.ebuild |  99 -
 dev-util/monodevelop/monodevelop-5.9.0.431.ebuild |   4 +-
 dev-util/monodevelop/monodevelop-.ebuild  |   2 +-
 6 files changed, 3 insertions(+), 341 deletions(-)

diff --git a/dev-util/monodevelop/monodevelop-4.2.3.ebuild 
b/dev-util/monodevelop/monodevelop-4.2.3.ebuild
deleted file mode 100644
index 84f4ea6..000
--- a/dev-util/monodevelop/monodevelop-4.2.3.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-inherit fdo-mime gnome2-utils dotnet versionator eutils
-
-DESCRIPTION=Integrated Development Environment for .NET
-HOMEPAGE=http://www.monodevelop.com/;
-SRC_URI=http://download.mono-project.com/sources/${PN}/${P}.tar.bz2;
-
-LICENSE=GPL-2
-SLOT=0
-KEYWORDS=~amd64 ~x86
-IUSE=+subversion +git doc
-
-RDEPEND==dev-lang/mono-3.0
-   =dev-dotnet/gnome-sharp-2.24.2-r1
-   =dev-dotnet/gtk-sharp-2.12.21
-   =dev-dotnet/mono-addins-1.0[gtk]
-   doc? ( dev-util/mono-docbrowser )
-   =dev-dotnet/xsp-2
-   dev-util/ctags
-   sys-apps/dbus[X]
-   subversion? ( dev-vcs/subversion )
-   !dev-util/monodevelop-boo-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-java-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-database-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-debugger-gdb-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-debugger-mdb-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-vala-$(get_version_component_range 1-2)
-DEPEND=${RDEPEND}
-   dev-util/intltool
-   virtual/pkgconfig
-   sys-devel/gettext
-   x11-misc/shared-mime-info
-   x11-terms/xterm
-MAKEOPTS=${MAKEOPTS} -j1 #nowarn
-
-src_configure() {
-   econf \
-   --disable-update-mimedb \
-   --disable-update-desktopdb \
-   --enable-monoextensions \
-   --enable-gnomeplatform \
-   $(use_enable subversion) \
-   $(use_enable git)
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-   fdo-mime_mime_database_update
-   fdo-mime_desktop_database_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-   fdo-mime_mime_database_update
-   fdo-mime_desktop_database_update
-}

diff --git a/dev-util/monodevelop/monodevelop-5.0.1.ebuild 
b/dev-util/monodevelop/monodevelop-5.0.1.ebuild
deleted file mode 100644
index a57ce1a..000
--- a/dev-util/monodevelop/monodevelop-5.0.1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-inherit fdo-mime gnome2-utils dotnet versionator eutils
-
-DESCRIPTION=Integrated Development Environment for .NET
-HOMEPAGE=http://www.monodevelop.com/;
-SRC_URI=http://download.mono-project.com/sources/${PN}/${P}-0.tar.bz2;
-
-LICENSE=GPL-2
-SLOT=0
-KEYWORDS=~amd64 ~x86
-IUSE=+subversion +git doc
-
-RDEPEND==dev-lang/mono-3.2.8
-   =dev-dotnet/gnome-sharp-2.24.2-r1
-   =dev-dotnet/gtk-sharp-2.12.21
-   =dev-dotnet/mono-addins-1.0[gtk]
-   doc? ( dev-util/mono-docbrowser )
-   =dev-dotnet/xsp-2
-   dev-util/ctags
-   sys-apps/dbus[X]
-   subversion? ( dev-vcs/subversion )
-   !dev-util/monodevelop-boo-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-java-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-database-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-debugger-gdb-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-debugger-mdb-$(get_version_component_range 1-2)
-   !dev-util/monodevelop-vala-$(get_version_component_range 1-2)
-DEPEND=${RDEPEND}
-   dev-util/intltool
-   virtual/pkgconfig
-   sys-devel/gettext
-   x11-misc/shared-mime-info
-   x11-terms/xterm
-MAKEOPTS=${MAKEOPTS} -j1 #nowarn
-
-src_prepare() {
-   # Remove the git rev-parse (changelog?)
-   sed -i '/Exec.*rev-parse/ d' 
${S}/src/core/MonoDevelop.Core/MonoDevelop.Core.csproj || die
-   # Set specific_version to prevent binding problem
-   # when gtk#-3 is installed alongside gtk#-2
-   find ${S} -name '*.csproj' -exec sed -i 

[gentoo-commits] gentoo-x86 commit in sys-apps/hprofile: ChangeLog hprofile-3.1.0.ebuild

2015-06-02 Thread Lars Wendler (polynomial-c)
polynomial-c15/06/02 09:47:49

  Modified: ChangeLog
  Added:hprofile-3.1.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.7  sys-apps/hprofile/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hprofile/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hprofile/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hprofile/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hprofile/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   29 May 2015 07:59:10 -  1.6
+++ ChangeLog   2 Jun 2015 09:47:49 -   1.7
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/hprofile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hprofile/ChangeLog,v 1.6 
2015/05/29 07:59:10 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hprofile/ChangeLog,v 1.7 
2015/06/02 09:47:49 polynomial-c Exp $
+
+*hprofile-3.1.0 (02 Jun 2015)
+
+  02 Jun 2015; Lars Wendler polynomia...@gentoo.org +hprofile-3.1.0.ebuild:
+  Version bump.
 
 *hprofile-3.0.6 (29 May 2015)
 



1.1  sys-apps/hprofile/hprofile-3.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hprofile/hprofile-3.1.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hprofile/hprofile-3.1.0.ebuild?rev=1.1content-type=text/plain

Index: hprofile-3.1.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hprofile/hprofile-3.1.0.ebuild,v 
1.1 2015/06/02 09:47:49 polynomial-c Exp $

EAPI=5

DESCRIPTION=Utility to manage hardware, network, power or other profiles 
(fork)
HOMEPAGE=https://github.com/tokiclover/hprofile;
SRC_URI=https://github.com/tokiclover/${PN}/archive/${PV}.tar.gz - 
${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=

src_prepare() {
sed -i '1s:.*:#!/sbin/runscript:' hprofile.initd || die
sed -i /^prefix/s:=.*:=${EPREFIX}/usr: Makefile || die
}






[gentoo-commits] gentoo-x86 commit in dev-python/cffi: cffi-1.1.0.ebuild ChangeLog

2015-06-02 Thread Justin Lecher (jlec)
jlec15/06/02 08:23:14

  Modified: cffi-1.1.0.ebuild ChangeLog
  Log:
  Backport patch for test failure
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.2  dev-python/cffi/cffi-1.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/cffi-1.1.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/cffi-1.1.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/cffi-1.1.0.ebuild?r1=1.1r2=1.2

Index: cffi-1.1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cffi/cffi-1.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cffi-1.1.0.ebuild   1 Jun 2015 11:11:56 -   1.1
+++ cffi-1.1.0.ebuild   2 Jun 2015 08:23:14 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/cffi-1.1.0.ebuild,v 1.1 
2015/06/01 11:11:56 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/cffi-1.1.0.ebuild,v 1.2 
2015/06/02 08:23:14 jlec Exp $
 
 EAPI=5
 
@@ -23,6 +23,8 @@
dev-python/pytest[${PYTHON_USEDEP}]
 DEPEND=${RDEPEND}
 
+PATCHES=( ${FILESDIR}/${P}-test-backport.patch )
+
 # Avoid race on _configtest.c 
(distutils/command/config.py:_gen_temp_sourcefile)
 DISTUTILS_IN_SOURCE_BUILD=1
 



1.65 dev-python/cffi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?rev=1.65view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?rev=1.65content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/ChangeLog?r1=1.64r2=1.65

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog   1 Jun 2015 11:11:56 -   1.64
+++ ChangeLog   2 Jun 2015 08:23:14 -   1.65
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/cffi
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v 1.64 2015/06/01 
11:11:56 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cffi/ChangeLog,v 1.65 2015/06/02 
08:23:14 jlec Exp $
+
+  02 Jun 2015; Justin Lecher j...@gentoo.org
+  +files/cffi-1.1.0-test-backport.patch, cffi-1.1.0.ebuild:
+  Backport patch for test failure
 
 *cffi-1.1.0 (01 Jun 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-python/cffi/files: cffi-1.1.0-test-backport.patch

2015-06-02 Thread Justin Lecher (jlec)
jlec15/06/02 08:23:14

  Added:cffi-1.1.0-test-backport.patch
  Log:
  Backport patch for test failure
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.1  dev-python/cffi/files/cffi-1.1.0-test-backport.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/files/cffi-1.1.0-test-backport.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cffi/files/cffi-1.1.0-test-backport.patch?rev=1.1content-type=text/plain

Index: cffi-1.1.0-test-backport.patch
===
# HG changeset patch
# User Armin Rigo ar...@tunes.org
# Date 1433182838 -7200
# Node ID 34d5fd98bc84d202dd6692906f21509bb5abefaf
# Parent  feea0af4a450e0ff0045f1b7c0a5f430c97520f9
Issue #204: second try

diff --git a/testing/cffi1/test_zdist.py b/testing/cffi1/test_zdist.py
--- a/testing/cffi1/test_zdist.py
+++ b/testing/cffi1/test_zdist.py
@@ -29,13 +29,17 @@
 if hasattr(self, 'saved_cwd'):
 os.chdir(self.saved_cwd)
 
-def run(self, args):
+def run(self, args, cwd=None):
 env = os.environ.copy()
-newpath = self.rootdir
-if 'PYTHONPATH' in env:
-newpath += os.pathsep + env['PYTHONPATH']
-env['PYTHONPATH'] = newpath
-subprocess.check_call([self.executable] + args, env=env)
+# a horrible hack to prevent distutils from finding ~/.pydistutils.cfg
+# (there is the --no-user-cfg option, but not in Python 2.6...)
+env['HOME'] = '/this/path/does/not/exist'
+if cwd is None:
+newpath = self.rootdir
+if 'PYTHONPATH' in env:
+newpath += os.pathsep + env['PYTHONPATH']
+env['PYTHONPATH'] = newpath
+subprocess.check_call([self.executable] + args, cwd=cwd, env=env)
 
 def _prepare_setuptools(self):
 if hasattr(TestDist, '_setuptools_ready'):
@@ -44,8 +48,7 @@
 import setuptools
 except ImportError:
 py.test.skip(setuptools not found)
-subprocess.check_call([self.executable, 'setup.py', 'egg_info'],
-  cwd=self.rootdir)
+self.run(['setup.py', 'egg_info'], cwd=self.rootdir)
 TestDist._setuptools_ready = True
 
 def check_produced_files(self, content, curdir=None):






[gentoo-commits] gentoo-x86 commit in dev-python/pip: pip-7.0.3.ebuild ChangeLog

2015-06-02 Thread Justin Lecher (jlec)
jlec15/06/02 08:47:29

  Modified: ChangeLog
  Added:pip-7.0.3.ebuild
  Log:
  Version Bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.66 dev-python/pip/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?rev=1.66view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?rev=1.66content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?r1=1.65r2=1.66

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   2 Jun 2015 05:16:02 -   1.65
+++ ChangeLog   2 Jun 2015 08:47:29 -   1.66
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pip
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v 1.65 2015/06/02 
05:16:02 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v 1.66 2015/06/02 
08:47:29 jlec Exp $
+
+*pip-7.0.3 (02 Jun 2015)
+
+  02 Jun 2015; Justin Lecher j...@gentoo.org +pip-7.0.3.ebuild:
+  Version Bump
 
   02 Jun 2015; Jack Morgan jmor...@gentoo.org pip-1.5.6.ebuild:
   sparc stable wrt bug #540290



1.1  dev-python/pip/pip-7.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-7.0.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-7.0.3.ebuild?rev=1.1content-type=text/plain

Index: pip-7.0.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-7.0.3.ebuild,v 1.1 
2015/06/02 08:47:29 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3  )

inherit bash-completion-r1 distutils-r1

DESCRIPTION=Installs python packages -- replacement for easy_install
HOMEPAGE=http://www.pip-installer.org/ http://pypi.python.org/pypi/pip/;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=MIT
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux
SLOT=0

RDEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}

# required test data isn't bundled with the tarball
RESTRICT=test

PATCHES=( ${FILESDIR}/${PN}-6.0.2-disable-version-check.patch )

python_install_all() {
local DOCS=( AUTHORS.txt docs/*.rst )
distutils-r1_python_install_all

COMPLETION=${T}/completion.tmp

${EPYTHON} pip/__init__.py completion --bash  ${COMPLETION} || die
newbashcomp ${COMPLETION} ${PN}

${EPYTHON} pip/__init__.py completion --zsh  ${COMPLETION} || die
insinto /usr/share/zsh/site-functions
newins ${COMPLETION} _pip
}






[gentoo-commits] gentoo-x86 commit in sys-apps/ethtool: ChangeLog ethtool-4.0.ebuild

2015-06-02 Thread Lars Wendler (polynomial-c)
polynomial-c15/06/02 09:27:06

  Modified: ChangeLog
  Added:ethtool-4.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.116sys-apps/ethtool/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/ethtool/ChangeLog?rev=1.116view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/ethtool/ChangeLog?rev=1.116content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/ethtool/ChangeLog?r1=1.115r2=1.116

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/ethtool/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog   15 Dec 2014 01:51:09 -  1.115
+++ ChangeLog   2 Jun 2015 09:27:06 -   1.116
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/ethtool
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/ethtool/ChangeLog,v 1.115 
2014/12/15 01:51:09 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/ethtool/ChangeLog,v 1.116 
2015/06/02 09:27:06 polynomial-c Exp $
+
+*ethtool-4.0 (02 Jun 2015)
+
+  02 Jun 2015; Lars Wendler polynomia...@gentoo.org +ethtool-4.0.ebuild:
+  Version bump.
 
 *ethtool-3.18 (15 Dec 2014)
 



1.1  sys-apps/ethtool/ethtool-4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/ethtool/ethtool-4.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/ethtool/ethtool-4.0.ebuild?rev=1.1content-type=text/plain

Index: ethtool-4.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ethtool/ethtool-4.0.ebuild,v 1.1 
2015/06/02 09:27:06 polynomial-c Exp $

EAPI=5

DESCRIPTION=Utility for examining and tuning ethernet-based network interfaces
HOMEPAGE=http://www.kernel.org/pub/software/network/ethtool/;
SRC_URI=mirror://kernel/software/network/ethtool/${P}.tar.xz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86

DEPEND=app-arch/xz-utils






[gentoo-commits] gentoo-x86 commit in games-util/xboxdrv: xboxdrv-0.8.5-r2.ebuild ChangeLog

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 08:35:38

  Modified: ChangeLog
  Added:xboxdrv-0.8.5-r2.ebuild
  Log:
  Add D-Bus and systemd service files. Add slot operators and missing dbus-glib 
dep. Fixes bugs #481572 and #544752. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/134 by nE0sIghT with 
my changes.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.35 games-util/xboxdrv/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/ChangeLog?rev=1.35view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/ChangeLog?rev=1.35content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/ChangeLog?r1=1.34r2=1.35

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-util/xboxdrv/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   20 Jan 2014 18:20:39 -  1.34
+++ ChangeLog   2 Jun 2015 08:35:38 -   1.35
@@ -1,6 +1,14 @@
 # ChangeLog for games-util/xboxdrv
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/xboxdrv/ChangeLog,v 1.34 
2014/01/20 18:20:39 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-util/xboxdrv/ChangeLog,v 1.35 
2015/06/02 08:35:38 mgorny Exp $
+
+*xboxdrv-0.8.5-r2 (02 Jun 2015)
+
+  02 Jun 2015; Michał Górny mgo...@gentoo.org +files/org.seul.Xboxdrv.conf,
+  +files/xboxdrv.service, +files/xboxdrv.udev-rules, +xboxdrv-0.8.5-r2.ebuild:
+  Add D-Bus and systemd service files. Add slot operators and missing dbus-glib
+  dep. Fixes bugs #481572 and #544752. 
https://github.com/gentoo/gentoo-portage-
+  rsync-mirror/pull/134 by nE0sIghT with my changes.
 
   20 Jan 2014; Michael Sterrett mr_bon...@gentoo.org 
-xboxdrv-0.8.4-r1.ebuild,
   -xboxdrv-0.8.4.ebuild, -xboxdrv-0.8.5.ebuild:



1.1  games-util/xboxdrv/xboxdrv-0.8.5-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/xboxdrv-0.8.5-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/xboxdrv-0.8.5-r2.ebuild?rev=1.1content-type=text/plain

Index: xboxdrv-0.8.5-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/xboxdrv/xboxdrv-0.8.5-r2.ebuild,v 
1.1 2015/06/02 08:35:38 mgorny Exp $

EAPI=5
inherit linux-info scons-utils toolchain-funcs systemd udev

MY_P=${PN}-linux-${PV}
DESCRIPTION=Userspace Xbox 360 Controller driver
HOMEPAGE=http://pingus.seul.org/~grumbel/xboxdrv/;
SRC_URI=http://pingus.seul.org/~grumbel/xboxdrv/${MY_P}.tar.bz2;

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=

RDEPEND=dev-libs/boost
dev-libs/dbus-glib:=
virtual/libudev:=
sys-apps/dbus:=
dev-libs/glib:2=
virtual/libusb:1=
x11-libs/libX11:=
DEPEND=${RDEPEND}
virtual/pkgconfig

S=${WORKDIR}/${MY_P}

CONFIG_CHECK=~INPUT_EVDEV ~INPUT_JOYDEV ~INPUT_UINPUT ~!JOYSTICK_XPAD

src_prepare() {
epatch ${FILESDIR}/${P}-scons.patch
}

src_compile() {
escons \
BUILD=custom \
CXX=$(tc-getCXX) \
AR=$(tc-getAR) \
RANLIB=$(tc-getRANLIB) \
CXXFLAGS=-Wall ${CXXFLAGS} \
LINKFLAGS=${LDFLAGS}
}

src_install() {
dobin xboxdrv
doman doc/xboxdrv.1
dodoc AUTHORS NEWS PROTOCOL README TODO

newinitd ${FILESDIR}/xboxdrv.initd xboxdrv
newconfd ${FILESDIR}/xboxdrv.confd xboxdrv

insinto /etc/dbus-1/system.d/
doins ${FILESDIR}/org.seul.Xboxdrv.conf

udev_newrules ${FILESDIR}/xboxdrv.udev-rules 99-xbox-controller.rules
systemd_dounit ${FILESDIR}/xboxdrv.service
}

pkg_postinst() {
udev_reload
}






[gentoo-commits] gentoo-x86 commit in games-util/xboxdrv/files: xboxdrv.service xboxdrv.udev-rules org.seul.Xboxdrv.conf

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 08:35:38

  Added:xboxdrv.service xboxdrv.udev-rules
org.seul.Xboxdrv.conf
  Log:
  Add D-Bus and systemd service files. Add slot operators and missing dbus-glib 
dep. Fixes bugs #481572 and #544752. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/134 by nE0sIghT with 
my changes.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  games-util/xboxdrv/files/xboxdrv.service

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/files/xboxdrv.service?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/files/xboxdrv.service?rev=1.1content-type=text/plain

Index: xboxdrv.service
===
[Unit]
Description=Userspace Xbox 360 Controller driver
BindsTo=sys-subsystem-usb-xbox-controller0.device
After=sys-subsystem-usb-xbox-controller0.device

[Service]
BusName=org.seul.Xboxdrv
ExecStart=/usr/bin/xboxdrv --silent --daemon
KillSignal=SIGINT
# xboxdrv can not stop gracefully if controller gets unplugged
TimeoutStopSec=2

[Install]
WantedBy=multi-user.target



1.1  games-util/xboxdrv/files/xboxdrv.udev-rules

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/files/xboxdrv.udev-rules?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/files/xboxdrv.udev-rules?rev=1.1content-type=text/plain

Index: xboxdrv.udev-rules
===
SUBSYSTEM==usb, ACTION==add,\
ENV{ID_MODEL_FROM_DATABASE}==Xbox*Controller|Xbox*Controller S,\
TAG+=systemd,\
ENV{SYSTEMD_ALIAS}=/sys/subsystem/usb/xbox/controller$number,\
ENV{SYSTEMD_WANTS}+=xboxdrv.service



1.1  games-util/xboxdrv/files/org.seul.Xboxdrv.conf

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/files/org.seul.Xboxdrv.conf?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xboxdrv/files/org.seul.Xboxdrv.conf?rev=1.1content-type=text/plain

Index: org.seul.Xboxdrv.conf
===
!DOCTYPE busconfig PUBLIC -//freedesktop//DTD D-BUS Bus Configuration 1.0//EN
 http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd;
busconfig
  policy context=default
allow own=org.seul.Xboxdrv/
  /policy
/busconfig






[gentoo-commits] gentoo-x86 commit in app-arch/sharutils: ChangeLog sharutils-4.15.2.ebuild

2015-06-02 Thread Lars Wendler (polynomial-c)
polynomial-c15/06/02 09:00:00

  Modified: ChangeLog
  Added:sharutils-4.15.2.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.131app-arch/sharutils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/sharutils/ChangeLog?rev=1.131view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/sharutils/ChangeLog?rev=1.131content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/sharutils/ChangeLog?r1=1.130r2=1.131

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/sharutils/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   29 May 2015 07:55:04 -  1.130
+++ ChangeLog   2 Jun 2015 09:00:00 -   1.131
@@ -1,6 +1,11 @@
 # ChangeLog for app-arch/sharutils
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/ChangeLog,v 1.130 
2015/05/29 07:55:04 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/ChangeLog,v 1.131 
2015/06/02 09:00:00 polynomial-c Exp $
+
+*sharutils-4.15.2 (02 Jun 2015)
+
+  02 Jun 2015; Lars Wendler polynomia...@gentoo.org +sharutils-4.15.2.ebuild:
+  Version bump.
 
 *sharutils-4.15.1 (29 May 2015)
 



1.1  app-arch/sharutils/sharutils-4.15.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/sharutils/sharutils-4.15.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/sharutils/sharutils-4.15.2.ebuild?rev=1.1content-type=text/plain

Index: sharutils-4.15.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/sharutils-4.15.2.ebuild,v 
1.1 2015/06/02 09:00:00 polynomial-c Exp $

EAPI=5

inherit eutils

MY_P=${P/_/-}
DESCRIPTION=Tools to deal with shar archives
HOMEPAGE=http://www.gnu.org/software/sharutils/;
SRC_URI=mirror://gnu/${PN}/${P}.tar.xz

LICENSE=GPL-3
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
IUSE=nls

DEPEND=app-arch/xz-utils
sys-apps/texinfo
nls? ( =sys-devel/gettext-0.10.35 )

S=${WORKDIR}/${MY_P}

src_configure() {
strip-linguas -u po
econf $(use_enable nls)
}






[gentoo-commits] gentoo-x86 commit in profiles/prefix/darwin: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.5  profiles/prefix/darwin/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/darwin/use.mask?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/darwin/use.mask?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/darwin/use.mask?r1=1.4r2=1.5

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/darwin/use.mask,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- use.mask2 Feb 2013 13:12:28 -   1.4
+++ use.mask2 Jun 2015 09:15:36 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/darwin/use.mask,v 1.4 
2013/02/02 13:12:28 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/darwin/use.mask,v 1.5 
2015/06/02 09:15:36 ulm Exp $
 
 #Add USE flags that don't work on Darwin/OpenDarwin/OS X here
 
@@ -24,7 +24,6 @@
 clvm
 directfb
 djbfft
-emul-linux-x86
 fbcon
 fmod
 ggi






[gentoo-commits] gentoo-x86 commit in profiles/prefix/windows/interix: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.13 profiles/prefix/windows/interix/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/windows/interix/use.mask?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/windows/interix/use.mask?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/windows/interix/use.mask?r1=1.12r2=1.13

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/windows/interix/use.mask,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- use.mask30 Apr 2014 22:30:21 -  1.12
+++ use.mask2 Jun 2015 09:15:36 -   1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/windows/interix/use.mask,v 
1.12 2014/04/30 22:30:21 redlizard Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/windows/interix/use.mask,v 
1.13 2015/06/02 09:15:36 ulm Exp $
 
 # Re-add Interix libc
 -elibc_Interix
@@ -25,7 +25,6 @@
 # missing implementation for unexec()
 emacs
 xemacs
-emul-linux-x86
 fbcon
 fdftk
 fmod






[gentoo-commits] gentoo-x86 commit in profiles/arch/amd64: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:35

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.70 profiles/arch/amd64/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/use.mask?rev=1.70view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/use.mask?rev=1.70content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/use.mask?r1=1.69r2=1.70

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/amd64/use.mask,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- use.mask27 Apr 2015 08:09:28 -  1.69
+++ use.mask2 Jun 2015 09:15:35 -   1.70
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/use.mask,v 1.69 
2015/04/27 08:09:28 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/use.mask,v 1.70 
2015/06/02 09:15:35 ulm Exp $
 
 # Unmask the flag which corresponds to ARCH.
 -amd64
@@ -108,10 +108,6 @@
 # NVRAM works on x86/amd64 hosts
 -nvram
 
-# 2006/06/07 - Danny van Dyk kugelf...@gentoo.org
-# Profile cleanup: Unmask emul-linux-x86
--emul-linux-x86
-
 # 2005/09/14 - Diego Pettenò flamee...@gentoo.org
 # nVidia XvMC support works on amd64
 -nvidia






[gentoo-commits] gentoo-x86 commit in profiles/features/64bit-native: package.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: package.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.104profiles/features/64bit-native/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/features/64bit-native/package.mask?rev=1.104view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/features/64bit-native/package.mask?rev=1.104content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/features/64bit-native/package.mask?r1=1.103r2=1.104

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/features/64bit-native/package.mask,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- package.mask3 Apr 2015 21:09:53 -   1.103
+++ package.mask2 Jun 2015 09:15:35 -   1.104
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/features/64bit-native/package.mask,v 1.103 
2015/04/03 21:09:53 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/features/64bit-native/package.mask,v 1.104 
2015/06/02 09:15:35 ulm Exp $
 
 # Andreas K. Huettel dilfri...@gentoo.org
 # Novell Groupwise Client sadly needs a 32bit java vm (bundled)
@@ -25,21 +25,6 @@
 =app-i18n/atokx3-3.0.0
 app-office/lotus-notes
 app-office/ooextras
-app-emulation/emul-linux-x86-baselibs
-app-emulation/emul-linux-x86-cpplibs
-app-emulation/emul-linux-x86-db
-app-emulation/emul-linux-x86-gstplugins
-app-emulation/emul-linux-x86-gtklibs
-app-emulation/emul-linux-x86-gtkmmlibs
-app-emulation/emul-linux-x86-jna
-app-emulation/emul-linux-x86-medialibs
-app-emulation/emul-linux-x86-motif
-app-emulation/emul-linux-x86-opengl
-app-emulation/emul-linux-x86-qtlibs
-app-emulation/emul-linux-x86-sdl
-app-emulation/emul-linux-x86-soundlibs
-app-emulation/emul-linux-x86-xlibs
-app-emulation/emul-linux-x86-java
 app-emulation/winetricks
 app-emulation/wine-doors
 app-text/acroread






[gentoo-commits] gentoo-x86 commit in profiles/targets/desktop: package.use

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: package.use
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.44 profiles/targets/desktop/package.use

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/package.use?rev=1.44view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/package.use?rev=1.44content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/package.use?r1=1.43r2=1.44

Index: package.use
===
RCS file: /var/cvsroot/gentoo-x86/profiles/targets/desktop/package.use,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- package.use 19 Feb 2015 02:58:02 -  1.43
+++ package.use 2 Jun 2015 09:15:36 -   1.44
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/targets/desktop/package.use,v 1.43 
2015/02/19 02:58:02 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/targets/desktop/package.use,v 1.44 
2015/06/02 09:15:36 ulm Exp $
 
 # Alexandre Rostovtsev tetrom...@gentoo.org (19 Feb 2015)
 # Set reasonable default toolkit for all desktops to prevent emerge error
@@ -26,11 +26,6 @@
 # gtk3 the default until 1.11.x or higher is stabilized
 net-analyzer/wireshark-1.11.0 -qt4
 
-# Michał Górny mgo...@gentoo.org (27 May 2014)
-# Disable mng support by default since it is seldom used, and it
-# requires old libmng-1.
-app-emulation/emul-linux-x86-qtlibs -mng
-
 # Chí-Thanh Christopher Nguyễn chith...@gentoo.org (08 May 2014)
 # Enable x11-libs/libxcb[xkb] as it is needed by x11-libs/libxkbcommon[X]
 # and the X flag is enabled by default in the desktop profile






[gentoo-commits] gentoo-x86 commit in profiles/prefix/sunos: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.5  profiles/prefix/sunos/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/sunos/use.mask?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/sunos/use.mask?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/sunos/use.mask?r1=1.4r2=1.5

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/sunos/use.mask,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- use.mask2 Feb 2013 13:12:29 -   1.4
+++ use.mask2 Jun 2015 09:15:36 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/sunos/use.mask,v 1.4 
2013/02/02 13:12:29 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/sunos/use.mask,v 1.5 
2015/06/02 09:15:36 ulm Exp $
 
 # Re-add SunOS libc
 -elibc_SunOS
@@ -20,7 +20,6 @@
 directfb
 divx4linux
 djbfft
-emul-linux-x86
 fbcon
 fdftk
 fmod






[gentoo-commits] gentoo-x86 commit in profiles/hardened/linux/amd64/no-multilib: package.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: package.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.43 profiles/hardened/linux/amd64/no-multilib/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/amd64/no-multilib/package.mask?rev=1.43view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/amd64/no-multilib/package.mask?rev=1.43content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/amd64/no-multilib/package.mask?r1=1.42r2=1.43

Index: package.mask
===
RCS file: 
/var/cvsroot/gentoo-x86/profiles/hardened/linux/amd64/no-multilib/package.mask,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- package.mask19 Apr 2015 01:30:47 -  1.42
+++ package.mask2 Jun 2015 09:15:36 -   1.43
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/hardened/linux/amd64/no-multilib/package.mask,v
 1.42 2015/04/19 01:30:47 creffett Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/hardened/linux/amd64/no-multilib/package.mask,v
 1.43 2015/06/02 09:15:36 ulm Exp $
 
 # These are broken as reported by Halcy0n, Aug, 23, 2011
 net-misc/teamviewer
@@ -37,21 +37,6 @@
 app-emulation/vmware-player
 =app-i18n/atokx3-3.0.0
 app-office/ooextras
-app-emulation/emul-linux-x86-baselibs
-app-emulation/emul-linux-x86-cpplibs
-app-emulation/emul-linux-x86-db
-app-emulation/emul-linux-x86-gstplugins
-app-emulation/emul-linux-x86-gtklibs
-app-emulation/emul-linux-x86-gtkmmlibs
-app-emulation/emul-linux-x86-jna
-app-emulation/emul-linux-x86-medialibs
-app-emulation/emul-linux-x86-motif
-app-emulation/emul-linux-x86-opengl
-app-emulation/emul-linux-x86-qtlibs
-app-emulation/emul-linux-x86-sdl
-app-emulation/emul-linux-x86-soundlibs
-app-emulation/emul-linux-x86-xlibs
-app-emulation/emul-linux-x86-java
 app-emulation/winetricks
 app-emulation/wine-doors
 app-text/acroread






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:35

  Modified: ChangeLog
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.10029  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10029view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10029content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10028r2=1.10029

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10028
retrieving revision 1.10029
diff -u -r1.10028 -r1.10029
--- ChangeLog   2 Jun 2015 08:46:26 -   1.10028
+++ ChangeLog   2 Jun 2015 09:15:35 -   1.10029
@@ -1,11 +1,24 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10028 2015/06/02 
08:46:26 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10029 2015/06/02 
09:15:35 ulm Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  02 Jun 2015; Ulrich Müller u...@gentoo.org
+  arch/amd64/no-multilib/package.mask, arch/amd64/use.mask,
+  base/package.use.force, default/linux/uclibc/amd64/package.mask,
+  default/linux/uclibc/use.mask, default/linux/use.mask, embedded/use.mask,
+  features/64bit-native/package.mask, features/selinux/use.mask,
+  hardened/linux/amd64/no-multilib/package.mask,
+  hardened/linux/musl/amd64/package.mask, hardened/linux/musl/use.mask,
+  hardened/linux/use.mask, prefix/aix/use.mask, prefix/bsd/use.mask,
+  prefix/darwin/use.mask, prefix/hpux/use.mask, prefix/mint/use.mask,
+  prefix/sunos/use.mask, prefix/windows/interix/use.mask,
+  prefix/windows/winnt/use.mask, targets/desktop/package.use, uclibc/use.mask:
+  Remove various masks related to emul-linux* from subprofiles.
+
   02 Jun 2015; Ulrich Müller u...@gentoo.org package.mask:
   Drop mask for dev-tex/mh after package removal.
 






[gentoo-commits] gentoo-x86 commit in profiles/hardened/linux/musl: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.3  profiles/hardened/linux/musl/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/use.mask?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/use.mask?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/use.mask?r1=1.2r2=1.3

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/use.mask,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- use.mask27 Jan 2014 16:12:43 -  1.2
+++ use.mask2 Jun 2015 09:15:36 -   1.3
@@ -1,11 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation.
+# Copyright 1999-2015 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/use.mask,v 1.2 
2014/01/27 16:12:43 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/use.mask,v 1.3 
2015/06/02 09:15:36 ulm Exp $
 
 pam
 
-emul-linux-x86
-
 -elibc_musl
 elibc_uclibc
 elibc_glibc






[gentoo-commits] gentoo-x86 commit in profiles/prefix/mint: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.7  profiles/prefix/mint/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/mint/use.mask?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/mint/use.mask?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/mint/use.mask?r1=1.6r2=1.7

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/mint/use.mask,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- use.mask2 Feb 2013 13:12:29 -   1.6
+++ use.mask2 Jun 2015 09:15:36 -   1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/mint/use.mask,v 1.6 
2013/02/02 13:12:29 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/mint/use.mask,v 1.7 
2015/06/02 09:15:36 ulm Exp $
 
 # Re-add MiNT libc
 -elibc_mintlib
@@ -20,7 +20,6 @@
 directfb
 divx4linux
 djbfft
-emul-linux-x86
 fbcon
 fdftk
 fmod






[gentoo-commits] gentoo-x86 commit in profiles/default/linux/uclibc/amd64: package.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:35

  Modified: package.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.8  profiles/default/linux/uclibc/amd64/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/amd64/package.mask?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/amd64/package.mask?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/amd64/package.mask?r1=1.7r2=1.8

Index: package.mask
===
RCS file: 
/var/cvsroot/gentoo-x86/profiles/default/linux/uclibc/amd64/package.mask,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- package.mask8 May 2015 22:26:25 -   1.7
+++ package.mask2 Jun 2015 09:15:35 -   1.8
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/default/linux/uclibc/amd64/package.mask,v 1.7 
2015/05/08 22:26:25 blueness Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/default/linux/uclibc/amd64/package.mask,v 1.8 
2015/06/02 09:15:35 ulm Exp $
 
 # Mask e2fsprogs-1.42.12 because of
 # possible data corruption.  Bug #548950.
@@ -26,21 +26,6 @@
 =app-i18n/atokx3-3.0.0
 app-office/lotus-notes
 app-office/ooextras
-app-emulation/emul-linux-x86-baselibs
-app-emulation/emul-linux-x86-cpplibs
-app-emulation/emul-linux-x86-db
-app-emulation/emul-linux-x86-gstplugins
-app-emulation/emul-linux-x86-gtklibs
-app-emulation/emul-linux-x86-gtkmmlibs
-app-emulation/emul-linux-x86-jna
-app-emulation/emul-linux-x86-medialibs
-app-emulation/emul-linux-x86-motif
-app-emulation/emul-linux-x86-opengl
-app-emulation/emul-linux-x86-qtlibs
-app-emulation/emul-linux-x86-sdl
-app-emulation/emul-linux-x86-soundlibs
-app-emulation/emul-linux-x86-xlibs
-app-emulation/emul-linux-x86-java
 app-emulation/winetricks
 app-emulation/wine-doors
 app-text/acroread






[gentoo-commits] gentoo-x86 commit in profiles/prefix/aix: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.5  profiles/prefix/aix/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/aix/use.mask?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/aix/use.mask?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/aix/use.mask?r1=1.4r2=1.5

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/aix/use.mask,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- use.mask2 Feb 2013 13:12:27 -   1.4
+++ use.mask2 Jun 2015 09:15:36 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/aix/use.mask,v 1.4 
2013/02/02 13:12:27 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/aix/use.mask,v 1.5 
2015/06/02 09:15:36 ulm Exp $
 
 # Re-add AIX libc
 -elibc_AIX
@@ -20,7 +20,6 @@
 directfb
 divx4linux
 djbfft
-emul-linux-x86
 fbcon
 fdftk
 fmod






[gentoo-commits] gentoo-x86 commit in profiles/prefix/hpux: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.5  profiles/prefix/hpux/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/hpux/use.mask?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/hpux/use.mask?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/hpux/use.mask?r1=1.4r2=1.5

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/hpux/use.mask,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- use.mask2 Feb 2013 13:12:29 -   1.4
+++ use.mask2 Jun 2015 09:15:36 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/hpux/use.mask,v 1.4 
2013/02/02 13:12:29 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/hpux/use.mask,v 1.5 
2015/06/02 09:15:36 ulm Exp $
 
 # Re-add HPUX libc
 -elibc_HPUX
@@ -20,7 +20,6 @@
 directfb
 divx4linux
 djbfft
-emul-linux-x86
 fbcon
 fdftk
 fmod






[gentoo-commits] gentoo-x86 commit in profiles/default/linux: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:35

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.6  profiles/default/linux/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/use.mask?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/use.mask?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/use.mask?r1=1.5r2=1.6

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/default/linux/use.mask,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- use.mask19 Apr 2013 15:26:02 -  1.5
+++ use.mask2 Jun 2015 09:15:35 -   1.6
@@ -1,15 +1,12 @@
-# Copyright 1999-2013 Gentoo Foundation.
+# Copyright 1999-2015 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/use.mask,v 1.5 
2013/04/19 15:26:02 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/use.mask,v 1.6 
2015/06/02 09:15:35 ulm Exp $
 
 # This file masks out USE flags that are simply NOT allowed in the default
 # profile for any architecture.  This works, for example, if a non-default
 # profile (such as the selinux profiles) have a USE flag associated with
 # them.
 
-# amd64 only:
-emul-linux-x86
-
 # ppc and x86/amd64
 x264
 






[gentoo-commits] gentoo-x86 commit in profiles/arch/amd64/no-multilib: package.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:35

  Modified: package.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.142profiles/arch/amd64/no-multilib/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/no-multilib/package.mask?rev=1.142view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/no-multilib/package.mask?rev=1.142content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/no-multilib/package.mask?r1=1.141r2=1.142

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/amd64/no-multilib/package.mask,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- package.mask19 Apr 2015 01:36:16 -  1.141
+++ package.mask2 Jun 2015 09:15:35 -   1.142
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/no-multilib/package.mask,v 1.141 
2015/04/19 01:36:16 creffett Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/no-multilib/package.mask,v 1.142 
2015/06/02 09:15:35 ulm Exp $
 
 # AMD64 Team am...@gentoo.org
 # Mask packages that rely on amd64 multilib
@@ -17,21 +17,6 @@
 app-emulation/vmware-player
 =app-i18n/atokx3-3.0.0
 app-office/ooextras
-app-emulation/emul-linux-x86-baselibs
-app-emulation/emul-linux-x86-cpplibs
-app-emulation/emul-linux-x86-db
-app-emulation/emul-linux-x86-gstplugins
-app-emulation/emul-linux-x86-gtklibs
-app-emulation/emul-linux-x86-gtkmmlibs
-app-emulation/emul-linux-x86-jna
-app-emulation/emul-linux-x86-medialibs
-app-emulation/emul-linux-x86-motif
-app-emulation/emul-linux-x86-opengl
-app-emulation/emul-linux-x86-qtlibs
-app-emulation/emul-linux-x86-sdl
-app-emulation/emul-linux-x86-soundlibs
-app-emulation/emul-linux-x86-xlibs
-app-emulation/emul-linux-x86-java
 app-emulation/winetricks
 app-emulation/wine-doors
 app-text/acroread






[gentoo-commits] gentoo-x86 commit in profiles/prefix/bsd: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.6  profiles/prefix/bsd/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/bsd/use.mask?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/bsd/use.mask?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/bsd/use.mask?r1=1.5r2=1.6

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/bsd/use.mask,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- use.mask2 Feb 2013 13:12:27 -   1.5
+++ use.mask2 Jun 2015 09:15:36 -   1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/bsd/use.mask,v 1.5 
2013/02/02 13:12:27 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/bsd/use.mask,v 1.6 
2015/06/02 09:15:36 ulm Exp $
 
 # these will more than likely never work on bsd
 3dfx
@@ -16,7 +16,6 @@
 directfb
 divx4linux
 djbfft
-emul-linux-x86
 fbcon
 fdftk
 fmod






[gentoo-commits] gentoo-x86 commit in profiles/embedded: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:35

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.6  profiles/embedded/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/embedded/use.mask?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/embedded/use.mask?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/embedded/use.mask?r1=1.5r2=1.6

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/embedded/use.mask,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- use.mask10 Jan 2011 11:44:19 -  1.5
+++ use.mask2 Jun 2015 09:15:35 -   1.6
@@ -5,5 +5,3 @@
 # Chris PeBenito peben...@gentoo.org
 # must use a SELinux profile
 selinux
-
-emul-linux-x86






[gentoo-commits] gentoo-x86 commit in profiles/prefix/windows/winnt: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.11 profiles/prefix/windows/winnt/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/windows/winnt/use.mask?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/windows/winnt/use.mask?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/windows/winnt/use.mask?r1=1.10r2=1.11

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/windows/winnt/use.mask,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- use.mask16 Jun 2014 15:08:32 -  1.10
+++ use.mask2 Jun 2015 09:15:36 -   1.11
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/windows/winnt/use.mask,v 
1.10 2014/06/16 15:08:32 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/windows/winnt/use.mask,v 
1.11 2015/06/02 09:15:36 ulm Exp $
 
 # Re-add Winnt libc
 -elibc_Winnt
@@ -28,7 +28,6 @@
 dvdr
 # emacs USE flag is masked because of missing implementation for unexec()
 emacs
-emul-linux-x86
 fbcon
 fdftk
 fmod






[gentoo-commits] gentoo-x86 commit in profiles/hardened/linux/musl/amd64: package.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: package.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.5  profiles/hardened/linux/musl/amd64/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/amd64/package.mask?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/amd64/package.mask?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/amd64/package.mask?r1=1.4r2=1.5

Index: package.mask
===
RCS file: 
/var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/amd64/package.mask,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- package.mask2 Oct 2014 10:29:31 -   1.4
+++ package.mask2 Jun 2015 09:15:36 -   1.5
@@ -1,26 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation.
+# Copyright 1999-2015 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/amd64/package.mask,v 1.4 
2014/10/02 10:29:31 ulm Exp $
-
-#
-# Anthony G. Basile bluen...@gentoo.org (07 Oct 2012)
-# profile hardened/linux/uclibc/amd64 is not mutlilib
-#
-app-emulation/emul-linux-x86-baselibs
-app-emulation/emul-linux-x86-cpplibs
-app-emulation/emul-linux-x86-db
-app-emulation/emul-linux-x86-gstplugins
-app-emulation/emul-linux-x86-gtklibs
-app-emulation/emul-linux-x86-gtkmmlibs
-app-emulation/emul-linux-x86-java
-app-emulation/emul-linux-x86-jna
-app-emulation/emul-linux-x86-medialibs
-app-emulation/emul-linux-x86-motif
-app-emulation/emul-linux-x86-opengl
-app-emulation/emul-linux-x86-qtlibs
-app-emulation/emul-linux-x86-sdl
-app-emulation/emul-linux-x86-soundlibs
-app-emulation/emul-linux-x86-xlibs
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/amd64/package.mask,v 1.5 
2015/06/02 09:15:36 ulm Exp $
 
 #
 # Alfredo Tupone tup...@gentoo.org (02 Feb 2013)






[gentoo-commits] gentoo-x86 commit in profiles/features/selinux: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.4  profiles/features/selinux/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/features/selinux/use.mask?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/features/selinux/use.mask?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/features/selinux/use.mask?r1=1.3r2=1.4

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/features/selinux/use.mask,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- use.mask17 Jul 2011 19:35:56 -  1.3
+++ use.mask2 Jun 2015 09:15:36 -   1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation.
+# Copyright 1999-2015 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/features/selinux/use.mask,v 1.3 
2011/07/17 19:35:56 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/features/selinux/use.mask,v 1.4 
2015/06/02 09:15:36 ulm Exp $
 
 # This file masks out USE flags that are simply NOT allowed in the default
 # profile for any architecture.  This works, for example, if a non-default
@@ -10,8 +10,5 @@
 -hardened
 -selinux
 
-# amd64 only:
-emul-linux-x86
-
 # tcc is x86-only
 tcc






[gentoo-commits] gentoo-x86 commit in profiles/uclibc: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.17 profiles/uclibc/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/uclibc/use.mask?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/uclibc/use.mask?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/uclibc/use.mask?r1=1.16r2=1.17

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/uclibc/use.mask,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- use.mask26 May 2013 16:03:31 -  1.16
+++ use.mask2 Jun 2015 09:15:36 -   1.17
@@ -2,7 +2,6 @@
 nls
 nis
 
-emul-linux-x86
 -uclibc
 
 -elibc_uclibc






[gentoo-commits] gentoo-x86 commit in profiles/default/linux/uclibc: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:35

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.2  profiles/default/linux/uclibc/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/use.mask?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/use.mask?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/use.mask?r1=1.1r2=1.2

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/default/linux/uclibc/use.mask,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- use.mask16 Aug 2014 20:43:28 -  1.1
+++ use.mask2 Jun 2015 09:15:35 -   1.2
@@ -1,11 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation.
+# Copyright 1999-2015 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/uclibc/use.mask,v 
1.1 2014/08/16 20:43:28 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/uclibc/use.mask,v 
1.2 2015/06/02 09:15:35 ulm Exp $
 
 nls
 pam
 
-emul-linux-x86
 -uclibc
 
 -elibc_uclibc






[gentoo-commits] gentoo-x86 commit in profiles/hardened/linux: use.mask

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 09:15:36

  Modified: use.mask
  Log:
  Remove various masks related to emul-linux* from subprofiles.

Revision  ChangesPath
1.19 profiles/hardened/linux/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/use.mask?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/use.mask?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/use.mask?r1=1.18r2=1.19

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/hardened/linux/use.mask,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- use.mask12 Jan 2013 12:36:18 -  1.18
+++ use.mask2 Jun 2015 09:15:36 -   1.19
@@ -1,11 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/use.mask,v 1.18 
2013/01/12 12:36:18 zorry Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/use.mask,v 1.19 
2015/06/02 09:15:36 ulm Exp $
 
 -hardened
 
-emul-linux-x86
-
 # tcc is x86-only
 tcc
 






[gentoo-commits] gentoo-x86 commit in net-libs/iojs: iojs-2.2.1.ebuild ChangeLog

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:21:41

  Modified: ChangeLog
  Added:iojs-2.2.1.ebuild
  Log:
  Version bump. Fixes bug #550882. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/137 by jbergstroem.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.20 net-libs/iojs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/ChangeLog?rev=1.20view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/ChangeLog?rev=1.20content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/ChangeLog?r1=1.19r2=1.20

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/iojs/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   26 May 2015 10:18:33 -  1.19
+++ ChangeLog   2 Jun 2015 09:21:41 -   1.20
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/iojs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/iojs/ChangeLog,v 1.19 2015/05/26 
10:18:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/iojs/ChangeLog,v 1.20 2015/06/02 
09:21:41 mgorny Exp $
+
+*iojs-2.2.1 (02 Jun 2015)
+
+  02 Jun 2015; Michał Górny mgo...@gentoo.org +iojs-2.2.1.ebuild:
+  Version bump. Fixes bug #550882. https://github.com/gentoo/gentoo-portage-
+  rsync-mirror/pull/137 by jbergstroem.
 
 *iojs-2.1.0 (26 May 2015)
 



1.1  net-libs/iojs/iojs-2.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/iojs-2.2.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/iojs-2.2.1.ebuild?rev=1.1content-type=text/plain

Index: iojs-2.2.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/iojs/iojs-2.2.1.ebuild,v 1.1 
2015/06/02 09:21:41 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

MY_PV=v${PV}
MY_P=${PN}-${MY_PV}

inherit flag-o-matic pax-utils python-single-r1 toolchain-funcs

DESCRIPTION=An npm compatible platform originally based on node.js
HOMEPAGE=http://iojs.org/;
SRC_URI=http://iojs.org/dist/${MY_PV}/${MY_P}.tar.xz;

LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT
SLOT=0
KEYWORDS=~amd64 ~arm ~x86 ~x64-macos
IUSE=bundled-libs debug icu +npm snapshot +ssl

RDEPEND=icu? ( dev-libs/icu )
${PYTHON_DEPS}
!bundled-libs? (
=net-libs/http-parser-2.5
=dev-libs/libuv-1.5.0
=dev-libs/openssl-1.0.2a[-bindist]
)
DEPEND=${RDEPEND}
!!net-libs/nodejs
S=${WORKDIR}/${MY_P}
REQUIRED_USE=${PYTHON_REQUIRED_USE}

pkg_pretend() {
if ! test-flag-CXX -std=c++11 ; then
die Your compiler doesn't support C++11. Use GCC 4.8, Clang 
3.3 or newer.
fi
}

src_prepare() {
tc-export CC CXX PKG_CONFIG
export V=1 # Verbose build
export BUILDTYPE=Release

# fix compilation on Darwin
# http://code.google.com/p/gyp/issues/detail?id=260
sed -i -e /append('-arch/d tools/gyp/pylib/gyp/xcode_emulation.py || 
die

# make sure we use python2.* while using gyp
sed -i -e s/python/${EPYTHON}/ deps/npm/node_modules/node-gyp/gyp/gyp 
|| die
sed -i -e s/|| 'python'/|| '${EPYTHON}'/ 
deps/npm/node_modules/node-gyp/lib/configure.js || die

# less verbose install output (stating the same as portage, basically)
sed -i -e /print/d tools/install.py || die

# proper libdir, hat tip @ryanpcmcquen 
https://github.com/iojs/io.js/issues/504
local LIBDIR=$(get_libdir)
sed -i -e s|lib/|${LIBDIR}/|g tools/install.py || die
sed -i -e s/'lib'/'${LIBDIR}'/ lib/module.js || die
sed -i -e s|\lib\|\${LIBDIR}\| deps/npm/lib/npm.js || die

# Avoid a test that I've only been able to reproduce from emerge. It 
doesnt
# seem sandbox related either (invoking it from a sandbox works fine).
# The issue is that no stdin handle is openened when asked for one.
# It doesn't really belong upstream , so it'll just be removed until 
someone
# with more gentoo-knowledge than me (jbergstroem) figures it out.
rm test/parallel/test-stdout-close-unref.js || die

# debug builds. change install path, remove optimisations and override 
buildtype
if use debug; then
sed -i -e s|out/Release/|out/Debug/|g tools/install.py || die
BUILDTYPE=Debug
fi
}

src_configure() {
local myconf=()
local myarch=
use bundled-libs || myconf+=( --shared-openssl --shared-libuv 
--shared-http-parser --shared-zlib )
use npm || myconf+=( 

[gentoo-commits] gentoo-x86 commit in dev-db/sqlitebrowser: sqlitebrowser-3.6.0.ebuild ChangeLog

2015-06-02 Thread Michael Weber (xmw)
xmw 15/06/02 08:24:05

  Modified: ChangeLog
  Added:sqlitebrowser-3.6.0.ebuild
  Log:
  Version bump (bug 550292 by Tomáš Chaloupka).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
62EEF090)

Revision  ChangesPath
1.23 dev-db/sqlitebrowser/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlitebrowser/ChangeLog?rev=1.23view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlitebrowser/ChangeLog?rev=1.23content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlitebrowser/ChangeLog?r1=1.22r2=1.23

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlitebrowser/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   7 Apr 2015 14:08:32 -   1.22
+++ ChangeLog   2 Jun 2015 08:24:05 -   1.23
@@ -1,6 +1,13 @@
 # ChangeLog for dev-db/sqlitebrowser
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlitebrowser/ChangeLog,v 1.22 
2015/04/07 14:08:32 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlitebrowser/ChangeLog,v 1.23 
2015/06/02 08:24:05 xmw Exp $
+
+*sqlitebrowser-3.6.0 (02 Jun 2015)
+
+  02 Jun 2015; Michael Weber x...@gentoo.org
+  +files/sqlitebrowser-3.6.0-unbundle-keep-qscintilla.patch,
+  +files/sqlitebrowser-3.6.0-unbundle.patch, +sqlitebrowser-3.6.0.ebuild:
+  Version bump (bug 550292 by Tomáš Chaloupka).
 
   21 Mar 2015; Justin Lecher j...@gentoo.org
   +files/sqlitebrowser-3.5.1-unbundle.patch, sqlitebrowser-3.5.1.ebuild:



1.1  dev-db/sqlitebrowser/sqlitebrowser-3.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlitebrowser/sqlitebrowser-3.6.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlitebrowser/sqlitebrowser-3.6.0.ebuild?rev=1.1content-type=text/plain

Index: sqlitebrowser-3.6.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-db/sqlitebrowser/sqlitebrowser-3.6.0.ebuild,v 1.1 
2015/06/02 08:24:05 xmw Exp $

EAPI=5

CMAKE_MAKEFILE_GENERATOR=ninja

inherit eutils cmake-utils

DESCRIPTION=SQLite Database Browser
HOMEPAGE=http://sqlitebrowser.org;
SRC_URI=https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz

LICENSE=GPL-3 MPL-2.0
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=qt4 qt5 test

REQUIRED_USE=^^ ( qt4 qt5 )

DEPEND=
dev-db/sqlite:3
dev-java/antlr:0[cxx]
dev-libs/qcustomplot[qt4?,qt5?]
x11-libs/qscintilla
qt4? (
dev-qt/qtcore:4
dev-qt/qtgui:4
)
qt5? (
dev-qt/linguist:5
dev-qt/linguist-tools:5
dev-qt/qtnetwork:5
dev-qt/qttest:5
dev-qt/qtwidgets:5
)
RDEPEND=${DEPEND}

PATCHES=( ${FILESDIR}/${P}-unbundle-keep-qscintilla.patch )

src_prepare() {
# https://github.com/qingfengxia/qhexedit still bundled
# x11-libs/qscintilla[qt4?,qt5?] still bundled
find libs/{antlr-2.7.7,qcustomplot-source} -delete || die
cmake-utils_src_prepare
}

src_configure() {
local mycmakeargs=(
$(cmake-utils_use_use qt5)
)
cmake-utils_src_configure
if use test; then
BUILD_DIR=${S}/tests CMAKE_USE_DIR=${S}/tests 
cmake-utils_src_configure
fi
}

src_compile() {
cmake-utils_src_compile
if use test; then
BUILD_DIR=${S}/tests CMAKE_USE_DIR=${S}/tests 
cmake-utils_src_compile
fi
}

src_test() {
tests/sqlb-unittests || die
}

src_install() {
cmake-utils_src_install
doicon images/sqlitebrowser.svg
domenu distri/sqlitebrowser.desktop
}






[gentoo-commits] gentoo-x86 commit in dev-db/sqlitebrowser/files: sqlitebrowser-3.6.0-unbundle.patch sqlitebrowser-3.6.0-unbundle-keep-qscintilla.patch

2015-06-02 Thread Michael Weber (xmw)
xmw 15/06/02 08:24:05

  Added:sqlitebrowser-3.6.0-unbundle.patch
sqlitebrowser-3.6.0-unbundle-keep-qscintilla.patch
  Log:
  Version bump (bug 550292 by Tomáš Chaloupka).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
62EEF090)

Revision  ChangesPath
1.1  
dev-db/sqlitebrowser/files/sqlitebrowser-3.6.0-unbundle.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlitebrowser/files/sqlitebrowser-3.6.0-unbundle.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlitebrowser/files/sqlitebrowser-3.6.0-unbundle.patch?rev=1.1content-type=text/plain

Index: sqlitebrowser-3.6.0-unbundle.patch
===
--- sqlitebrowser-3.6.0/CMakeLists.txt
+++ sqlitebrowser-3.6.0/CMakeLists.txt
@@ -21,15 +21,9 @@
set(CMAKE_PREFIX_PATH ${QT5_PATH};${SQLITE3_PATH})
 endif()
 
-set(ANTLR_DIR libs/antlr-2.7.7)
 set(QHEXEDIT_DIR libs/qhexedit)
-set(QCUSTOMPLOT_DIR libs/qcustomplot-source)
-set(QSCINTILLA_DIR libs/qscintilla/Qt4Qt5)
 
-add_subdirectory(${ANTLR_DIR})
 add_subdirectory(${QHEXEDIT_DIR})
-add_subdirectory(${QCUSTOMPLOT_DIR})
-add_subdirectory(${QSCINTILLA_DIR})
 
 if(USE_QT5)
find_package(Qt5Widgets REQUIRED)
@@ -31,7 +31,7 @@
 set(CMAKE_AUTOMOC ON)
 set(CMAKE_INCLUDE_CURRENT_DIR ON)
 else()
-find_package(Qt4 COMPONENTS QtCore QtGui QtNetwork REQUIRED)
+find_package(Qt4 COMPONENTS QtCore QtGui QtNetwork qscintilla2 REQUIRED)
 include(${QT_USE_FILE})
 add_definitions(${QT_DEFINITIONS})
 endif()
@@ -207,10 +201,7 @@
 
 include_directories(
${CMAKE_CURRENT_BINARY_DIR}
-   ${ANTLR_DIR}
${QHEXEDIT_DIR}
-   ${QCUSTOMPLOT_DIR}
-   ${QSCINTILLA_DIR}
${ADDITIONAL_INCLUDE_PATHS}
src)
 
@@ -227,13 +218,10 @@
 qt5_use_modules(${PROJECT_NAME} Gui Widgets Network Test PrintSupport)
 set(QT_LIBRARIES )
 endif()
-add_dependencies(${PROJECT_NAME} antlr qhexedit qcustomplot qscintilla2)
+add_dependencies(${PROJECT_NAME} qhexedit)
 
 link_directories(
-   ${CMAKE_CURRENT_BINARY_DIR}/${ANTLR_DIR}
-   ${CMAKE_CURRENT_BINARY_DIR}/${QHEXEDIT_DIR}
-   ${CMAKE_CURRENT_BINARY_DIR}/${QCUSTOMPLOT_DIR}
-   ${CMAKE_CURRENT_BINARY_DIR}/${QSCINTILLA_DIR})
+   ${CMAKE_CURRENT_BINARY_DIR}/${QHEXEDIT_DIR})
 
 target_link_libraries(${PROJECT_NAME}
antlr
--- sqlitebrowser-3.6.0/tests/CMakeLists.txt
+++ sqlitebrowser-3.6.0/tests/CMakeLists.txt
@@ -7,9 +7,6 @@
 set(CMAKE_BUILD_TYPE Release)
 endif()
 
-set(ANTLR_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../libs/antlr-2.7.7)
-add_subdirectory(${ANTLR_DIR} ${CMAKE_CURRENT_BINARY_DIR}/antlr)
-
 if(USE_QT5)
 find_package(Qt5Widgets REQUIRED)
 set(CMAKE_AUTOMOC ON)
@@ -65,7 +62,7 @@
 QT4_WRAP_UI(SQLB_FORM_HDR ${SQLB_FORMS})
 endif()
 
-include_directories(${CMAKE_CURRENT_BINARY_DIR} ${ANTLR_DIR} ../src)
+include_directories(${CMAKE_CURRENT_BINARY_DIR} ../src)
 
 add_executable(${PROJECT_NAME} ${SQLB_MOC} ${SQLB_HDR} ${SQLB_SRC} 
${SQLB_FORM_HDR})
 



1.1  
dev-db/sqlitebrowser/files/sqlitebrowser-3.6.0-unbundle-keep-qscintilla.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlitebrowser/files/sqlitebrowser-3.6.0-unbundle-keep-qscintilla.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlitebrowser/files/sqlitebrowser-3.6.0-unbundle-keep-qscintilla.patch?rev=1.1content-type=text/plain

Index: sqlitebrowser-3.6.0-unbundle-keep-qscintilla.patch
===
--- sqlitebrowser-3.6.0/CMakeLists.txt
+++ sqlitebrowser-3.6.0/CMakeLists.txt
@@ -21,14 +21,10 @@
set(CMAKE_PREFIX_PATH ${QT5_PATH};${SQLITE3_PATH})
 endif()
 
-set(ANTLR_DIR libs/antlr-2.7.7)
 set(QHEXEDIT_DIR libs/qhexedit)
-set(QCUSTOMPLOT_DIR libs/qcustomplot-source)
 set(QSCINTILLA_DIR libs/qscintilla/Qt4Qt5)
 
-add_subdirectory(${ANTLR_DIR})
 add_subdirectory(${QHEXEDIT_DIR})
-add_subdirectory(${QCUSTOMPLOT_DIR})
 add_subdirectory(${QSCINTILLA_DIR})
 
 if(USE_QT5)
@@ -207,9 +201,7 @@
 
 include_directories(
${CMAKE_CURRENT_BINARY_DIR}
-   ${ANTLR_DIR}
${QHEXEDIT_DIR}
-   ${QCUSTOMPLOT_DIR}
${QSCINTILLA_DIR}
${ADDITIONAL_INCLUDE_PATHS}
src)
@@ -227,12 +218,9 @@
 qt5_use_modules(${PROJECT_NAME} Gui Widgets Network Test PrintSupport)
 set(QT_LIBRARIES )
 endif()
-add_dependencies(${PROJECT_NAME} antlr qhexedit qcustomplot qscintilla2)
+add_dependencies(${PROJECT_NAME} qhexedit qscintilla2)
 
 link_directories(
-   ${CMAKE_CURRENT_BINARY_DIR}/${ANTLR_DIR}
-   ${CMAKE_CURRENT_BINARY_DIR}/${QHEXEDIT_DIR}
-   

[gentoo-commits] gentoo-x86 commit in sci-geosciences/gpx-viewer: gpx-viewer-0.4.0-r1.ebuild ChangeLog gpx-viewer-0.3.0.ebuild gpx-viewer-0.4.0.ebuild

2015-06-02 Thread Justin Lecher (jlec)
jlec15/06/02 08:46:13

  Modified: ChangeLog
  Added:gpx-viewer-0.4.0-r1.ebuild
  Removed:  gpx-viewer-0.3.0.ebuild gpx-viewer-0.4.0.ebuild
  Log:
  Backport crash fix, bug #535886; Drop old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.7  sci-geosciences/gpx-viewer/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpx-viewer/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpx-viewer/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpx-viewer/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/gpx-viewer/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   7 Jan 2015 11:36:01 -   1.6
+++ ChangeLog   2 Jun 2015 08:46:13 -   1.7
@@ -1,6 +1,14 @@
 # ChangeLog for sci-geosciences/gpx-viewer
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpx-viewer/ChangeLog,v 1.6 
2015/01/07 11:36:01 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpx-viewer/ChangeLog,v 1.7 
2015/06/02 08:46:13 jlec Exp $
+
+*gpx-viewer-0.4.0-r1 (02 Jun 2015)
+
+  02 Jun 2015; Justin Lecher j...@gentoo.org
+  +files/gpx-viewer-0.4.0-crash-backport, +gpx-viewer-0.4.0-r1.ebuild,
+  -files/gpx-viewer-0.3.0-autopoint.patch, -gpx-viewer-0.3.0.ebuild,
+  -gpx-viewer-0.4.0.ebuild:
+  Backport crash fix, bug #535886; Drop old
 
 *gpx-viewer-0.4.0 (07 Jan 2015)
 
@@ -26,4 +34,3 @@
   06 Oct 2012; Justin Lecher j...@gentoo.org +gpx-viewer-0.3.0.ebuild,
   +metadata.xml:
   Copied over from sci-geosciences/gpxviewer to fit upstream name
-



1.1  sci-geosciences/gpx-viewer/gpx-viewer-0.4.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpx-viewer/gpx-viewer-0.4.0-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpx-viewer/gpx-viewer-0.4.0-r1.ebuild?rev=1.1content-type=text/plain

Index: gpx-viewer-0.4.0-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sci-geosciences/gpx-viewer/gpx-viewer-0.4.0-r1.ebuild,v 
1.1 2015/06/02 08:46:13 jlec Exp $

EAPI=5

VALA_MIN_API_VERSION=0.16

inherit autotools-utils gnome2 vala

DESCRIPTION=Simple program to visualize a gpx file
HOMEPAGE=http://blog.sarine.nl/gpx-viewer/;
SRC_URI=http://edge.launchpad.net/${PN}/trunk/0.4.0/+download/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=nls

RDEPEND=
dev-libs/gdl:3
dev-libs/glib:2
dev-libs/libxml2:2
=media-libs/clutter-gtk-1.4.0:1.0
=media-libs/libchamplain-0.12.3:0.12[gtk]
x11-libs/gtk+:3
DEPEND=${RDEPEND}
$(vala_depend)
=dev-util/intltool-0.21
virtual/pkgconfig

PATCHES=( ${FILESDIR}/${P}-crash-backport )

src_prepare() {
vala_src_prepare
autotools-utils_src_prepare
}

src_configure() {
local myeconfargs=(
$(use_enable nls)
--disable-database-updates )
autotools-utils_src_configure
}

src_compile() {
autotools-utils_src_compile gpx_viewer_vala.stamp
autotools-utils_src_compile
}

src_install () {
autotools-utils_src_install
dosym ../icons/hicolor/scalable/apps/gpx-viewer.svg 
/usr/share/pixmaps/gpx-viewer.svg
}






[gentoo-commits] gentoo-x86 commit in profiles: package.mask ChangeLog

2015-06-02 Thread Ulrich Mueller (ulm)
ulm 15/06/02 08:46:27

  Modified: package.mask ChangeLog
  Log:
  Drop mask for dev-tex/mh after package removal.

Revision  ChangesPath
1.16545  profiles/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16545view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16545content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.16544r2=1.16545

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16544
retrieving revision 1.16545
diff -u -r1.16544 -r1.16545
--- package.mask1 Jun 2015 16:11:29 -   1.16544
+++ package.mask2 Jun 2015 08:46:26 -   1.16545
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16544 2015/06/01 
16:11:29 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16545 2015/06/02 
08:46:26 ulm Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -169,13 +169,6 @@
 # 547586, and 547962.
 =sys-devel/gcc-config-1.8-r1
 
-# Ulrich Müller u...@gentoo.org (28 Apr 2015)
-# Superseded by the newer breqn and mathtools
-# modules in dev-texlive/texlive-latexrecommended.
-# mh is no longer maintained upstream. Bug 524114.
-# Masked for removal in 30 days.
-dev-tex/mh
-
 # Sebastian Pipping sp...@gentoo.org (28 Apr 2015)
 # Get rid of vulnerable releases.
 # Masked for removal in 30 days.



1.10028  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10028view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10028content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10027r2=1.10028

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10027
retrieving revision 1.10028
diff -u -r1.10027 -r1.10028
--- ChangeLog   1 Jun 2015 16:40:18 -   1.10027
+++ ChangeLog   2 Jun 2015 08:46:26 -   1.10028
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10027 2015/06/01 
16:40:18 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10028 2015/06/02 
08:46:26 ulm Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  02 Jun 2015; Ulrich Müller u...@gentoo.org package.mask:
+  Drop mask for dev-tex/mh after package removal.
+
   01 Jun 2015; Michael Palimaka kensing...@gentoo.org profiles.desc:
   Introduce new profile for KDE Plasma 5.
 






[gentoo-commits] gentoo-x86 commit in sci-geosciences/gpx-viewer/files: gpx-viewer-0.4.0-crash-backport gpx-viewer-0.3.0-autopoint.patch

2015-06-02 Thread Justin Lecher (jlec)
jlec15/06/02 08:46:13

  Added:gpx-viewer-0.4.0-crash-backport
  Removed:  gpx-viewer-0.3.0-autopoint.patch
  Log:
  Backport crash fix, bug #535886; Drop old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.1  
sci-geosciences/gpx-viewer/files/gpx-viewer-0.4.0-crash-backport

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpx-viewer/files/gpx-viewer-0.4.0-crash-backport?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpx-viewer/files/gpx-viewer-0.4.0-crash-backport?rev=1.1content-type=text/plain

Index: gpx-viewer-0.4.0-crash-backport
===
=== modified file 'data/gpx-viewer-file-chooser.ui'
--- data/gpx-viewer-file-chooser.ui 2012-03-04 10:18:33 +
+++ data/gpx-viewer-file-chooser.ui 2015-06-01 19:44:21 +
@@ -7,7 +7,6 @@
 property name=title translatable=yesChoose gpx file(s)/property
 property name=icon_namegpx-viewer/property
 property name=type_hintnormal/property
-property name=has_separatorFalse/property
 property name=select_multipleTrue/property
 property name=filtergpx_viewer_file_chooser_filter/property
 property name=local_onlyFalse/property

=== modified file 'data/gpx-viewer-preferences.ui'
--- data/gpx-viewer-preferences.ui  2012-03-06 08:49:48 +
+++ data/gpx-viewer-preferences.ui  2015-06-01 19:44:21 +
@@ -5,7 +5,6 @@
   object class=GtkDialog id=preferences_dialog
 property name=border_width5/property
 property name=type_hintnormal/property
-property name=has_separatorFalse/property
 signal name=response handler=gpx_viewer_preferences_close/
 child internal-child=vbox
   object class=GtkVBox id=dialog-vbox1







[gentoo-commits] gentoo-x86 commit in profiles/default/linux/amd64/13.0/no-emul-linux-x86/desktop/gnome: eapi parent

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:13:41

  Removed:  eapi parent
  Log:
  Wipe out obsolete no-emul-linux-x86 profiles.



[gentoo-commits] gentoo-x86 commit in profiles/default/linux/amd64: ChangeLog

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:13:41

  Modified: ChangeLog
  Log:
  Wipe out obsolete no-emul-linux-x86 profiles.

Revision  ChangesPath
1.27 profiles/default/linux/amd64/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/amd64/ChangeLog?rev=1.27view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/amd64/ChangeLog?rev=1.27content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/amd64/ChangeLog?r1=1.26r2=1.27

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/default/linux/amd64/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   1 Jun 2015 16:54:49 -   1.26
+++ ChangeLog   2 Jun 2015 09:13:41 -   1.27
@@ -1,6 +1,24 @@
 # ChangeLog for the default/linux/amd64 profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/amd64/ChangeLog,v 
1.26 2015/06/01 16:54:49 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/amd64/ChangeLog,v 
1.27 2015/06/02 09:13:41 mgorny Exp $
+
+  02 Jun 2015; Michał Górny mgo...@gentoo.org
+  -13.0/no-emul-linux-x86/desktop/eapi,
+  -13.0/no-emul-linux-x86/desktop/gnome/eapi,
+  -13.0/no-emul-linux-x86/desktop/gnome/parent,
+  -13.0/no-emul-linux-x86/desktop/gnome/systemd/eapi,
+  -13.0/no-emul-linux-x86/desktop/gnome/systemd/parent,
+  -13.0/no-emul-linux-x86/desktop/kde/eapi,
+  -13.0/no-emul-linux-x86/desktop/kde/parent,
+  -13.0/no-emul-linux-x86/desktop/kde/systemd/eapi,
+  -13.0/no-emul-linux-x86/desktop/kde/systemd/parent,
+  -13.0/no-emul-linux-x86/desktop/parent,
+  -13.0/no-emul-linux-x86/developer/eapi,
+  -13.0/no-emul-linux-x86/developer/make.defaults,
+  -13.0/no-emul-linux-x86/developer/parent, -13.0/no-emul-linux-x86/eapi,
+  -13.0/no-emul-linux-x86/parent, -13.0/no-emul-linux-x86/selinux/eapi,
+  -13.0/no-emul-linux-x86/selinux/parent:
+  Wipe out obsolete no-emul-linux-x86 profiles.
 
   01 Jun 2015; Michael Palimaka kensing...@gentoo.org package.use.mask:
   Remove arch-specific mask that is duplicated in the base profile.






[gentoo-commits] gentoo-x86 commit in profiles/default/linux/amd64/13.0/no-emul-linux-x86/desktop/kde/systemd: eapi parent

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:13:41

  Removed:  eapi parent
  Log:
  Wipe out obsolete no-emul-linux-x86 profiles.



[gentoo-commits] gentoo-x86 commit in profiles/default/linux/amd64/13.0/no-emul-linux-x86/developer: eapi make.defaults parent

2015-06-02 Thread Michal Gorny (mgorny)
mgorny  15/06/02 09:13:41

  Removed:  eapi make.defaults parent
  Log:
  Wipe out obsolete no-emul-linux-x86 profiles.



[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:24:49

  Modified: ChangeLog
  Log:
  Update use.masks due to missing keywords

Revision  ChangesPath
1.10031  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10031view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10031content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10030r2=1.10031

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10030
retrieving revision 1.10031
diff -u -r1.10030 -r1.10031
--- ChangeLog   2 Jun 2015 14:36:13 -   1.10030
+++ ChangeLog   2 Jun 2015 18:24:49 -   1.10031
@@ -1,11 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10030 2015/06/02 
14:36:13 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10031 2015/06/02 
18:24:49 pacho Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org
+  arch/powerpc/ppc32/package.use.mask:
+  Update use.masks due to missing keywords
+
   02 Jun 2015; Michael Palimaka kensing...@gentoo.org thirdpartymirrors:
   Remove dead KDE mirror.
 






[gentoo-commits] gentoo-x86 commit in app-office/upwork: ChangeLog upwork-4.0.70.0.ebuild

2015-06-02 Thread Aaron Swenson (titanofold)
titanofold15/06/02 18:43:49

  Modified: ChangeLog
  Added:upwork-4.0.70.0.ebuild
  Log:
  Version bump fixes bug 550478.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
D1BBFDA0)

Revision  ChangesPath
1.2  app-office/upwork/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/upwork/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/upwork/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/upwork/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/upwork/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   15 May 2015 18:17:08 -  1.1
+++ ChangeLog   2 Jun 2015 18:43:49 -   1.2
@@ -1,6 +1,12 @@
 # ChangeLog for app-office/upwork
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/upwork/ChangeLog,v 1.1 
2015/05/15 18:17:08 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/upwork/ChangeLog,v 1.2 
2015/06/02 18:43:49 titanofold Exp $
+
+*upwork-4.0.70.0 (02 Jun 2015)
+
+  02 Jun 2015; Aaron W. Swenson titanof...@gentoo.org
+  +upwork-4.0.70.0.ebuild:
+  Version bump fixes bug 550478.
 
 *upwork-4.0.53.0 (15 May 2015)
 



1.1  app-office/upwork/upwork-4.0.70.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/upwork/upwork-4.0.70.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/upwork/upwork-4.0.70.0.ebuild?rev=1.1content-type=text/plain

Index: upwork-4.0.70.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/upwork/upwork-4.0.70.0.ebuild,v 
1.1 2015/06/02 18:43:49 titanofold Exp $

EAPI=5

inherit rpm eutils

# Binary only distribution
QA_PREBUILT=*

DESCRIPTION=Project collaboration and tracking software for upwork.com
HOMEPAGE=https://www.upwork.com/;
SRC_URI=amd64? ( 
http://updates.team.odesk.com/binaries/v4_0_70_0_bccbf5c8e0866/${PN}_x86_64.rpm 
- ${P}_x86_64.rpm )
 x86? ( 
http://updates.team.odesk.com/binaries/v4_0_70_0_bccbf5c8e0866/${PN}_i386.rpm 
- ${P}_i386.rpm )

LICENSE=ODESK
SLOT=0
KEYWORDS=~amd64 ~x86

S=${WORKDIR}

RDEPEND=
dev-libs/libgcrypt:11
media-libs/alsa-lib
sys-libs/libcap
virtual/udev
x11-libs/gtk+:2
x11-libs/gtkglext


src_prepare() {
epatch ${FILESDIR}/${PN}-desktop.patch
}

src_install() {
# Wrapper to the real executable
dobin usr/bin/upwork

insinto /usr/share
doins -r usr/share/upwork
dosym /usr/lib/libudev.so /usr/share/upwork/libudev.so.0

# Make this executable because it's the real executable
fperms 0755 /usr/share/upwork/upwork

domenu usr/share/applications/upwork.desktop
doicon usr/share/pixmaps/upwork.png
}






[gentoo-commits] gentoo-x86 commit in net-im/qutim: ChangeLog qutim-0.3.1-r1.ebuild

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:58:23

  Modified: ChangeLog
  Removed:  qutim-0.3.1-r1.ebuild
  Log:
  Drop old ebuild still using 'jabber' instead of 'xmpp' USE (#216300)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.39 net-im/qutim/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/qutim/ChangeLog?rev=1.39view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/qutim/ChangeLog?rev=1.39content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/qutim/ChangeLog?r1=1.38r2=1.39

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-im/qutim/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog   16 May 2015 11:00:28 -  1.38
+++ ChangeLog   2 Jun 2015 18:58:23 -   1.39
@@ -1,6 +1,10 @@
 # ChangeLog for net-im/qutim
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/qutim/ChangeLog,v 1.38 2015/05/16 
11:00:28 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/qutim/ChangeLog,v 1.39 2015/06/02 
18:58:23 pacho Exp $
+
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org
+  -files/qutim-0.3.1-cmake-2.8.12-qt-build.patch, -qutim-0.3.1-r1.ebuild:
+  Drop old ebuild still using 'jabber' instead of 'xmpp' USE (#216300)
 
   16 May 2015; Pacho Ramos pa...@gentoo.org qutim-0.3.2.ebuild:
   Rename jabber to xmpp USE (#216300)






[gentoo-commits] gentoo-x86 commit in dev-python/oslo-middleware: oslo-middleware-1.3.0.ebuild ChangeLog

2015-06-02 Thread Matt Thode (prometheanfire)
prometheanfire15/06/02 18:59:02

  Modified: ChangeLog
  Added:oslo-middleware-1.3.0.ebuild
  Log:
  bup
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.6  dev-python/oslo-middleware/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/ChangeLog?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/ChangeLog?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/ChangeLog?r1=1.5r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/oslo-middleware/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   5 May 2015 15:02:49 -   1.5
+++ ChangeLog   2 Jun 2015 18:59:02 -   1.6
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/oslo-middleware
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-middleware/ChangeLog,v 1.5 
2015/05/05 15:02:49 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-middleware/ChangeLog,v 1.6 
2015/06/02 18:59:02 prometheanfire Exp $
+
+*oslo-middleware-1.3.0 (02 Jun 2015)
+
+  02 Jun 2015; Matthew Thode prometheanf...@gentoo.org
+  +oslo-middleware-1.3.0.ebuild:
+  bup
 
 *oslo-middleware-1.2.0 (05 May 2015)
 



1.1  dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild?rev=1.1content-type=text/plain

Index: oslo-middleware-1.3.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild,v
 1.1 2015/06/02 18:59:02 prometheanfire Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_4 )

inherit distutils-r1

DESCRIPTION=Library includes components to be injected into wsgi pipelines to 
intercept request/response flows
HOMEPAGE=https://pypi.python.org/pypi/oslo.middleware;
SRC_URI=mirror://pypi/${PN:0:1}/oslo.middleware/oslo.middleware-${PV}.tar.gz
S=${WORKDIR}/oslo.middleware-${PV}

LICENSE=Apache-2.0
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=test

DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
=dev-python/pbr-0.11[${PYTHON_USEDEP}]
dev-python/pbr-2.0[${PYTHON_USEDEP}]
test? (
=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}]
=dev-python/hacking-0.10[${PYTHON_USEDEP}]
dev-python/hacking-0.11[${PYTHON_USEDEP}]
=dev-python/mock-1.0[${PYTHON_USEDEP}]
=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}]
=dev-python/oslotest-1.5.1[${PYTHON_USEDEP}]
=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
!~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
dev-python/sphinx-1.3.0[${PYTHON_USEDEP}]
=dev-python/testtools-0.9.36[${PYTHON_USEDEP}]
!~dev-python/testtools-1.2.0[${PYTHON_USEDEP}]
=dev-python/coverage-3.6[${PYTHON_USEDEP}]
)
RDEPEND=
=dev-python/Babel-1.3[${PYTHON_USEDEP}]
=dev-python/oslo-config-1.11.0[${PYTHON_USEDEP}]
=dev-python/oslo-context-0.2.0[${PYTHON_USEDEP}]
=dev-python/oslo-i18n-1.5.0[${PYTHON_USEDEP}]
=dev-python/six-1.9.0[${PYTHON_USEDEP}]
=dev-python/stevedore-1.3.0[${PYTHON_USEDEP}]
=dev-python/webob-1.2.3[${PYTHON_USEDEP}]


# This time half the doc files are missing; Do you want them?

python_test() {
nosetests tests/ || die test failed under ${EPYTHON}
}






[gentoo-commits] gentoo-x86 commit in net-im/qutim: metadata.xml ChangeLog

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:58:48

  Modified: metadata.xml ChangeLog
  Log:
  Clean metadata.xml
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.11 net-im/qutim/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/qutim/metadata.xml?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/qutim/metadata.xml?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/qutim/metadata.xml?r1=1.10r2=1.11

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-im/qutim/metadata.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- metadata.xml2 Dec 2014 08:24:43 -   1.10
+++ metadata.xml2 Jun 2015 18:58:48 -   1.11
@@ -21,9 +21,7 @@
flag name=histmanEnable history importer plugin/flag
flag name=hunspellEnable spellchecking using 
pkgapp-text/hunspell/pkg/flag
flag name=ircEnable IRC protocol support/flag
-   flag name=kineticEnable Growl-like kinetic popups plugin/flag
flag name=mrimEnable mail.ru protocol support/flag
-   flag name=multimediaAdd sound support via 
pkgdev-qt/qtmultimedia/pkg/flag
flag name=otrEnable plugin for encrypted conversations 
(Off-The-Record messaging)/flag
flag name=phononAdd sound support via pkgmedia-libs/phonon/pkg 
or pkgdev-qt/qtphonon/pkg/flag
flag name=purpleEnable libpurple-based protocol support/flag



1.40 net-im/qutim/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/qutim/ChangeLog?rev=1.40view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/qutim/ChangeLog?rev=1.40content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/qutim/ChangeLog?r1=1.39r2=1.40

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-im/qutim/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   2 Jun 2015 18:58:23 -   1.39
+++ ChangeLog   2 Jun 2015 18:58:48 -   1.40
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/qutim
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/qutim/ChangeLog,v 1.39 2015/06/02 
18:58:23 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/qutim/ChangeLog,v 1.40 2015/06/02 
18:58:48 pacho Exp $
+
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org metadata.xml:
+  Clean metadata.xml
 
   02 Jun 2015; Pacho Ramos pa...@gentoo.org
   -files/qutim-0.3.1-cmake-2.8.12-qt-build.patch, -qutim-0.3.1-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog

2015-06-02 Thread Mikle Kolyada (zlogene)
zlogene 15/06/02 19:39:40

  Modified: dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #551010
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.1r2=1.2

Index: dhcpcd-6.9.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dhcpcd-6.9.0.ebuild 16 May 2015 23:23:32 -  1.1
+++ dhcpcd-6.9.0.ebuild 2 Jun 2015 19:39:40 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.1 
2015/05/16 23:23:32 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.2 
2015/06/02 19:39:40 zlogene Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
MY_P=${MY_P/_beta/-beta}
MY_P=${MY_P/_rc/-rc}
SRC_URI=http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2;
-   KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux
+   KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux
S=${WORKDIR}/${MY_P}
 fi
 



1.458net-misc/dhcpcd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.458view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.458content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.457r2=1.458

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.457
retrieving revision 1.458
diff -u -r1.457 -r1.458
--- ChangeLog   24 May 2015 18:21:01 -  1.457
+++ ChangeLog   2 Jun 2015 19:39:40 -   1.458
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.457 
2015/05/24 18:21:01 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.458 
2015/06/02 19:39:40 zlogene Exp $
+
+  02 Jun 2015; Mikle Kolyada zlog...@gentoo.org dhcpcd-6.9.0.ebuild:
+  amd64 stable wrt bug #551010
 
   24 May 2015; Matt Turner matts...@gentoo.org dhcpcd-6.6.7.ebuild:
   alpha stable, bug 538418.






[gentoo-commits] gentoo-x86 commit in app-text/ghostscript-gpl: ghostscript-gpl-9.15-r1.ebuild ChangeLog

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:03:48

  Modified: ghostscript-gpl-9.15-r1.ebuild ChangeLog
  Log:
  -j1 needed because of bug #550926
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.6  app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild?r1=1.5r2=1.6

Index: ghostscript-gpl-9.15-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ghostscript-gpl-9.15-r1.ebuild  31 May 2015 20:13:00 -  1.5
+++ ghostscript-gpl-9.15-r1.ebuild  2 Jun 2015 18:03:48 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v
 1.5 2015/05/31 20:13:00 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v
 1.6 2015/06/02 18:03:48 pacho Exp $
 
 EAPI=5
 
@@ -176,8 +176,8 @@
 }
 
 src_compile() {
-
-   emake so all
+   # -j1 needed because of bug #550926
+   emake -j1 so all
 
cd ${S}/ijs
emake



1.182app-text/ghostscript-gpl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ChangeLog?rev=1.182view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ChangeLog?rev=1.182content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ChangeLog?r1=1.181r2=1.182

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog   31 May 2015 20:13:00 -  1.181
+++ ChangeLog   2 Jun 2015 18:03:48 -   1.182
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/ghostscript-gpl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.181 
2015/05/31 20:13:00 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.182 
2015/06/02 18:03:48 pacho Exp $
+
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org ghostscript-gpl-9.15-r1.ebuild:
+  -j1 needed because of bug #550926
 
   31 May 2015; Mikle Kolyada zlog...@gentoo.org
   ghostscript-gpl-9.15-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in net-im/bitlbee/files: bitlbee-3.2.1-tests.patch bitlbee-3.0.5-parallel-make.patch bitlbee-3.0.6-configure.patch bitlbee-3.0-configure.patch

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:57:22

  Removed:  bitlbee-3.2.1-tests.patch
bitlbee-3.0.5-parallel-make.patch
bitlbee-3.0.6-configure.patch
bitlbee-3.0-configure.patch
  Log:
  Drop old ebuild still using 'jabber' instead of 'xmpp' USE (#216300)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)



[gentoo-commits] gentoo-x86 commit in net-im/bitlbee: ChangeLog bitlbee-3.0.5-r1.ebuild

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:57:22

  Modified: ChangeLog
  Removed:  bitlbee-3.0.5-r1.ebuild
  Log:
  Drop old ebuild still using 'jabber' instead of 'xmpp' USE (#216300)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.181net-im/bitlbee/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/bitlbee/ChangeLog?rev=1.181view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/bitlbee/ChangeLog?rev=1.181content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/bitlbee/ChangeLog?r1=1.180r2=1.181

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-im/bitlbee/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog   16 May 2015 11:06:33 -  1.180
+++ ChangeLog   2 Jun 2015 18:57:22 -   1.181
@@ -1,6 +1,11 @@
 # ChangeLog for net-im/bitlbee
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/bitlbee/ChangeLog,v 1.180 2015/05/16 
11:06:33 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/bitlbee/ChangeLog,v 1.181 2015/06/02 
18:57:22 pacho Exp $
+
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org -bitlbee-3.0.5-r1.ebuild,
+  -files/bitlbee-3.0-configure.patch, -files/bitlbee-3.0.5-parallel-make.patch,
+  -files/bitlbee-3.0.6-configure.patch, -files/bitlbee-3.2.1-tests.patch:
+  Drop old ebuild still using 'jabber' instead of 'xmpp' USE (#216300)
 
   16 May 2015; Pacho Ramos pa...@gentoo.org bitlbee-3.2.2.ebuild:
   Rename jabber to xmpp USE (#216300)






[gentoo-commits] gentoo-x86 commit in net-analyzer/zabbix: ChangeLog zabbix-2.0.14.ebuild

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:56:10

  Modified: ChangeLog
  Removed:  zabbix-2.0.14.ebuild
  Log:
  Drop old ebuild still using 'jabber' instead of 'xmpp' USE (#216300)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.179net-analyzer/zabbix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/zabbix/ChangeLog?rev=1.179view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/zabbix/ChangeLog?rev=1.179content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/zabbix/ChangeLog?r1=1.178r2=1.179

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog   16 May 2015 10:37:39 -  1.178
+++ ChangeLog   2 Jun 2015 18:56:10 -   1.179
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/zabbix
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/ChangeLog,v 1.178 
2015/05/16 10:37:39 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/ChangeLog,v 1.179 
2015/06/02 18:56:10 pacho Exp $
+
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org -zabbix-2.0.14.ebuild:
+  Drop old ebuild still using 'jabber' instead of 'xmpp' USE (#216300)
 
   16 May 2015; Pacho Ramos pa...@gentoo.org zabbix-2.2.5.ebuild,
   zabbix-2.2.9.ebuild, zabbix-2.4.5.ebuild:






[gentoo-commits] gentoo-x86 commit in net-im/qutim/files: qutim-0.3.1-cmake-2.8.12-qt-build.patch

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:58:23

  Removed:  qutim-0.3.1-cmake-2.8.12-qt-build.patch
  Log:
  Drop old ebuild still using 'jabber' instead of 'xmpp' USE (#216300)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)



[gentoo-commits] proj/openrc:master commit in: init.d/

2015-06-02 Thread William Hubbs
commit: b209fe3859c05c286037843bb34058f849c54b15
Author: Mike Gilbert floppym AT gentoo DOT org
AuthorDate: Thu May 28 04:01:43 2015 +
Commit: William Hubbs williamh AT gentoo DOT org
CommitDate: Tue Jun  2 18:11:04 2015 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=b209fe38

bootmisc: Don't call dmesg in systemd-nspawn containers

This fixes #57.

 init.d/bootmisc.in | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in
index dbd258e..13f2389 100644
--- a/init.d/bootmisc.in
+++ b/init.d/bootmisc.in
@@ -214,10 +214,13 @@ start()
if yesno $log_dmesg; then
if $logw || checkpath -W /var/log; then
# Create an 'after-boot' dmesg log
-   if [ $RC_SYS != VSERVER -a $RC_SYS != OPENVZ -a 
$RC_SYS != LXC ]; then
-   dmesg  /var/log/dmesg
-   chmod 640 /var/log/dmesg
-   fi
+   case $RC_SYS in
+   VSERVER|OPENVZ|LXC|SYSTEMD-NSPAWN) ;;
+   *)
+   dmesg  /var/log/dmesg
+   chmod 640 /var/log/dmesg
+   ;;
+   esac
fi
fi
 



[gentoo-commits] gentoo-x86 commit in profiles/arch/powerpc: package.use.stable.mask

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:30:37

  Modified: package.use.stable.mask
  Log:
  Update use.stable.masks due to missing keywords

Revision  ChangesPath
1.9  profiles/arch/powerpc/package.use.stable.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/package.use.stable.mask?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/package.use.stable.mask?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/package.use.stable.mask?r1=1.8r2=1.9

Index: package.use.stable.mask
===
RCS file: 
/var/cvsroot/gentoo-x86/profiles/arch/powerpc/package.use.stable.mask,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- package.use.stable.mask 15 May 2015 12:27:56 -  1.8
+++ package.use.stable.mask 2 Jun 2015 18:30:37 -   1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/powerpc/package.use.stable.mask,v 1.8 
2015/05/15 12:27:56 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/powerpc/package.use.stable.mask,v 1.9 
2015/06/02 18:30:37 pacho Exp $
 
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -18,6 +18,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Pacho Ramos pa...@gentoo.org (02 Jun 2015)
+# Missing stable
+net-misc/connman l2tp
+
 # Pacho Ramos pa...@gentoo.org (15 May 2015)
 # Missing stable
 dev-libs/protobuf python






[gentoo-commits] gentoo-x86 commit in www-apps/phpsysinfo: phpsysinfo-3.2.2.ebuild ChangeLog

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:39:08

  Modified: ChangeLog
  Added:phpsysinfo-3.2.2.ebuild
  Log:
  Version bump adding apache 2.4 support (#550988 by Tomas Mozes)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.90 www-apps/phpsysinfo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/ChangeLog?rev=1.90view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/ChangeLog?rev=1.90content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/ChangeLog?r1=1.89r2=1.90

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog   2 Feb 2015 04:45:49 -   1.89
+++ ChangeLog   2 Jun 2015 18:39:08 -   1.90
@@ -1,6 +1,11 @@
 # ChangeLog for www-apps/phpsysinfo
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v 1.89 
2015/02/02 04:45:49 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v 1.90 
2015/06/02 18:39:08 pacho Exp $
+
+*phpsysinfo-3.2.2 (02 Jun 2015)
+
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org +phpsysinfo-3.2.2.ebuild:
+  Version bump adding apache 2.4 support (#550988 by Tomas Mozes)
 
 *phpsysinfo-3.2.0 (02 Feb 2015)
 



1.1  www-apps/phpsysinfo/phpsysinfo-3.2.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/phpsysinfo-3.2.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/phpsysinfo-3.2.2.ebuild?rev=1.1content-type=text/plain

Index: phpsysinfo-3.2.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-apps/phpsysinfo/phpsysinfo-3.2.2.ebuild,v 1.1 
2015/06/02 18:39:08 pacho Exp $

EAPI=5

inherit webapp

DESCRIPTION=phpSysInfo is a nice package that will display your system stats 
via PHP
HOMEPAGE=http://rk4an.github.com/phpsysinfo/;
SRC_URI=https://github.com/rk4an/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz

LICENSE=GPL-2
KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd

RDEPEND=
virtual/httpd-php
dev-lang/php[simplexml,xml,xsl(+),xslt(+),unicode]


need_httpd_cgi

src_install() {
webapp_src_preinst

dodoc CHANGELOG.md README*
rm CHANGELOG.md COPYING README* .gitignore .travis.yml || die

insinto ${MY_HTDOCSDIR}
doins -r .
newins phpsysinfo.ini{.new,}

webapp_configfile ${MY_HTDOCSDIR}/phpsysinfo.ini
webapp_src_install
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut: dracut-041-r2.ebuild ChangeLog dracut-041-r3.ebuild

2015-06-02 Thread Amadeusz Zolnowski (aidecoe)
aidecoe 15/06/02 19:09:49

  Modified: dracut-041-r2.ebuild ChangeLog
  Removed:  dracut-041-r3.ebuild
  Log:
  Remove unnecessarily rev-bumped ebuild. Add new patch in -r3 to -r2.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
F0134531E1DBFAB5)

Revision  ChangesPath
1.3  sys-kernel/dracut/dracut-041-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/dracut-041-r2.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/dracut-041-r2.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/dracut-041-r2.ebuild?r1=1.2r2=1.3

Index: dracut-041-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-041-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- dracut-041-r2.ebuild31 Mar 2015 10:54:29 -  1.2
+++ dracut-041-r2.ebuild2 Jun 2015 19:09:49 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-041-r2.ebuild,v 
1.2 2015/03/31 10:54:29 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-041-r2.ebuild,v 
1.3 2015/06/02 19:09:49 aidecoe Exp $
 
 EAPI=4
 
@@ -52,6 +52,7 @@
${FILESDIR}/${PVR}-0001-Use-the-same-paths-in-dracut.sh-as-tho.patch
${FILESDIR}/${PVR}-0002-Install-dracut-install-and-skipcpio-in.patch
${FILESDIR}/${PVR}-0003-Take-into-account-lib64-dirs-when-dete.patch
+   ${FILESDIR}/${PVR}-0004-Portability-fixes.patch
)
 QA_MULTILIB_PATHS=
usr/lib/dracut/dracut-install



1.192sys-kernel/dracut/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.192view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.192content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?r1=1.191r2=1.192

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- ChangeLog   2 Jun 2015 09:34:01 -   1.191
+++ ChangeLog   2 Jun 2015 19:09:49 -   1.192
@@ -1,6 +1,10 @@
 # ChangeLog for sys-kernel/dracut
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.191 
2015/06/02 09:34:01 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.192 
2015/06/02 19:09:49 aidecoe Exp $
+
+  02 Jun 2015; Amadeusz Żołnowski aide...@gentoo.org dracut-041-r2.ebuild,
+  -dracut-041-r3.ebuild:
+  Remove unnecessarily rev-bumped ebuild. Add new patch in -r3 to -r2.
 
 *dracut-041-r3 (02 Jun 2015)
 






[gentoo-commits] gentoo-x86 commit in profiles/arch/arm: package.use.stable.mask

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:30:37

  Modified: package.use.stable.mask
  Log:
  Update use.stable.masks due to missing keywords

Revision  ChangesPath
1.9  profiles/arch/arm/package.use.stable.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/package.use.stable.mask?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/package.use.stable.mask?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/package.use.stable.mask?r1=1.8r2=1.9

Index: package.use.stable.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.stable.mask,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- package.use.stable.mask 11 May 2015 17:05:20 -  1.8
+++ package.use.stable.mask 2 Jun 2015 18:30:37 -   1.9
@@ -1,6 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.stable.mask,v 
1.8 2015/05/11 17:05:20 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.stable.mask,v 
1.9 2015/06/02 18:30:37 pacho Exp $
+
+# Pacho Ramos pa...@gentoo.org (02 Jun 2015)
+# Missing stable
+net-misc/connman l2tp pptp
 
 # Michael Palimaka kensing...@gentoo.org (11 May 2015)
 # KDE is not stable on arm






[gentoo-commits] gentoo-x86 commit in dev-python/oslo-middleware: oslo-middleware-1.3.0.ebuild ChangeLog

2015-06-02 Thread Matt Thode (prometheanfire)
prometheanfire15/06/02 19:00:49

  Modified: oslo-middleware-1.3.0.ebuild ChangeLog
  Log:
  sign it
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.2  dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild?r1=1.1r2=1.2

Index: oslo-middleware-1.3.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oslo-middleware-1.3.0.ebuild2 Jun 2015 18:59:02 -   1.1
+++ oslo-middleware-1.3.0.ebuild2 Jun 2015 19:00:49 -   1.2
@@ -1,13 +1,13 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild,v
 1.1 2015/06/02 18:59:02 prometheanfire Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-middleware/oslo-middleware-1.3.0.ebuild,v
 1.2 2015/06/02 19:00:49 prometheanfire Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 python3_4 )
 
 inherit distutils-r1
 
-DESCRIPTION=Library includes components to be injected into wsgi pipelines to 
intercept request/response flows
+DESCRIPTION=Library includes components to be injected into wsgi pipelines to 
intercept request/response flows.
 HOMEPAGE=https://pypi.python.org/pypi/oslo.middleware;
 SRC_URI=mirror://pypi/${PN:0:1}/oslo.middleware/oslo.middleware-${PV}.tar.gz
 S=${WORKDIR}/oslo.middleware-${PV}



1.7  dev-python/oslo-middleware/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-middleware/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/oslo-middleware/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   2 Jun 2015 18:59:02 -   1.6
+++ ChangeLog   2 Jun 2015 19:00:49 -   1.7
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/oslo-middleware
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-middleware/ChangeLog,v 1.6 
2015/06/02 18:59:02 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-middleware/ChangeLog,v 1.7 
2015/06/02 19:00:49 prometheanfire Exp $
+
+  02 Jun 2015; Matthew Thode prometheanf...@gentoo.org
+  oslo-middleware-1.3.0.ebuild:
+  sign it
 
 *oslo-middleware-1.3.0 (02 Jun 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-python/tablib: tablib-0.10.0.ebuild ChangeLog

2015-06-02 Thread Matt Thode (prometheanfire)
prometheanfire15/06/02 19:13:01

  Modified: ChangeLog
  Added:tablib-0.10.0.ebuild
  Log:
  bup
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.3  dev-python/tablib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tablib/ChangeLog?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tablib/ChangeLog?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tablib/ChangeLog?r1=1.2r2=1.3

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/tablib/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   8 Apr 2015 08:05:27 -   1.2
+++ ChangeLog   2 Jun 2015 19:13:01 -   1.3
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/tablib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/tablib/ChangeLog,v 1.2 
2015/04/08 08:05:27 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/tablib/ChangeLog,v 1.3 
2015/06/02 19:13:01 prometheanfire Exp $
+
+*tablib-0.10.0 (02 Jun 2015)
+
+  02 Jun 2015; Matthew Thode prometheanf...@gentoo.org +tablib-0.10.0.ebuild:
+  bup
 
   08 Apr 2015; Michał Górny mgo...@gentoo.org tablib-0.9.11.ebuild:
   Drop old Python implementations



1.1  dev-python/tablib/tablib-0.10.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tablib/tablib-0.10.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tablib/tablib-0.10.0.ebuild?rev=1.1content-type=text/plain

Index: tablib-0.10.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/tablib/tablib-0.10.0.ebuild,v 1.1 
2015/06/02 19:13:01 prometheanfire Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 )

inherit distutils-r1

DESCRIPTION=A format-agnostic tabular dataset library written in Python
HOMEPAGE=http://python-tablib.org/;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

KEYWORDS=~amd64 ~x86
IUSE=
LICENSE=MIT
SLOT=0

RDEPEND=dev-python/ujson[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]






[gentoo-commits] gentoo-x86 commit in net-misc/connman: connman-1.28.ebuild connman-1.29.ebuild ChangeLog

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:25:29

  Modified: connman-1.28.ebuild connman-1.29.ebuild ChangeLog
  Log:
  ppc keyword, bug #542336
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.4  net-misc/connman/connman-1.28.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.28.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.28.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.28.ebuild?r1=1.3r2=1.4

Index: connman-1.28.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.28.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- connman-1.28.ebuild 5 May 2015 07:58:17 -   1.3
+++ connman-1.28.ebuild 2 Jun 2015 18:25:29 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.28.ebuild,v 1.3 
2015/05/05 07:58:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.28.ebuild,v 1.4 
2015/06/02 18:25:29 pacho Exp $
 
 EAPI=5
 inherit base systemd
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~arm ~ppc64 ~x86
+KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
 IUSE=bluetooth debug doc examples +ethernet l2tp ofono openvpn openconnect 
pptp policykit tools vpnc +wifi wispr
 
 RDEPEND==dev-libs/glib-2.16



1.2  net-misc/connman/connman-1.29.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.29.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.29.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.29.ebuild?r1=1.1r2=1.2

Index: connman-1.29.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.29.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- connman-1.29.ebuild 8 May 2015 08:58:21 -   1.1
+++ connman-1.29.ebuild 2 Jun 2015 18:25:29 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.29.ebuild,v 1.1 
2015/05/08 08:58:21 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.29.ebuild,v 1.2 
2015/06/02 18:25:29 pacho Exp $
 
 EAPI=5
 inherit base systemd
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~arm ~ppc64 ~x86
+KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
 IUSE=bluetooth debug doc examples +ethernet l2tp ofono openvpn openconnect 
pptp policykit tools vpnc +wifi wispr
 
 RDEPEND==dev-libs/glib-2.16



1.99 net-misc/connman/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.99view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.99content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?r1=1.98r2=1.99

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog   15 May 2015 12:20:22 -  1.98
+++ ChangeLog   2 Jun 2015 18:25:29 -   1.99
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/connman
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.98 
2015/05/15 12:20:22 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.99 
2015/06/02 18:25:29 pacho Exp $
+
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org connman-1.28.ebuild,
+  connman-1.29.ebuild:
+  ppc keyword, bug #542336
 
   15 May 2015; Pacho Ramos pa...@gentoo.org connman-1.27.ebuild:
   ppc stable wrt bug #542444






[gentoo-commits] gentoo-x86 commit in profiles/arch/powerpc/ppc32: package.use.mask

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:24:49

  Modified: package.use.mask
  Log:
  Update use.masks due to missing keywords

Revision  ChangesPath
1.44 profiles/arch/powerpc/ppc32/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ppc32/package.use.mask?rev=1.44view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ppc32/package.use.mask?rev=1.44content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ppc32/package.use.mask?r1=1.43r2=1.44

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ppc32/package.use.mask,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- package.use.mask21 May 2015 09:51:43 -  1.43
+++ package.use.mask2 Jun 2015 18:24:49 -   1.44
@@ -1,9 +1,13 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/powerpc/ppc32/package.use.mask,v 1.43 
2015/05/21 09:51:43 chewi Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/powerpc/ppc32/package.use.mask,v 1.44 
2015/06/02 18:24:49 pacho Exp $
 
 # This file requires =portage-2.1.1
 
+# Pacho Ramos pa...@gentoo.org (02 Jun 2015)
+# Missing keywords (02 Jun 2015)
+net-misc/connman openconnect
+
 # Pacho Ramos pa...@gentoo.org (15 May 2015)
 # Missing stable
 dev-libs/protobuf python






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 18:30:37

  Modified: ChangeLog
  Log:
  Update use.stable.masks due to missing keywords

Revision  ChangesPath
1.10032  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10032view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10032content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10031r2=1.10032

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10031
retrieving revision 1.10032
diff -u -r1.10031 -r1.10032
--- ChangeLog   2 Jun 2015 18:24:49 -   1.10031
+++ ChangeLog   2 Jun 2015 18:30:37 -   1.10032
@@ -1,11 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10031 2015/06/02 
18:24:49 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10032 2015/06/02 
18:30:37 pacho Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org arch/arm/package.use.stable.mask,
+  arch/powerpc/package.use.stable.mask:
+  Update use.stable.masks due to missing keywords
+
   02 Jun 2015; Pacho Ramos pa...@gentoo.org
   arch/powerpc/ppc32/package.use.mask:
   Update use.masks due to missing keywords






[gentoo-commits] gentoo-x86 commit in gnome-extra/gnome-user-share: gnome-user-share-3.14.2.ebuild metadata.xml ChangeLog gnome-user-share-3.10.2-r1.ebuild

2015-06-02 Thread Pacho Ramos (pacho)
pacho   15/06/02 19:07:16

  Modified: gnome-user-share-3.14.2.ebuild metadata.xml
ChangeLog
  Removed:  gnome-user-share-3.10.2-r1.ebuild
  Log:
  www-servers/apache[apache2_mpms_prefork] needed (#551012 by Kobboi), stop 
messing with ITSTOOL value, drop old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.4  gnome-extra/gnome-user-share/gnome-user-share-3.14.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.14.2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.14.2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.14.2.ebuild?r1=1.3r2=1.4

Index: gnome-user-share-3.14.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.14.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnome-user-share-3.14.2.ebuild  15 Mar 2015 13:26:32 -  1.3
+++ gnome-user-share-3.14.2.ebuild  2 Jun 2015 19:07:16 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.14.2.ebuild,v
 1.3 2015/03/15 13:26:32 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.14.2.ebuild,v
 1.4 2015/06/02 19:07:16 pacho Exp $
 
 EAPI=5
 GCONF_DEBUG=no
@@ -24,7 +24,7 @@
=gnome-base/nautilus-2.91.7
media-libs/libcanberra[gtk3]
=www-apache/mod_dnssd-0.6
-   
=www-servers/apache-2.2[apache2_modules_dav,apache2_modules_dav_fs,apache2_modules_authn_file,apache2_modules_auth_digest,apache2_modules_authz_groupfile]
+   
=www-servers/apache-2.2[apache2_modules_dav,apache2_modules_dav_fs,apache2_modules_authn_file,apache2_modules_auth_digest,apache2_modules_authz_groupfile,apache2_mpms_prefork]
=x11-libs/libnotify-0.7:=
bluetooth? (
=net-wireless/gnome-bluetooth-3.9.3:2=
@@ -42,7 +42,6 @@
 src_configure() {
gnome2_src_configure \
$(use_enable bluetooth) \
-   ITSTOOL=$(type -P true) \
--with-httpd=apache2 \
--with-modules-path=/usr/$(get_libdir)/apache2/modules/
 }



1.2  gnome-extra/gnome-user-share/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/metadata.xml?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/metadata.xml?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/metadata.xml?r1=1.1r2=1.2

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml12 Oct 2008 20:14:39 -  1.1
+++ metadata.xml2 Jun 2015 19:07:16 -   1.2
@@ -1,11 +1,6 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-   herdgnome/herd
-   maintainer
-   emaile...@gentoo.org/email
-   nameGilles Dartiguelongue/name
-   descriptionPrimary maintainer/description
-   /maintainer
+herdgnome/herd
 /pkgmetadata
 



1.45 gnome-extra/gnome-user-share/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog?rev=1.45view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog?rev=1.45content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog?r1=1.44r2=1.45

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   15 Mar 2015 13:26:32 -  1.44
+++ ChangeLog   2 Jun 2015 19:07:16 -   1.45
@@ -1,6 +1,12 @@
 # ChangeLog for gnome-extra/gnome-user-share
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog,v 
1.44 2015/03/15 13:26:32 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog,v 
1.45 2015/06/02 19:07:16 pacho Exp $
+
+  02 Jun 2015; Pacho Ramos pa...@gentoo.org
+  -gnome-user-share-3.10.2-r1.ebuild, 

[gentoo-commits] gentoo-x86 commit in dev-python/python-neutronclient: python-neutronclient-2.6.0.ebuild ChangeLog

2015-06-02 Thread Matt Thode (prometheanfire)
prometheanfire15/06/02 19:15:02

  Modified: ChangeLog
  Added:python-neutronclient-2.6.0.ebuild
  Log:
  bup
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.14 dev-python/python-neutronclient/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/ChangeLog?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/ChangeLog?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/ChangeLog?r1=1.13r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   30 Apr 2015 20:51:08 -  1.13
+++ ChangeLog   2 Jun 2015 19:15:02 -   1.14
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/python-neutronclient
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/ChangeLog,v 
1.13 2015/04/30 20:51:08 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/ChangeLog,v 
1.14 2015/06/02 19:15:02 prometheanfire Exp $
+
+*python-neutronclient-2.6.0 (02 Jun 2015)
+
+  02 Jun 2015; Matthew Thode prometheanf...@gentoo.org
+  +python-neutronclient-2.6.0.ebuild:
+  bup
 
 *python-neutronclient-2.4.0 (30 Apr 2015)
 



1.1  
dev-python/python-neutronclient/python-neutronclient-2.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.6.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.6.0.ebuild?rev=1.1content-type=text/plain

Index: python-neutronclient-2.6.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.6.0.ebuild,v
 1.1 2015/06/02 19:15:02 prometheanfire Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 )

inherit distutils-r1

DESCRIPTION=A client for the OpenStack Quantum API
HOMEPAGE=https://launchpad.net/neutron;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=Apache-2.0
SLOT=0
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
IUSE=doc test
REQUIRED_USE=test? ( doc )

DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
=dev-python/pbr-0.11[${PYTHON_USEDEP}]
dev-python/pbr-2.0[${PYTHON_USEDEP}]
test? (
=dev-python/hacking-0.10.0[${PYTHON_USEDEP}]
dev-python/hacking-0.11[${PYTHON_USEDEP}]
=dev-python/cliff-tablib-1.0[${PYTHON_USEDEP}]
=dev-python/coverage-3.6[${PYTHON_USEDEP}]
=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}]
=dev-python/mox3-0.7.0[${PYTHON_USEDEP}]
=dev-python/mock-1.0[${PYTHON_USEDEP}]
=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}]
=dev-python/oslotest-1.5.1[${PYTHON_USEDEP}]
=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
=dev-python/requests-mock-0.6.0[${PYTHON_USEDEP}]
=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
=dev-python/testtools-0.9.36[${PYTHON_USEDEP}]
dev-python/testtools-1.2.0[${PYTHON_USEDEP}]
=dev-python/tempest-lib-0.5.0[${PYTHON_USEDEP}]
)
doc? (
=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
!~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
dev-python/sphinx-1.3[${PYTHON_USEDEP}]
)

RDEPEND=
=dev-python/cliff-1.10.0[${PYTHON_USEDEP}]
=dev-python/iso8601-0.1.9[${PYTHON_USEDEP}]
=dev-python/netaddr-0.7.12[${PYTHON_USEDEP}]
=dev-python/oslo-i18n-1.5.0[${PYTHON_USEDEP}]
=dev-python/oslo-serialization-1.4.0[${PYTHON_USEDEP}]
=dev-python/oslo-utils-1.4.0[${PYTHON_USEDEP}]
=dev-python/requests-2.5.2[${PYTHON_USEDEP}]
=dev-python/python-keystoneclient-1.3.0[${PYTHON_USEDEP}]
=dev-python/simplejson-2.2.0[${PYTHON_USEDEP}]
=dev-python/six-1.9.0[${PYTHON_USEDEP}]
=dev-python/Babel-1.3[${PYTHON_USEDEP}]

python_prepare_all() {
# built in...
sed -i '/argparse/d' requirements.txt
distutils-r1_python_prepare_all
}

python_compile_all() {
use doc  ${PYTHON} setup.py build_sphinx
}

python_test() {
testr init
testr run || die tests failed under python2.7
flake8 neutronclient/tests || die run by flake8 over tests folder 
yielded error
}


[gentoo-commits] gentoo-x86 commit in dev-python/cliff-tablib: cliff-tablib-1.1.ebuild ChangeLog

2015-06-02 Thread Matt Thode (prometheanfire)
prometheanfire15/06/02 19:14:11

  Modified: cliff-tablib-1.1.ebuild ChangeLog
  Log:
  expanding tested python versions
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.2  dev-python/cliff-tablib/cliff-tablib-1.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff-tablib/cliff-tablib-1.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff-tablib/cliff-tablib-1.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff-tablib/cliff-tablib-1.1.ebuild?r1=1.1r2=1.2

Index: cliff-tablib-1.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/cliff-tablib/cliff-tablib-1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cliff-tablib-1.1.ebuild 23 Nov 2013 09:59:18 -  1.1
+++ cliff-tablib-1.1.ebuild 2 Jun 2015 19:14:11 -   1.2
@@ -1,9 +1,9 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/cliff-tablib/cliff-tablib-1.1.ebuild,v 1.1 
2013/11/23 09:59:18 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/cliff-tablib/cliff-tablib-1.1.ebuild,v 1.2 
2015/06/02 19:14:11 prometheanfire Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
 
 inherit distutils-r1
 



1.2  dev-python/cliff-tablib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff-tablib/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff-tablib/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliff-tablib/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cliff-tablib/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   23 Nov 2013 09:59:18 -  1.1
+++ ChangeLog   2 Jun 2015 19:14:11 -   1.2
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/cliff-tablib
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cliff-tablib/ChangeLog,v 1.1 
2013/11/23 09:59:18 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cliff-tablib/ChangeLog,v 1.2 
2015/06/02 19:14:11 prometheanfire Exp $
+
+  02 Jun 2015; Matthew Thode prometheanf...@gentoo.org
+  cliff-tablib-1.1.ebuild:
+  expanding tested python versions
 
 *cliff-tablib-1.1 (23 Nov 2013)
 






[gentoo-commits] proj/gentoolkit:gentoolkit commit in: bin/

2015-06-02 Thread Paul Varner
commit: e6f03e5fb6c26f9ada7fabf25126a135f5ef1dbf
Author: Paul Varner fuzzyray AT gentoo DOT org
AuthorDate: Tue Jun  2 19:30:31 2015 +
Commit: Paul Varner fuzzyray AT gentoo DOT org
CommitDate: Tue Jun  2 19:30:31 2015 +
URL:https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=e6f03e5f

euse: Fix 'grep: Unmatched ( or \(' errors with euse -i

 bin/euse | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/euse b/bin/euse
index c3f9f24..56fc917 100755
--- a/bin/euse
+++ b/bin/euse
@@ -771,7 +771,7 @@ showdesc() {
fi
# Fetch all the packages data using this flag
infos=$( grep -h :${1}  *- 
${PORTAGE_REPO_PATHS[@]/%//profiles/use.local.desc} 2 /dev/null \
-   | sed -re s/^([^:]+):(.*)  *- 
*(.+)/\1|\2|\3/g)
+   | sed -re s/^([^:]+):(.*)  *-  
*(.+)/\1|\2|\3/g)
OIFS=$IFS; IFS=$'\n'; infos=($infos); IFS=$OIFS;
for line in ${infos[@]}; do
OIFS=$IFS; IFS=|; line=($line); IFS=$OIFS



[gentoo-commits] gentoo-x86 commit in dev-lang/go: ChangeLog go-1.4.1.ebuild

2015-06-02 Thread William Hubbs (williamh)
williamh15/06/02 20:05:54

  Modified: ChangeLog
  Removed:  go-1.4.1.ebuild
  Log:
  remove old version
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x30C46538)

Revision  ChangesPath
1.74 dev-lang/go/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?rev=1.74view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?rev=1.74content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?r1=1.73r2=1.74

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   2 Jun 2015 15:37:10 -   1.73
+++ ChangeLog   2 Jun 2015 20:05:54 -   1.74
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/go
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v 1.73 2015/06/02 
15:37:10 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v 1.74 2015/06/02 
20:05:54 williamh Exp $
+
+  02 Jun 2015; William Hubbs willi...@gentoo.org
+  -files/go-1.2-no-Werror.patch, -go-1.4.1.ebuild:
+  remove old version
 
   02 Jun 2015; William Hubbs willi...@gentoo.org go-.ebuild:
   Remove include directory for #549814 thanks to Bohdan Trach






[gentoo-commits] gentoo-x86 commit in dev-lang/go/files: go-1.2-no-Werror.patch

2015-06-02 Thread William Hubbs (williamh)
williamh15/06/02 20:05:54

  Removed:  go-1.2-no-Werror.patch
  Log:
  remove old version
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x30C46538)



[gentoo-commits] dev/jmbsvicetto:master commit in: dev-db/phpmyadmin/

2015-06-02 Thread Jorge Manuel B. S. Vicetto
commit: a440f33e8afc01e1348b3578076681d476741c89
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) jmbsvicetto AT gentoo 
DOT org
AuthorDate: Tue Jun  2 20:48:10 2015 +
Commit: Jorge Manuel B. S. Vicetto jmbsvicetto AT gentoo DOT org
CommitDate: Tue Jun  2 20:49:10 2015 +
URL:https://gitweb.gentoo.org/dev/jmbsvicetto.git/commit/?id=a440f33e

Stop using depend.php eclass and add virtual/httpd-php dep directly. Silence 
repoman warnings.
Bump to 4.4.8 release.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) jmbsvicetto AT 
gentoo.org

 dev-db/phpmyadmin/Manifest |  2 +-
 13.1.ebuild = phpmyadmin-4.0.10.10-r1.ebuild} |  4 +-
 10.10.ebuild = phpmyadmin-4.1.14.8-r1.ebuild} |  4 +-
 ...1.14.8.ebuild = phpmyadmin-4.2.13.3-r1.ebuild} |  4 +-
 ...2.13.3.ebuild = phpmyadmin-4.3.13.1-r1.ebuild} |  4 +-
 dev-db/phpmyadmin/phpmyadmin-4.4.6.1.ebuild| 61 --
 ...min-4.3.13.1.ebuild = phpmyadmin-4.4.8.ebuild} |  4 +-
 7 files changed, 11 insertions(+), 72 deletions(-)

diff --git a/dev-db/phpmyadmin/Manifest b/dev-db/phpmyadmin/Manifest
index 61bbf01..af4f8ae 100644
--- a/dev-db/phpmyadmin/Manifest
+++ b/dev-db/phpmyadmin/Manifest
@@ -2,4 +2,4 @@ DIST phpMyAdmin-4.0.10.10-all-languages.tar.xz 4775140 SHA256 
5f457ad9ffce91
 DIST phpMyAdmin-4.1.14.8-all-languages.tar.xz 4881004 SHA256 
e2a2fee1658e3108048907a257b8f291fcfbd5840690e8f4711f9ea28233dce8 SHA512 
34d28f04d6a808565ecc3d7187b2719d1e25e55d6248e3ea516e5914bd5a70aab0d9c4df3525cb8e77b37949a78671235af46e22871fe26ba999aa01b01c44d2
 WHIRLPOOL 
a2e236a47154117c1bee3b9a51d4c3da9d1bd5834e3167174cbd80e562b5c14424b7e75de814f85d1ade1f6501b665a2af21cedd1c87be2ea6a9e151c0d8a2cf
 DIST phpMyAdmin-4.2.13.3-all-languages.tar.xz 5205440 SHA256 
2d78bd91dc90d95d9f21c7e41294f2995a36dbbe1e4d1209e972b1d855c4877e SHA512 
77ad296931666896613b7363c35c5546da66bddcda37fb31609ca5fb78f4b12241f6c976d1916a6491fbbc33d5f837163bcd0c0e0f227458d055076a971b640f
 WHIRLPOOL 
c4bb8f0689b0aa2ae7a67793f9c26b761e1a1e28e4e684f495815caf89ef527f4fced30aa53986c10d41ec000f3e295677739d5e73cbfc336466591c9fcf6a3e
 DIST phpMyAdmin-4.3.13.1-all-languages.tar.xz 5446988 SHA256 
d7484e2449453eae52613aae59e5f3a9342014aba7db88598ad6a90504ebfbd3 SHA512 
b08a41721876a4c7c8fcc162f0f1f43bbd67b4f87fc1c0668672addb8eb6f56695755401a2de2c75fc944b074f5187c6df942bec0ff03c16ad34c27b505b87a0
 WHIRLPOOL 
a72b7e4247bb7de68820d5583967b04b8dfd0917383f88d707b48235d119e0ad4fd45a04352dda0f43b11b2ba4def5a4648eca01e2f7ceabd3f788e429dc83ca
-DIST phpMyAdmin-4.4.6.1-all-languages.tar.xz 5635832 SHA256 
d423a81868f01b4ce77f90113d83df96590446acdbe8f00a46aeb670c4a9ac5c SHA512 
d25c63f9d354ae3f488d1837c710cfc5bacde3d6421d71eb96ff5868971132ea570aad9875f35d862d22d0318b5e16b208a2d6a7d542424ee2a04e329a619978
 WHIRLPOOL 
8c5f5e9349e801e328ddafe89322e457b89bfa4c5dbe593be9990ac3168a5d0cfada260ef275388b95f2c806952a682445baff23d6092dd5a66766681759172b
+DIST phpMyAdmin-4.4.8-all-languages.tar.xz 5651996 SHA256 
17637f61849a8f42c60775195a83dd13bb5e69c496d912e27dad0f9baddab1eb SHA512 
87ebbb6df38c61825460a210d9ddfd796a12c7a5bcc3496d31f52d479f801d0ab5c83220a89522688209438972eff2e9917a47dd44b3885348f7f3d98aeeffd9
 WHIRLPOOL 
894574745ae0f02c41028d0e601e09d3a7ce6c71307151c78549cb9430d3acbea634897be45cd28e4a37bbfc1afe49f47d320c74e878f7e00eb9ed2c01b333ad

diff --git a/dev-db/phpmyadmin/phpmyadmin-4.3.13.1.ebuild 
b/dev-db/phpmyadmin/phpmyadmin-4.0.10.10-r1.ebuild
similarity index 96%
copy from dev-db/phpmyadmin/phpmyadmin-4.3.13.1.ebuild
copy to dev-db/phpmyadmin/phpmyadmin-4.0.10.10-r1.ebuild
index 9367135..f5b3a1c 100644
--- a/dev-db/phpmyadmin/phpmyadmin-4.3.13.1.ebuild
+++ b/dev-db/phpmyadmin/phpmyadmin-4.0.10.10-r1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit eutils webapp depend.php
+inherit eutils webapp
 
 MY_PV=${PV/_/-}
 MY_P=phpMyAdmin-${MY_PV}-all-languages
@@ -23,10 +23,10 @@ RDEPEND=
dev-lang/php[mysqli]
dev-lang/php[mysql]
)
+   virtual/httpd-php:*
 
 
 need_httpd_cgi
-need_php_httpd
 
 S=${WORKDIR}/${MY_P}
 

diff --git a/dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild 
b/dev-db/phpmyadmin/phpmyadmin-4.1.14.8-r1.ebuild
similarity index 96%
rename from dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild
rename to dev-db/phpmyadmin/phpmyadmin-4.1.14.8-r1.ebuild
index 9367135..f5b3a1c 100644
--- a/dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild
+++ b/dev-db/phpmyadmin/phpmyadmin-4.1.14.8-r1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit eutils webapp depend.php
+inherit eutils webapp
 
 MY_PV=${PV/_/-}
 MY_P=phpMyAdmin-${MY_PV}-all-languages
@@ -23,10 +23,10 @@ RDEPEND=
dev-lang/php[mysqli]
dev-lang/php[mysql]
)
+   virtual/httpd-php:*
 
 
 need_httpd_cgi
-need_php_httpd
 
 S=${WORKDIR}/${MY_P}
 

diff --git a/dev-db/phpmyadmin/phpmyadmin-4.1.14.8.ebuild 
b/dev-db/phpmyadmin/phpmyadmin-4.2.13.3-r1.ebuild
similarity index 96%
rename from dev-db/phpmyadmin/phpmyadmin-4.1.14.8.ebuild

[gentoo-commits] proj/kde:master commit in: Documentation/package.accept_keywords/.kde-applications-live/, ...

2015-06-02 Thread Johannes Huber
commit: 6a7d159fddbac75e2453c1ee21a068e8029f8212
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Tue Jun  2 20:12:21 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue Jun  2 20:49:18 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6a7d159f

[Documentation] Add KDE Applications 5 live keywords

 Documentation/maintainers/regenerate-files | 29 
 .../.kde-applications-live.base/_HEADER_   |  2 +
 .../.kde-applications-live.base/kde-baseapps-live  |  1 +
 .../.kde-applications-live.base/kdeadmin-live  |  1 +
 .../.kde-applications-live.base/kdeedu-live|  1 +
 .../.kde-applications-live.base/kdegames-live  |  1 +
 .../.kde-applications-live.base/kdegraphics-live   |  1 +
 .../.kde-applications-live.base/kdemultimedia-live |  1 +
 .../.kde-applications-live.base/kdenetwork-live|  1 +
 .../.kde-applications-live.base/kdesdk-live|  1 +
 .../.kde-applications-live.base/kdetoys-live   |  1 +
 .../.kde-applications-live.base/kdeutils-live  |  1 +
 .../.kde-applications-live.base/more-deps  |  0
 .../.kde-applications-live/_HEADER_|  2 +
 .../.kde-applications-live/kde-baseapps-live   |  3 +
 .../.kde-applications-live/kdeadmin-live   |  1 +
 .../.kde-applications-live/kdeedu-live | 19 +
 .../.kde-applications-live/kdegames-live   | 22 ++
 .../.kde-applications-live/kdegraphics-live|  2 +
 .../.kde-applications-live/kdemultimedia-live  |  2 +
 .../.kde-applications-live/kdenetwork-live | 16 +
 .../.kde-applications-live/kdesdk-live |  6 ++
 .../.kde-applications-live/kdetoys-live|  1 +
 .../.kde-applications-live/kdeutils-live   |  5 ++
 .../.kde-applications-live/more-deps   |  0
 .../kde-applications-live.keywords | 80 ++
 Documentation/package.mask/kde-applications-live   | 80 ++
 .../package.unmask/.kde-applications-live/_HEADER_ |  2 +
 .../.kde-applications-live/kde-baseapps-live   |  1 +
 .../.kde-applications-live/kdeadmin-live   |  1 +
 .../.kde-applications-live/kdeedu-live |  1 +
 .../.kde-applications-live/kdegames-live   |  1 +
 .../.kde-applications-live/kdegraphics-live|  1 +
 .../.kde-applications-live/kdemultimedia-live  |  1 +
 .../.kde-applications-live/kdenetwork-live |  1 +
 .../.kde-applications-live/kdesdk-live |  1 +
 .../.kde-applications-live/kdetoys-live|  1 +
 .../.kde-applications-live/kdeutils-live   |  1 +
 Documentation/package.unmask/kde-applications-live | 80 ++
 39 files changed, 372 insertions(+)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index a4ad4b6..1d37cee 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -18,6 +18,9 @@ KF_RELEASE=${KF_RELEASE:-5.10}
 PLASMA_RELEASES=5.3
 PLASMA_RELEASE=${PLASMA_RELEASE:-5.3}
 
+APPS_RELEASES=
+APPS_RELEASE=${APPS_RELEASE:-15.08}
+
 # regenerate keywords
 pushd ../package.accept_keywords/  /dev/null
 for release in $KDE_RELEASES; do
@@ -78,6 +81,17 @@ if [[ -d .kde-plasma-live.base ]]; then
cat .kde-plasma-live/*  kde-plasma-live.keywords
 fi
 
+if [[ -d .kde-applications-live.base ]]; then
+   rm -rf .kde-applications-live
+   mkdir -p .kde-applications-live
+   echo -e ${HEADER}  kde-applications-live.keywords
+   for file in .kde-applications-live.base/*; do
+   newfile=.kde-applications-live/$(basename ${file})
+   sed '/^~.*[.-]$/s/$/ **/' ${file}  ${newfile}
+   done
+   cat .kde-applications-live/*  kde-applications-live.keywords
+fi
+
 # keywords for miscleanous packages from package.unmask/
 for misc in kde-extras-live; do
if [[ -f ../package.unmask/${misc} ]]; then
@@ -109,6 +123,13 @@ for release in $PLASMA_RELEASES live; do
cat .kde-plasma-${release}/*  kde-plasma-${release}
fi
 done
+
+for release in $APPS_RELEASES live; do
+   echo -e ${HEADER}  kde-applications-${release}
+   if [[ -d .kde-applications-${release} ]]; then
+   cat .kde-applications-${release}/*  
kde-applications-${release}
+   fi
+done
 popd  /dev/null
 
 # regenerate mask entries (base for package mask)
@@ -136,6 +157,14 @@ for release in $PLASMA_RELEASES live; do
sed -i kde-plasma-${release} -e 
/^kde-plasma\/.*-5\..\.50:5$/{s/-5\..\.50/-${release}/;s/^/=/}
fi
 done
+
+for release in $APPS_RELEASES live; do
+   echo -e ${HEADER}  kde-applications-${release}
+   if [[ -d ../package.unmask/.kde-applications-${release} ]]; then
+   cat ../package.unmask/.kde-applications-${release}/*  
kde-applications-${release}
+   sed -i kde-applications-${release} -e 

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

2015-06-02 Thread Johannes Huber
commit: 39b9680978fdbeb1fb0f797f0607824938784371
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Mon Jun  1 20:03:45 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue Jun  2 20:48:43 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=39b96809

[sets] Update kdeedu-live

 sets/kdeedu-live | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/sets/kdeedu-live b/sets/kdeedu-live
index 9af6bf8..4bfbe1b 100644
--- a/sets/kdeedu-live
+++ b/sets/kdeedu-live
@@ -1,5 +1,6 @@
 ~kde-apps/analitza-
 ~kde-apps/blinken-
+~kde-apps/cantor-
 ~kde-apps/kalgebra-
 ~kde-apps/kanagram-
 ~kde-apps/kbruch-
@@ -9,5 +10,10 @@
 ~kde-apps/kig-
 ~kde-apps/kiten-
 ~kde-apps/klettres-
+~kde-apps/kmplott-
+~kde-apps/kstars-
 ~kde-apps/kturtle-
+~kde-apps/kwordquiz-
 ~kde-apps/parley-
+~kde-apps/rocs-
+~kde-apps/step-



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

2015-06-02 Thread Johannes Huber
commit: e0d6adc77f102e2e5f741bcff5609c7d49deb81a
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Tue Jun  2 20:19:20 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue Jun  2 20:48:43 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e0d6adc7

[sets] Add missing new line

 sets/kdegraphics-live | 2 +-
 sets/kdenetwork-live  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sets/kdegraphics-live b/sets/kdegraphics-live
index 420600e..ec69648 100644
--- a/sets/kdegraphics-live
+++ b/sets/kdegraphics-live
@@ -1,2 +1,2 @@
 ~kde-apps/gwenview-
-~kde-apps/kruler-
\ No newline at end of file
+~kde-apps/kruler-

diff --git a/sets/kdenetwork-live b/sets/kdenetwork-live
index 3803235..138861e 100644
--- a/sets/kdenetwork-live
+++ b/sets/kdenetwork-live
@@ -13,4 +13,4 @@
 ~kde-apps/ktp-send-file-
 ~kde-apps/ktp-text-ui-
 ~kde-apps/plasma-telepathy-meta-
-~kde-apps/signon-kwallet-extension-
\ No newline at end of file
+~kde-apps/signon-kwallet-extension-



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

2015-06-02 Thread Johannes Huber
commit: e57b43f959f17598e381c4b9d0ab1bd543bd1036
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Tue Jun  2 19:53:39 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue Jun  2 20:48:43 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e57b43f9

[sets] Update kdemultimedia-live

 sets/kdemultimedia-live | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sets/kdemultimedia-live b/sets/kdemultimedia-live
index abd605b..c8bbd46 100644
--- a/sets/kdemultimedia-live
+++ b/sets/kdemultimedia-live
@@ -1 +1,2 @@
+~kde-apps/dragon-
 ~kde-apps/kdenlive-



[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog s6.eclass

2015-06-02 Thread William Hubbs (williamh)
williamh15/06/02 21:08:48

  Modified: ChangeLog
  Added:s6.eclass
  Log:
  Add s6.eclass to handle s6 services

Revision  ChangesPath
1.1635   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1635view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1635content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1634r2=1.1635

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1634
retrieving revision 1.1635
diff -u -r1.1634 -r1.1635
--- ChangeLog   31 May 2015 15:51:21 -  1.1634
+++ ChangeLog   2 Jun 2015 21:08:48 -   1.1635
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1634 2015/05/31 
15:51:21 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1635 2015/06/02 
21:08:48 williamh Exp $
+
+  02 Jun 2015; William Hubbs willi...@gentoo.org +s6.eclass:
+  Add s6.eclass for handling s6 services
 
   31 May 2015; Manuel Rüger mr...@gentoo.org kde5.eclass:
   Sync verbosely with kde overlay. Drop fetch restriction for unpublished



1.1  eclass/s6.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/s6.eclass?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/s6.eclass?rev=1.1content-type=text/plain

Index: s6.eclass
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/s6.eclass,v 1.1 2015/06/02 21:08:48 
williamh Exp $

# @ECLASS: s6.eclass
# @MAINTAINER:
# William Hubbs willi...@gentoo.org
# @BLURB: helper functions to install s6 services
# @DESCRIPTION:
# This eclass provides helpers to install s6 services.
# @EXAMPLE:
#
# @CODE
# inherit s6
#
# src_install() {
#   ...
#   s6_install_service myservice ${FILESDIR}/run-s6 
${FILESDIR}/finish-s6
...
#   If you want a service to be logged, install the log service as
#   shown here.
#   s6_install_service myservice/log ${FILESDIR}/log-run-s6 \
#   ${FILESDIR}/log-finish-s6
#   ...
# }
# @CODE

case ${EAPI:-0} in
5) ;;
*) die ${ECLASS}.eclass: API in EAPI ${EAPI} not yet established
esac

# @FUNCTION: _s6_get_servicedir
# @INTERNAL
# @DESCRIPTION:
# Get unprefixed servicedir.
_s6_get_servicedir() {
echo /var/svc.d
}

# @FUNCTION: s6_get_servicedir
# @DESCRIPTION:
# Output the path for the s6 service directory (not including ${D}).
s6_get_servicedir() {
debug-print-function ${FUNCNAME} ${@}

echo ${EPREFIX}$(_s6_get_servicedir)
}

# @FUNCTION: s6_install_service
# @USAGE: servicename run finish
# @DESCRIPTION:
# Install an s6 service.
# servicename is the name of the service.
# run is the run script for the service.
# finish is the optional finish script for the service.
s6_install_service() {
debug-print-function ${FUNCNAME} ${@}

local name=$1
local run=$2
local finish=$3

[[ $name ]] ||
die ${ECLASS}.eclass: you must specify the s6 service name
[[ $run ]] ||
die ${ECLASS}.eclass: you must specify the s6 service run 
script

(
local servicepath=$(_s6_get_servicedir)/$name
exeinto $servicepath
newexe $run run
[[ $finish ]]  newexe $finish finish
)
}

# @FUNCTION: s6_service_down
# @USAGE: servicename
# @DESCRIPTION:
# Install the down flag so this service will not be started by
# default.
# servicename is the name of the service.
s6_service_down() {
debug-print-function ${FUNCNAME} ${@}

local name=$1

[[ $name ]] ||
die ${ECLASS}.eclass: you must specify the s6 service name

(
touch $T/down || die
local servicepath=$(_s6_get_servicedir)/$name
insinto $servicepath
doins $T/down
)
}

# @FUNCTION: s6_service_nosetsid
# @USAGE: servicename
# @DESCRIPTION:
# Install the nosetsid flag so this service will not be made a session
# leader.
# servicename is the name of the service.
s6_service_nosetsid() {
debug-print-function ${FUNCNAME} ${@}

local name=$1

[[ $name ]] ||
die ${ECLASS}.eclass: you must specify the s6 service name

(
touch $T/nosetsid || die
local servicepath=$(_s6_get_servicedir)/$name
insinto $servicepath
doins $T/nosetsid
)
}






[gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/glpi/

2015-06-02 Thread Jorge Manuel B. S. Vicetto
commit: e32bcac1d1e48c331fa4b06876b35332419007d8
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) jmbsvicetto AT gentoo 
DOT org
AuthorDate: Tue Jun  2 20:03:27 2015 +
Commit: Jorge Manuel B. S. Vicetto jmbsvicetto AT gentoo DOT org
CommitDate: Tue Jun  2 20:03:27 2015 +
URL:https://gitweb.gentoo.org/dev/jmbsvicetto.git/commit/?id=e32bcac1

Drop old versions.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) jmbsvicetto AT 
gentoo.org

 www-apps/glpi/Manifest|  4 
 www-apps/glpi/glpi-0.72.3.ebuild  | 36 
 www-apps/glpi/glpi-0.72.4.ebuild  | 36 
 www-apps/glpi/glpi-0.83.7.ebuild  | 36 
 www-apps/glpi/glpi-0.83.91.ebuild | 36 
 5 files changed, 148 deletions(-)

diff --git a/www-apps/glpi/Manifest b/www-apps/glpi/Manifest
index e3e4d05..5093cfb 100644
--- a/www-apps/glpi/Manifest
+++ b/www-apps/glpi/Manifest
@@ -1,7 +1,3 @@
-DIST glpi-0.72.3.tar.gz 2798927 SHA256 
b34016d16b53f09123b96cf0f798373b342d6efc50720953ff79b7f07689ea01
-DIST glpi-0.72.4.tar.gz 2796004 SHA256 
f1865ae012467108f0531ad38a9c938f3bd5d4253c9ff4c92ddda752feac92bc
-DIST glpi-0.83.7.tar.gz 4493150 SHA256 
6558e7ed3a1ccaa8dfc2804553b1e7800526b025fda26dfddd27b02908ff2697 SHA512 
a935143f87d2dd087dceea0f2983184868d445563be885a79ef70017131b5e24d6eaaf1ad42eb9ee23debb983a95601479a07fdf63969dbd9d683f04f15025b2
 WHIRLPOOL 
7a13517673ada245aa27dc0176fbe1a475c6d662c0750da4eeffe30cdc51b3d7b5abd0726a8b632bccc27cd38e744092d17da165f3a20b7e9aafbdef7815d42b
-DIST glpi-0.83.91.tar.gz 4490605 SHA256 
41f3b612fc0fc7d077ee8b13f406fd47093860065a90db4bf2d8b4397fc45f8e SHA512 
d4dcae48403e6417600ae4e6cc4b63715b79525096726d7af24a654d33c98b87df615ee2b2afd5b115e57c9cfea511cda993839b6a29b2498611b311f72a1502
 WHIRLPOOL 
60cf8f6f1c70d528b09fb998915925e34b7c91750d912027db8f2d79efd99d3e629f3eb2dcefe583a20c150191e24c035b70bfb6f9d753b7e590bb9c7db50fd9
 DIST glpi-0.84.8.tar.gz 10824236 SHA256 
dab6dd1d56e8f8307d04386a4a089d18aba8424302dcdc65f5db7541b083ef52 SHA512 
f4157aa7858cea43dcbd7d3d762e3ad1a47c03fdbffa9796cb57b8cafea5d0650498116332a6e885ccc8a9bacf342319980fdd99bff6165ecb09aef5d7c0b9a0
 WHIRLPOOL 
9f9c46ca96612eb286ddaf90b1ba5ea028bf8b4604dac97fbc722c2e4f57a9cb20e1c80eb0bc2e7ca330b4f80993ab37bdb50d242e3c74890b177fad6efac4fc
 DIST glpi-0.85.4.tar.gz 18044470 SHA256 
16ade0c6516362b938f85616d1ad0312610a394f23cbd9d64a0b464cc3663d52 SHA512 
c0448ca0dbabc9cb1fa827dd83ac3b9ec9d42ec16d9f5ec354ba6c1c446dde1c73adf3fcb3389216308793303a26e5dc64bf035281a5b4964ce06d35cc59cdbb
 WHIRLPOOL 
5be03babf94d495b1f0974332041063b87d7ca230eb6968d6d25e680293cc995058a7dc9540c070a99f149fb874b619c2f974708ce02ba5f97c84e475ad8bb1a
 DIST glpi-0.85.tar.gz 17925183 SHA256 
4ff2087ed21b5b131b212ce7221d50ccd220dfc7ade574f97185bf35f4f229f4 SHA512 
bfdccd61541404d02f120703ca90d70f6bf8b22f5d75d7f2fedb1b64dc60587236cc781669714717ef2ebb7839ed6b35d5da77c16bb939991659166c7433a360
 WHIRLPOOL 
321fd7e481c81243fdb5094996100b0ab58e6a1f266efccdcfb1ab05b2fdbf943b9b82a85e06774d5510e71559aa9bfce6f1c279b8263a61ae1d78165347ecd5

diff --git a/www-apps/glpi/glpi-0.72.3.ebuild b/www-apps/glpi/glpi-0.72.3.ebuild
deleted file mode 100644
index 025f066..000
--- a/www-apps/glpi/glpi-0.72.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit webapp
-
-DESCRIPTION=GLPI is the Information Resource-Manager with an additional 
Administration- Interface.
-HOMEPAGE=http://www.glpi-project.org/;
-SRC_URI=https://forge.indepnet.net/attachments/download/594/${P}.tar.gz;
-LICENSE=GPL-2
-KEYWORDS=~amd64 ~x86
-IUSE=
-
-DEPEND=
-   app-admin/webapp-config
-
-RDEPEND=
-   dev-db/mysql
-   dev-lang/php
-
-S=${WORKDIR}/${PN}
-
-src_install() {
-
-   webapp_src_preinst
-
-   einfo Installing files
-   insinto ${MY_HTDOCSDIR}
-   doins -r .
-
-   webapp_serverowned -R ${MY_HTDOCSDIR}
-
-   webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
-
-   webapp_src_install
-}

diff --git a/www-apps/glpi/glpi-0.72.4.ebuild b/www-apps/glpi/glpi-0.72.4.ebuild
deleted file mode 100644
index e6436e0..000
--- a/www-apps/glpi/glpi-0.72.4.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit webapp
-
-DESCRIPTION=GLPI is the Information Resource-Manager with an additional 
Administration- Interface.
-HOMEPAGE=http://www.glpi-project.org/;
-SRC_URI=https://forge.indepnet.net/attachments/download/597/${P}.tar.gz;
-LICENSE=GPL-2
-KEYWORDS=~amd64 ~x86
-IUSE=
-
-DEPEND=
-   app-admin/webapp-config
-
-RDEPEND=
-   dev-db/mysql
-   dev-lang/php
-
-S=${WORKDIR}/${PN}
-
-src_install() {
-
-   webapp_src_preinst
-
-   einfo Installing files
-   insinto ${MY_HTDOCSDIR}
-

[gentoo-commits] proj/mozilla:master commit in: eclass/

2015-06-02 Thread Ian Stakenvicius
commit: 9b9caf4e21803660ed73770fb0f4b66a171f2fbb
Author: Ian Stakenvicius axs AT gentoo DOT org
AuthorDate: Tue Jun  2 19:48:43 2015 +
Commit: Ian Stakenvicius axs AT gentoo DOT org
CommitDate: Tue Jun  2 19:48:43 2015 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=9b9caf4e

sync eclasses with updated versions from the portage tree

 eclass/mozconfig-v5.31.eclass | 13 +
 eclass/mozconfig-v5.33.eclass | 17 ++---
 eclass/mozconfig-v5.36.eclass |  5 +++--
 3 files changed, 22 insertions(+), 13 deletions(-)

diff --git a/eclass/mozconfig-v5.31.eclass b/eclass/mozconfig-v5.31.eclass
index 297c072..4a6020c 100644
--- a/eclass/mozconfig-v5.31.eclass
+++ b/eclass/mozconfig-v5.31.eclass
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-v5.31.eclass,v 1.2 
2014/12/03 23:10:06 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-v5.31.eclass,v 1.4 
2015/05/27 19:00:31 axs Exp $
 #
 # @ECLASS: mozconfig-v5.31.eclass
 # @MAINTAINER:
@@ -78,12 +78,17 @@ RDEPEND==app-text/hunspell-1.2
x11-libs/libXrender
x11-libs/libXt
system-cairo? ( =x11-libs/cairo-1.12[X] =x11-libs/pixman-0.19.2 )
-   system-icu? ( =dev-libs/icu-51.1 )
+   system-icu? ( =dev-libs/icu-51.1:= )
system-jpeg? ( =media-libs/libjpeg-turbo-1.2.1 )
system-sqlite? ( =dev-db/sqlite-3.8.4.2:3[secure-delete,debug=] )
-   system-libvpx? ( =media-libs/libvpx-1.3.0* )
 
 
+# firefox-31.0-patches-0.3 and above carry a patch making newer libvpx 
compatible
+case ${PATCHFF##*31.0-patches-} in
+   0.3)RDEPEND+= system-libvpx? ( =media-libs/libvpx-1.3.0 ) ;;
+   *)  RDEPEND+= system-libvpx? ( =media-libs/libvpx-1.3.0* ) ;;
+esac
+
 if [[ -n ${MOZCONFIG_OPTIONAL_WIFI} ]]; then
if [[ ${MOZCONFIG_OPTIONAL_WIFI} = enabled ]]; then
IUSE+= +wifi

diff --git a/eclass/mozconfig-v5.33.eclass b/eclass/mozconfig-v5.33.eclass
index 7e604a3..dd4ee05 100644
--- a/eclass/mozconfig-v5.33.eclass
+++ b/eclass/mozconfig-v5.33.eclass
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-v5.33.eclass,v 1.5 
2015/05/28 06:37:16 polynomial-c Exp $
 #
 # @ECLASS: mozconfig-v5.33.eclass
 # @MAINTAINER:
@@ -21,7 +21,8 @@
 inherit multilib flag-o-matic toolchain-funcs mozcoreconf-v3
 
 case ${EAPI} in
-   0|1|2|3|4) die EAPI=${EAPI} not supported
+   0|1|2|3|4) die EAPI=${EAPI} not supported ;;
+   *) die This eclass has been disabled and will be removed on 
2015-06-30.  If you need it, copy to your overlay and remove this line. ;;
 esac
 
 # @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_WIFI
@@ -53,7 +54,6 @@ IUSE=${IUSE} dbus debug gstreamer pulseaudio selinux 
startup-notification syste
 
 RDEPEND==app-text/hunspell-1.2
dev-libs/atk
-   dev-libs/expat
=dev-libs/libevent-1.4.7
=x11-libs/cairo-1.10[X]
=x11-libs/gtk+-2.14:2
@@ -79,11 +79,14 @@ RDEPEND==app-text/hunspell-1.2
=media-plugins/gst-plugins-libav-1.1.0_pre20130128-r1:1.0
)
x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
x11-libs/libXext
x11-libs/libXrender
x11-libs/libXt
system-cairo? ( =x11-libs/cairo-1.12[X] =x11-libs/pixman-0.19.2 )
-   system-icu? ( =dev-libs/icu-51.1:= )
+   system-icu? ( =dev-libs/icu-51.1 )
system-jpeg? ( =media-libs/libjpeg-turbo-1.2.1 )
system-sqlite? ( =dev-db/sqlite-3.8.5:3[secure-delete,debug=] )
system-libvpx? ( =media-libs/libvpx-1.3.0*[postproc] )
@@ -138,8 +141,7 @@ mozconfig_config() {
mozconfig_annotate 'system_libs' \
--with-system-zlib \
--enable-pango \
-   --enable-svg \
-   --with-system-bz2
+   --enable-svg
 
mozconfig_annotate '' --enable-default-toolkit=cairo-gtk2
 
@@ -200,6 +202,7 @@ mozconfig_config() {
mozconfig_annotate '' --disable-gconf
 
# We must force-enable jemalloc 3 via .mozconfig
+   # Except this doesn't actually enable jemalloc3.
echo export MOZ_JEMALLOC=1  ${S}/.mozconfig || die
mozconfig_annotate '' --enable-jemalloc
mozconfig_annotate '' --enable-replace-malloc

diff --git a/eclass/mozconfig-v5.36.eclass b/eclass/mozconfig-v5.36.eclass
index a79eb99..1137f24 100644
--- a/eclass/mozconfig-v5.36.eclass
+++ b/eclass/mozconfig-v5.36.eclass
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-v5.36.eclass,v 1.1 
2015/02/26 20:41:10 axs Exp $

[gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/drupal/

2015-06-02 Thread Jorge Manuel B. S. Vicetto
commit: 08c0d8f546d3270981361db2325f900c8c208d22
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) jmbsvicetto AT gentoo 
DOT org
AuthorDate: Tue Jun  2 20:01:02 2015 +
Commit: Jorge Manuel B. S. Vicetto jmbsvicetto AT gentoo DOT org
CommitDate: Tue Jun  2 20:01:02 2015 +
URL:https://gitweb.gentoo.org/dev/jmbsvicetto.git/commit/?id=08c0d8f5

Add drupal-8.0.0_beta11 release.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) jmbsvicetto AT 
gentoo.org

 www-apps/drupal/Manifest | 1 +
 .../drupal/{drupal-8.0.0_beta10.ebuild = drupal-8.0.0_beta11.ebuild}| 0
 2 files changed, 1 insertion(+)

diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest
index 46b6801..d36c2f4 100644
--- a/www-apps/drupal/Manifest
+++ b/www-apps/drupal/Manifest
@@ -1,4 +1,5 @@
 DIST drupal-6.35.tar.gz 1112024 SHA256 
52940d903f34df09e4a52af9038ad583b39574269e7806c67260843598a8229a SHA512 
7194191b73ddf8546ac8f2fc542b9a8ced69664eedfb0c6b85dc4d717bc6e6c4b08c30c67424f2f318025c2d702179f0b11aeea7462bf72fd0bb60be7a3e697f
 WHIRLPOOL 
3e38df209f23a1710369295016bf65cb1467c3b99091d38fc10592a71fd69f6bce7f63635acc4ccb8ab84b968987b9b556a39ef705a6d1f594e539713d436f81
 DIST drupal-7.37.tar.gz 3244291 SHA256 
652e051faeec46d2c3e327758739e488bd77ef33ff94a48fb292e244df2a8f70 SHA512 
ffc4c4f4371accc0d552208b8dd4c1145c82a29778a72ca6ead099b5a22874455825d84ff3bee60723404b7cb7450737898f229f42621f7fffe84b726d323195
 WHIRLPOOL 
54a5a03238a0366c7613fe4f75382020c682643d03bfdebfc28cba1d9137004620bacae88035c97bf563a44ee0bbaefb1baaf40f2ebd18473bc99441f3171afe
 DIST drupal-8.0.0-beta10.tar.gz 10296679 SHA256 
ebbac899522099fe40844d423b02ff43451f1de4aa03852d3e529603591d309b SHA512 
4183fb3fdb258f4d9ece79a1b87dd709c60558bd3ba3bc3e9ac97ebbab6dde4481669ceda3c5bd2615f972b804bd35afa03ae8e6d995958ca665fa144a3b1f18
 WHIRLPOOL 
9f3d158dab36cbb6fd533f800811165c2d49b9364a7e80f8fe1e7c83efdd755d908cc134a990becbe858f8d9661e70ad2cd482377657ceac4ae8270ce8c5390d
+DIST drupal-8.0.0-beta11.tar.gz 10500627 SHA256 
0c7a6b84dc6019bc5afcf3066aa9c2a8a5cd4147a03d48314728156cc434bda1 SHA512 
bdcac51cb8379711245d7e15a3bc879634c6c88af6799525f7dda3cd5be799193a3e4151d902569f9f008d89f309f7bca2180ebca4cb1f21bce87ac744461748
 WHIRLPOOL 
44b1a8670c5dfbf9d5208e5c5dc75a3e4c4a674befa1bd64b10409989d72da01e8e0420d9dc1e7d39b633fa49b80166c0e812f2deeb13304f4850fc777e1b36b
 DIST drupal-8.0.0-beta4.tar.gz 9555745 SHA256 
e50aecb08f79c1a11f0a9858dc493d7cc3a0b6293ed74155c5d89fd7ad4441ac SHA512 
0b021f4be93059e67b29e05ff61f33c9c18b4cb27d9b0bcac7525e5c7f02b3b0f187c08602a1961fdddc9fbea2e83e5be73190e13011bd0048461ba30338a04c
 WHIRLPOOL 
33ceebf2a657c8de398de51f550b9ad3e3739560a86ecb8356e8deeedae80ab95c76770fb11280d4908ef55e6191e9a2bfae44c71ef85ea2423752c8466fa753

diff --git a/www-apps/drupal/drupal-8.0.0_beta10.ebuild 
b/www-apps/drupal/drupal-8.0.0_beta11.ebuild
similarity index 100%
rename from www-apps/drupal/drupal-8.0.0_beta10.ebuild
rename to www-apps/drupal/drupal-8.0.0_beta11.ebuild



[gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/glpi/

2015-06-02 Thread Jorge Manuel B. S. Vicetto
commit: a5e4d3539c99bb745754b2f6265eb3dedadf0a9f
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) jmbsvicetto AT gentoo 
DOT org
AuthorDate: Tue Jun  2 20:02:33 2015 +
Commit: Jorge Manuel B. S. Vicetto jmbsvicetto AT gentoo DOT org
CommitDate: Tue Jun  2 20:02:33 2015 +
URL:https://gitweb.gentoo.org/dev/jmbsvicetto.git/commit/?id=a5e4d353

Add glpi 0.85.4 release.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) jmbsvicetto AT 
gentoo.org

 www-apps/glpi/Manifest   |  1 +
 www-apps/glpi/glpi-0.85.4.ebuild | 50 
 2 files changed, 51 insertions(+)

diff --git a/www-apps/glpi/Manifest b/www-apps/glpi/Manifest
index fe09eb7..e3e4d05 100644
--- a/www-apps/glpi/Manifest
+++ b/www-apps/glpi/Manifest
@@ -3,4 +3,5 @@ DIST glpi-0.72.4.tar.gz 2796004 SHA256 
f1865ae012467108f0531ad38a9c938f3bd5d4253
 DIST glpi-0.83.7.tar.gz 4493150 SHA256 
6558e7ed3a1ccaa8dfc2804553b1e7800526b025fda26dfddd27b02908ff2697 SHA512 
a935143f87d2dd087dceea0f2983184868d445563be885a79ef70017131b5e24d6eaaf1ad42eb9ee23debb983a95601479a07fdf63969dbd9d683f04f15025b2
 WHIRLPOOL 
7a13517673ada245aa27dc0176fbe1a475c6d662c0750da4eeffe30cdc51b3d7b5abd0726a8b632bccc27cd38e744092d17da165f3a20b7e9aafbdef7815d42b
 DIST glpi-0.83.91.tar.gz 4490605 SHA256 
41f3b612fc0fc7d077ee8b13f406fd47093860065a90db4bf2d8b4397fc45f8e SHA512 
d4dcae48403e6417600ae4e6cc4b63715b79525096726d7af24a654d33c98b87df615ee2b2afd5b115e57c9cfea511cda993839b6a29b2498611b311f72a1502
 WHIRLPOOL 
60cf8f6f1c70d528b09fb998915925e34b7c91750d912027db8f2d79efd99d3e629f3eb2dcefe583a20c150191e24c035b70bfb6f9d753b7e590bb9c7db50fd9
 DIST glpi-0.84.8.tar.gz 10824236 SHA256 
dab6dd1d56e8f8307d04386a4a089d18aba8424302dcdc65f5db7541b083ef52 SHA512 
f4157aa7858cea43dcbd7d3d762e3ad1a47c03fdbffa9796cb57b8cafea5d0650498116332a6e885ccc8a9bacf342319980fdd99bff6165ecb09aef5d7c0b9a0
 WHIRLPOOL 
9f9c46ca96612eb286ddaf90b1ba5ea028bf8b4604dac97fbc722c2e4f57a9cb20e1c80eb0bc2e7ca330b4f80993ab37bdb50d242e3c74890b177fad6efac4fc
+DIST glpi-0.85.4.tar.gz 18044470 SHA256 
16ade0c6516362b938f85616d1ad0312610a394f23cbd9d64a0b464cc3663d52 SHA512 
c0448ca0dbabc9cb1fa827dd83ac3b9ec9d42ec16d9f5ec354ba6c1c446dde1c73adf3fcb3389216308793303a26e5dc64bf035281a5b4964ce06d35cc59cdbb
 WHIRLPOOL 
5be03babf94d495b1f0974332041063b87d7ca230eb6968d6d25e680293cc995058a7dc9540c070a99f149fb874b619c2f974708ce02ba5f97c84e475ad8bb1a
 DIST glpi-0.85.tar.gz 17925183 SHA256 
4ff2087ed21b5b131b212ce7221d50ccd220dfc7ade574f97185bf35f4f229f4 SHA512 
bfdccd61541404d02f120703ca90d70f6bf8b22f5d75d7f2fedb1b64dc60587236cc781669714717ef2ebb7839ed6b35d5da77c16bb939991659166c7433a360
 WHIRLPOOL 
321fd7e481c81243fdb5094996100b0ab58e6a1f266efccdcfb1ab05b2fdbf943b9b82a85e06774d5510e71559aa9bfce6f1c279b8263a61ae1d78165347ecd5

diff --git a/www-apps/glpi/glpi-0.85.4.ebuild b/www-apps/glpi/glpi-0.85.4.ebuild
new file mode 100644
index 000..d0c85d5
--- /dev/null
+++ b/www-apps/glpi/glpi-0.85.4.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+inherit webapp
+
+DESCRIPTION=GLPI is the Information Resource-Manager with an additional 
Administration- Interface.
+HOMEPAGE=http://www.glpi-project.org/;
+SRC_URI=https://forge.indepnet.net/attachments/download/2020/${P}.tar.gz;
+LICENSE=GPL-2
+KEYWORDS=~amd64 ~x86
+IUSE=
+
+DEPEND=
+   app-admin/webapp-config
+
+RDEPEND=
+   dev-db/mysql
+   dev-lang/php
+
+S=${WORKDIR}/${PN}
+
+pkg_config () {
+
+   webapp_pkg_setup
+}
+
+src_install () {
+
+   webapp_src_preinst
+
+   einfo Installing files
+   insinto ${MY_HTDOCSDIR}
+   doins -r .
+
+   webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
+   webapp_src_install
+}
+
+pkg_preinst () {
+
+   fowners -R root:apache ${MY_HTDOCSDIR}
+   fperms -R g-w,o-rwx ${MY_HTDOCSDIR}
+
+   # Allow writing to the config and files directories
+   for dir in config files ; do
+
+   fperms -R g+w ${MY_HTDOCSDIR}/${dir}
+   done
+}



[gentoo-commits] gentoo-x86 commit in dev-java/tomcat-jstl-impl/files: - New directory

2015-06-02 Thread Patrice Clement (monsieurp)
monsieurp15/06/02 23:16:44

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-java/tomcat-jstl-impl/files added to 
the repository



[gentoo-commits] gentoo-x86 commit in dev-java/tomcat-jstl-impl: - New directory

2015-06-02 Thread Patrice Clement (monsieurp)
monsieurp15/06/02 23:15:32

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-java/tomcat-jstl-impl added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-java/tomcat-jstl-spec/files: - New directory

2015-06-02 Thread Patrice Clement (monsieurp)
monsieurp15/06/02 23:17:00

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-java/tomcat-jstl-spec/files added to 
the repository



[gentoo-commits] gentoo-x86 commit in net-irc/konversation: konversation-1.6.ebuild ChangeLog

2015-06-02 Thread Johannes Huber (johu)
johu15/06/02 21:33:22

  Modified: ChangeLog
  Added:konversation-1.6.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF3CFD2BD)

Revision  ChangesPath
1.123net-irc/konversation/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/konversation/ChangeLog?rev=1.123view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/konversation/ChangeLog?rev=1.123content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/konversation/ChangeLog?r1=1.122r2=1.123

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-irc/konversation/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog   22 Feb 2015 18:41:23 -  1.122
+++ ChangeLog   2 Jun 2015 21:33:22 -   1.123
@@ -1,6 +1,11 @@
 # ChangeLog for net-irc/konversation
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/konversation/ChangeLog,v 1.122 
2015/02/22 18:41:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/konversation/ChangeLog,v 1.123 
2015/06/02 21:33:22 johu Exp $
+
+*konversation-1.6 (02 Jun 2015)
+
+  02 Jun 2015; Johannes Huber j...@gentoo.org +konversation-1.6.ebuild:
+  Version bump.
 
   22 Feb 2015; Michał Górny mgo...@gentoo.org konversation-1.5.1.ebuild:
   Update dependency on QCA plugins to use USE flags on app-crypt/qca:2



1.1  net-irc/konversation/konversation-1.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/konversation/konversation-1.6.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/konversation/konversation-1.6.ebuild?rev=1.1content-type=text/plain

Index: konversation-1.6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-irc/konversation/konversation-1.6.ebuild,v 1.1 
2015/06/02 21:33:22 johu Exp $

EAPI=5

KDE_HANDBOOK=true
inherit kde5

DESCRIPTION=A user friendly IRC Client
HOMEPAGE=http://kde.org/applications/internet/konversation/ 
http://konversation.kde.org;
SRC_URI=mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz

LICENSE=GPL-2
KEYWORDS=~amd64 ~x86
IUSE=+crypt

DEPEND=
$(add_frameworks_dep karchive)
$(add_frameworks_dep kbookmarks)
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kemoticons)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kidletime)
$(add_frameworks_dep kio)
$(add_frameworks_dep kitemviews)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep knotifyconfig)
$(add_frameworks_dep kparts)
$(add_frameworks_dep kservice)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwallet)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep solid)
$(add_frameworks_dep sonnet)
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtxml:5
media-libs/phonon[qt5]
crypt? ( app-crypt/qca:2[qt5] )
sys-devel/gettext

RDEPEND=${DEPEND}
!net-irc/konversation:4
crypt? ( app-crypt/qca:2[openssl] )


src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package crypt Qca-qt5)
)

kde5_src_configure
}






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

2015-06-02 Thread Johannes Huber
commit: 88fc42abe123c5ff5fd113137a520bd5f3732652
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Tue Jun  2 21:47:13 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue Jun  2 21:47:13 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=88fc42ab

[kde-misc/milou] Remove, dead branch

Package-Manager: portage-2.2.20

 kde-misc/milou/metadata.xml|  5 -
 kde-misc/milou/milou-4..ebuild | 27 ---
 2 files changed, 32 deletions(-)

diff --git a/kde-misc/milou/metadata.xml b/kde-misc/milou/metadata.xml
deleted file mode 100644
index a23f444..000
--- a/kde-misc/milou/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-?xml version=1.0 encoding=UTF-8?
-!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
-pkgmetadata
-   herdkde/herd
-/pkgmetadata

diff --git a/kde-misc/milou/milou-4..ebuild 
b/kde-misc/milou/milou-4..ebuild
deleted file mode 100644
index 6e48b7e..000
--- a/kde-misc/milou/milou-4..ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-EGIT_BRANCH=milou/0.1
-KDE_MINIMAL=4.13
-KDE_LINGUAS=bs ca cs da de el es fi fr hu ja ko lt nds nl pl pt pt_BR ro sk sv
-uk zh_CN zh_TW
-inherit kde4-base
-
-DESCRIPTION=Dedicated search application built on top of Baloo
-HOMEPAGE=https://projects.kde.org/projects/extragear/base/milou;
-
-LICENSE=GPL-2 LGPL-2.1
-SLOT=4
-KEYWORDS=
-IUSE=debug
-
-RDEPEND=
-   $(add_kdebase_dep baloo)
-   $(add_kdebase_dep kdepimlibs)
-
-DEPEND=${RDEPEND}
-   $(add_kdebase_dep kfilemetadata)
-



[gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/

2015-06-02 Thread Paul Varner
commit: 1c0c61bc2b4ed4d53612d5effb36c8483fea1bca
Author: Paul Varner fuzzyray AT gentoo DOT org
AuthorDate: Tue Jun  2 22:09:14 2015 +
Commit: Paul Varner fuzzyray AT gentoo DOT org
CommitDate: Tue Jun  2 22:09:14 2015 +
URL:https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=1c0c61bc

gentoolkit: Fix query.py to properly work with sets (Bug 546726)

 pym/gentoolkit/query.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/gentoolkit/query.py b/pym/gentoolkit/query.py
index c0ce977..df6e2fd 100644
--- a/pym/gentoolkit/query.py
+++ b/pym/gentoolkit/query.py
@@ -362,7 +362,7 @@ class Query(CPV):
 
q = self.query
for atom in atoms:
-   self.query = atom
+   self.query = str(atom)

result.extend(self._do_simple_lookup(show_progress=False))
self.query = q
 



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

2015-06-02 Thread Johannes Huber
commit: c453788615bb21c2bec5c2bc28dbc8ff5b6e9158
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Tue Jun  2 21:34:47 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue Jun  2 21:36:21 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c4537886

[sets] Fix typo

Thanks to Andreas Sturmlechner andreas.sturmlechner AT gmail.com.

 .../package.accept_keywords/.kde-applications-live/kdeedu-live  | 2 +-
 Documentation/package.accept_keywords/kde-applications-live.keywords| 2 +-
 Documentation/package.mask/kde-applications-live| 2 +-
 Documentation/package.unmask/kde-applications-live  | 2 +-
 sets/kdeedu-live| 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-live/kdeedu-live 
b/Documentation/package.accept_keywords/.kde-applications-live/kdeedu-live
index fbcc136..34346f7 100644
--- a/Documentation/package.accept_keywords/.kde-applications-live/kdeedu-live
+++ b/Documentation/package.accept_keywords/.kde-applications-live/kdeedu-live
@@ -10,7 +10,7 @@
 ~kde-apps/kig- **
 ~kde-apps/kiten- **
 ~kde-apps/klettres- **
-~kde-apps/kmplott- **
+~kde-apps/kmplot- **
 ~kde-apps/kstars- **
 ~kde-apps/kturtle- **
 ~kde-apps/kwordquiz- **

diff --git 
a/Documentation/package.accept_keywords/kde-applications-live.keywords 
b/Documentation/package.accept_keywords/kde-applications-live.keywords
index 27c1864..8ec8900 100644
--- a/Documentation/package.accept_keywords/kde-applications-live.keywords
+++ b/Documentation/package.accept_keywords/kde-applications-live.keywords
@@ -17,7 +17,7 @@
 ~kde-apps/kig- **
 ~kde-apps/kiten- **
 ~kde-apps/klettres- **
-~kde-apps/kmplott- **
+~kde-apps/kmplot- **
 ~kde-apps/kstars- **
 ~kde-apps/kturtle- **
 ~kde-apps/kwordquiz- **

diff --git a/Documentation/package.mask/kde-applications-live 
b/Documentation/package.mask/kde-applications-live
index 368725a..5cebb07 100644
--- a/Documentation/package.mask/kde-applications-live
+++ b/Documentation/package.mask/kde-applications-live
@@ -17,7 +17,7 @@
 ~kde-apps/kig-
 ~kde-apps/kiten-
 ~kde-apps/klettres-
-~kde-apps/kmplott-
+~kde-apps/kmplot-
 ~kde-apps/kstars-
 ~kde-apps/kturtle-
 ~kde-apps/kwordquiz-

diff --git a/Documentation/package.unmask/kde-applications-live 
b/Documentation/package.unmask/kde-applications-live
index 368725a..5cebb07 100644
--- a/Documentation/package.unmask/kde-applications-live
+++ b/Documentation/package.unmask/kde-applications-live
@@ -17,7 +17,7 @@
 ~kde-apps/kig-
 ~kde-apps/kiten-
 ~kde-apps/klettres-
-~kde-apps/kmplott-
+~kde-apps/kmplot-
 ~kde-apps/kstars-
 ~kde-apps/kturtle-
 ~kde-apps/kwordquiz-

diff --git a/sets/kdeedu-live b/sets/kdeedu-live
index 4bfbe1b..66b3320 100644
--- a/sets/kdeedu-live
+++ b/sets/kdeedu-live
@@ -10,7 +10,7 @@
 ~kde-apps/kig-
 ~kde-apps/kiten-
 ~kde-apps/klettres-
-~kde-apps/kmplott-
+~kde-apps/kmplot-
 ~kde-apps/kstars-
 ~kde-apps/kturtle-
 ~kde-apps/kwordquiz-



[gentoo-commits] proj/kde:master commit in: net-irc/konversation/

2015-06-02 Thread Johannes Huber
commit: b1b090b79627c05f3aa055970487e46a07fc43c7
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Tue Jun  2 21:34:09 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue Jun  2 21:34:09 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b1b090b7

[net-irc/konversation] Remove old

Package-Manager: portage-2.2.20

 net-irc/konversation/konversation-1.6.ebuild| 64 -
 net-irc/konversation/konversation-4..ebuild | 37 --
 2 files changed, 101 deletions(-)

diff --git a/net-irc/konversation/konversation-1.6.ebuild 
b/net-irc/konversation/konversation-1.6.ebuild
deleted file mode 100644
index 1e7cb4e..000
--- a/net-irc/konversation/konversation-1.6.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-KDE_HANDBOOK=true
-inherit kde5
-
-DESCRIPTION=A user friendly IRC Client
-HOMEPAGE=http://kde.org/applications/internet/konversation/ 
http://konversation.kde.org;
-SRC_URI=mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz
-
-LICENSE=GPL-2
-KEYWORDS=~amd64 ~x86
-IUSE=+crypt
-
-DEPEND=
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kbookmarks)
-   $(add_frameworks_dep kcodecs)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep kemoticons)
-   $(add_frameworks_dep kglobalaccel)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kidletime)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwallet)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_frameworks_dep sonnet)
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   media-libs/phonon[qt5]
-   crypt? ( app-crypt/qca:2[qt5] )
-   sys-devel/gettext
-
-RDEPEND=${DEPEND}
-   !net-irc/konversation:4
-   crypt? ( app-crypt/qca:2[openssl] )
-
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package crypt Qca-qt5)
-   )
-
-   kde5_src_configure
-}

diff --git a/net-irc/konversation/konversation-4..ebuild 
b/net-irc/konversation/konversation-4..ebuild
deleted file mode 100644
index 499376e..000
--- a/net-irc/konversation/konversation-4..ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-KDE_LINGUAS=bg bs ca ca@valencia cs da de el en_GB es et fi fr gl he hu it ja
-kk km ko lt nb nds nl pa pl pt pt_BR ru si sk sl sr sr@ijekavian
-sr@ijekavianlatin sr@latin sv tr uk zh_CN zh_TW
-KDE_HANDBOOK=optional
-EGIT_BRANCH=1.5
-inherit kde4-base
-
-DESCRIPTION=A user friendly IRC Client for KDE4
-HOMEPAGE=http://kde.org/applications/internet/konversation/ 
http://konversation.kde.org;
-
-LICENSE=GPL-2 FDL-1.2
-SLOT=4
-KEYWORDS=
-IUSE=+crypt debug
-
-DEPEND=
-   $(add_kdebase_dep kdepimlibs)
-   media-libs/phonon[qt4]
-   crypt? ( app-crypt/qca:2[qt4] )
-
-RDEPEND=${DEPEND}
-   crypt? ( app-crypt/qca:2[openssl] )
-
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_with crypt QCA2)
-   )
-
-   kde4-base_src_configure
-}



  1   2   >