[gentoo-commits] proj/betagarden:master commit in: net-analyzer/nethogs/

2014-07-27 Thread Justin Lecher
commit: db9a9d4aa961d44e9c12a6063a755b8670d4275a
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Jul 28 06:20:30 2014 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Jul 28 06:20:30 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=db9a9d4a

net-analyzer/nethogs: Included upstream

Package-Manager: portage-2.2.10

---
 net-analyzer/nethogs/ChangeLog   | 3 +++
 net-analyzer/nethogs/nethogs-.ebuild | 3 ---
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-analyzer/nethogs/ChangeLog b/net-analyzer/nethogs/ChangeLog
index 46c2ce4..da61777 100644
--- a/net-analyzer/nethogs/ChangeLog
+++ b/net-analyzer/nethogs/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  28 Jul 2014; Justin Lecher  nethogs-.ebuild:
+  Included upstream
+
   24 Jul 2014; Justin Lecher  nethogs-.ebuild,
   +files/nethogs--tinfo.patch:
   Backport patch for ncurses[tinfo]

diff --git a/net-analyzer/nethogs/nethogs-.ebuild 
b/net-analyzer/nethogs/nethogs-.ebuild
index 6175ec3..fa43bec 100644
--- a/net-analyzer/nethogs/nethogs-.ebuild
+++ b/net-analyzer/nethogs/nethogs-.ebuild
@@ -26,10 +26,7 @@ DEPEND="
 
 DOCS=( Changelog DESIGN README )
 
-PATCHES=( "${FILESDIR}"/${P}-tinfo.patch )
-
 src_prepare() {
-   epatch "${PATCHES[@]}"
tc-export CC CXX PKG_CONFIG
 }
 



[gentoo-commits] proj/betagarden:master commit in: net-analyzer/nethogs/, net-analyzer/nethogs/files/

2014-07-27 Thread Justin Lecher
commit: 539ff83c65a3fe116f0ef306ef1970b4662f578d
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Jul 24 10:23:36 2014 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Jul 24 10:23:36 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=539ff83c

net-analyzer/nethogs: Backport patch for ncurses[tinfo]

Package-Manager: portage-2.2.10

---
 net-analyzer/nethogs/ChangeLog |  4 ++
 .../nethogs/files/nethogs--tinfo.patch | 46 ++
 net-analyzer/nethogs/nethogs-.ebuild   |  7 
 3 files changed, 57 insertions(+)

diff --git a/net-analyzer/nethogs/ChangeLog b/net-analyzer/nethogs/ChangeLog
index d69ab41..46c2ce4 100644
--- a/net-analyzer/nethogs/ChangeLog
+++ b/net-analyzer/nethogs/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  24 Jul 2014; Justin Lecher  nethogs-.ebuild,
+  +files/nethogs--tinfo.patch:
+  Backport patch for ncurses[tinfo]
+
 *nethogs- (21 Jul 2014)
 
   21 Jul 2014; Justin Lecher  +nethogs-.ebuild,

diff --git a/net-analyzer/nethogs/files/nethogs--tinfo.patch 
b/net-analyzer/nethogs/files/nethogs--tinfo.patch
new file mode 100644
index 000..4a80e2a
--- /dev/null
+++ b/net-analyzer/nethogs/files/nethogs--tinfo.patch
@@ -0,0 +1,46 @@
+From 01c61290a30ae40a358ed803190c21d0dd42dc3a Mon Sep 17 00:00:00 2001
+From: Justin Lecher 
+Date: Thu, 24 Jul 2014 12:13:06 +0200
+Subject: [PATCH] Allow to specify ncurses libs at buildtime
+
+If the system is using libtinfo then you need ot link against libncurses and 
libtinfo.
+With this patch it is possible to specify this at buildtime.
+
+Signed-off-by: Justin Lecher 
+---
+ Makefile | 9 ++---
+ 1 file changed, 6 insertions(+), 3 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index 83b1c3e..3c0e7c7 100644
+--- a/Makefile
 b/Makefile
+@@ -20,6 +20,9 @@ CFLAGS?=-Wall -Wextra
+ CXXFLAGS?=-Wall -Wextra
+ 
+ OBJS=packet.o connection.o process.o refresh.o decpcap.o cui.o inode2prog.o 
conninode.o devices.o
++
++NCURSES_LIBS?=-lncurses
++
+ .PHONY: tgz
+ 
+ tgz: clean
+@@ -36,12 +39,12 @@ install: nethogs nethogs.8
+   install -m 644 nethogs.8 $(DESTDIR)$(man8)
+ 
+ test: test.cpp 
+-  $(CXX) $(CXXFLAGS) $(LDFLAGS) test.cpp -o test -lpcap -lm -lncurses 
-DVERSION=\"$(VERSION)\" -DSUBVERSION=\"$(SUBVERSION)\" 
-DMINORVERSION=\"$(MINORVERSION)\"
++  $(CXX) $(CXXFLAGS) $(LDFLAGS) test.cpp -o test -lpcap -lm 
${NCURSES_LIBS} -DVERSION=\"$(VERSION)\" -DSUBVERSION=\"$(SUBVERSION)\" 
-DMINORVERSION=\"$(MINORVERSION)\"
+ 
+ nethogs: main.cpp nethogs.cpp $(OBJS)
+-  $(CXX) $(CXXFLAGS) $(LDFLAGS) main.cpp $(OBJS) -o nethogs -lpcap -lm 
-lncurses -DVERSION=\"$(VERSION)\" -DSUBVERSION=\"$(SUBVERSION)\" 
-DMINORVERSION=\"$(MINORVERSION)\"
++  $(CXX) $(CXXFLAGS) $(LDFLAGS) main.cpp $(OBJS) -o nethogs -lpcap -lm 
${NCURSES_LIBS} -DVERSION=\"$(VERSION)\" -DSUBVERSION=\"$(SUBVERSION)\" 
-DMINORVERSION=\"$(MINORVERSION)\"
+ nethogs_testsum: nethogs_testsum.cpp $(OBJS)
+-  $(CXX) $(CXXFLAGS) $(LDFLAGS) nethogs_testsum.cpp $(OBJS) -o 
nethogs_testsum -lpcap -lm -lncurses -DVERSION=\"$(VERSION)\" 
-DSUBVERSION=\"$(SUBVERSION)\" -DMINORVERSION=\"$(MINORVERSION)\"
++  $(CXX) $(CXXFLAGS) $(LDFLAGS) nethogs_testsum.cpp $(OBJS) -o 
nethogs_testsum -lpcap -lm ${NCURSES_LIBS} -DVERSION=\"$(VERSION)\" 
-DSUBVERSION=\"$(SUBVERSION)\" -DMINORVERSION=\"$(MINORVERSION)\"
+ 
+ decpcap_test: decpcap_test.cpp decpcap.o
+   $(CXX) $(CXXFLAGS) $(LDFLAGS) decpcap_test.cpp decpcap.o -o 
decpcap_test -lpcap -lm
+-- 
+2.0.2
+

diff --git a/net-analyzer/nethogs/nethogs-.ebuild 
b/net-analyzer/nethogs/nethogs-.ebuild
index ead5955..6175ec3 100644
--- a/net-analyzer/nethogs/nethogs-.ebuild
+++ b/net-analyzer/nethogs/nethogs-.ebuild
@@ -26,10 +26,17 @@ DEPEND="
 
 DOCS=( Changelog DESIGN README )
 
+PATCHES=( "${FILESDIR}"/${P}-tinfo.patch )
+
 src_prepare() {
+   epatch "${PATCHES[@]}"
tc-export CC CXX PKG_CONFIG
 }
 
+src_compile() {
+   emake NCURSES_LIBS="$($(tc-getPKG_CONFIG) --libs ncurses)"
+}
+
 src_install() {
emake DESTDIR="${ED}" prefix=/usr install
dodoc ${DOCS[@]}



[gentoo-commits] gentoo-x86 commit in dev-ruby/slim: ChangeLog slim-2.0.3.ebuild

2014-07-27 Thread Hans de Graaff (graaff)
graaff  14/07/28 06:22:07

  Modified: ChangeLog
  Added:slim-2.0.3.ebuild
  Log:
  Version bump. Add ruby20, ruby21.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.3  dev-ruby/slim/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/slim/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   26 May 2014 14:23:16 -  1.2
+++ ChangeLog   28 Jul 2014 06:22:07 -  1.3
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/slim
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/slim/ChangeLog,v 1.2 2014/05/26 
14:23:16 p8952 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/slim/ChangeLog,v 1.3 2014/07/28 
06:22:07 graaff Exp $
+
+*slim-2.0.3 (28 Jul 2014)
+
+  28 Jul 2014; Hans de Graaff  +slim-2.0.3.ebuild:
+  Version bump. Add ruby20, ruby21.
 
 *slim-2.0.2-r1 (26 May 2014)
 



1.1  dev-ruby/slim/slim-2.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/slim/slim-2.0.3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/slim/slim-2.0.3.ebuild?rev=1.1&content-type=text/plain

Index: slim-2.0.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/slim/slim-2.0.3.ebuild,v 1.1 
2014/07/28 06:22:07 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_EXTRADOC="CHANGES README.md"

RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_TASK_DOC="yard"

inherit ruby-fakegem

DESCRIPTION="A template language whose goal is reduce the syntax to the 
essential parts without becoming cryptic"
HOMEPAGE="http://slim-lang.com/";
LICENSE="MIT"

KEYWORDS="~amd64"
SLOT="0"
IUSE="doc"

ruby_add_rdepend ">=dev-ruby/tilt-1.3.3:0
>=dev-ruby/temple-0.6.6 =dev-ruby/temple-0.6*"

ruby_add_bdepend "doc? ( dev-ruby/yard dev-ruby/redcarpet )"

all_ruby_prepare() {
# This sinatra code expects tests to be installed but we strip those.
sed -i -e "s/require 'sinatra'/require 'bogussinatra'/" Rakefile || die

# Avoid tests for things we don't have.
sed -i -e '/test_wip_render_with_asciidoc/,/^  end/ s:^:#:' \
-e '/test_render_with_wiki/,/^  end/ s:^:#:' \
-e '/test_render_with_creole/,/^  end/ s:^:#:' \
-e '/test_render_with_org/,/^  end/ s:^:#:' 
test/core/test_embedded_engines.rb || die

}






[gentoo-commits] gentoo-x86 commit in sys-libs/glibc: ChangeLog

2014-07-27 Thread Mike Frysinger (vapier)
vapier  14/07/28 05:46:16

  Modified: ChangeLog
  Log:
  Drop arch nptl logic as it only applies to really old versions of glibc now 
(linuxthreads) #518048 by Chase Rayfield.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.998sys-libs/glibc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/ChangeLog?rev=1.998&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/ChangeLog?rev=1.998&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/ChangeLog?r1=1.997&r2=1.998

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v
retrieving revision 1.997
retrieving revision 1.998
diff -u -r1.997 -r1.998
--- ChangeLog   14 Jun 2014 23:33:58 -  1.997
+++ ChangeLog   28 Jul 2014 05:46:16 -  1.998
@@ -1,6 +1,10 @@
 # ChangeLog for sys-libs/glibc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.997 2014/06/14 
23:33:58 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.998 2014/07/28 
05:46:16 vapier Exp $
+
+  28 Jul 2014; Mike Frysinger  files/eblits/common.eblit:
+  Drop arch nptl logic as it only applies to really old versions of glibc now
+  (linuxthreads) #518048 by Chase Rayfield.
 
 *glibc-2.19-r1 (14 Jun 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-libs/glibc/files/eblits: common.eblit

2014-07-27 Thread Mike Frysinger (vapier)
vapier  14/07/28 05:46:16

  Modified: common.eblit
  Log:
  Drop arch nptl logic as it only applies to really old versions of glibc now 
(linuxthreads) #518048 by Chase Rayfield.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.36 sys-libs/glibc/files/eblits/common.eblit

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit?rev=1.36&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit?rev=1.36&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit?r1=1.35&r2=1.36

Index: common.eblit
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- common.eblit14 Jun 2014 08:07:10 -  1.35
+++ common.eblit28 Jul 2014 05:46:16 -  1.36
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 
1.35 2014/06/14 08:07:10 rhill Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 
1.36 2014/07/28 05:46:16 vapier Exp $
 
 alt_prefix() {
is_crosscompile && echo /usr/${CTARGET}
@@ -206,15 +206,8 @@
want_tls || return 1
use nptl || return 1
 
-   # Only list the arches that cannot do NPTL
-   case $(tc-arch) in
-   m68k) return 1;;
-   sparc)
-   # >= v9 is needed for nptl.
-   [[ ${PROFILE_ARCH} == "sparc" ]] && return 1
-   ;;
-   esac
-
+   # Older versions of glibc had incomplete arch support for nptl.
+   # But if you're building those now, you can handle USE=nptl yourself.
return 0
 }
 






[gentoo-commits] gentoo-x86 commit in x11-wm/enlightenment: enlightenment-1.0.14.ebuild ChangeLog

2014-07-27 Thread Mike Frysinger (vapier)
vapier  14/07/28 05:42:29

  Modified: ChangeLog
  Added:enlightenment-1.0.14.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.200x11-wm/enlightenment/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/ChangeLog?rev=1.200&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/ChangeLog?rev=1.200&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/ChangeLog?r1=1.199&r2=1.200

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/ChangeLog,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- ChangeLog   9 Jun 2014 11:25:55 -   1.199
+++ ChangeLog   28 Jul 2014 05:42:29 -  1.200
@@ -1,6 +1,11 @@
 # ChangeLog for x11-wm/enlightenment
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/ChangeLog,v 1.199 
2014/06/09 11:25:55 tommy Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/ChangeLog,v 1.200 
2014/07/28 05:42:29 vapier Exp $
+
+*enlightenment-1.0.14 (28 Jul 2014)
+
+  28 Jul 2014; Mike Frysinger  +enlightenment-1.0.14.ebuild:
+  Version bump.
 
 *enlightenment-0.18.8 (09 Jun 2014)
 



1.1  x11-wm/enlightenment/enlightenment-1.0.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/enlightenment-1.0.14.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/enlightenment-1.0.14.ebuild?rev=1.1&content-type=text/plain

Index: enlightenment-1.0.14.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-wm/enlightenment/enlightenment-1.0.14.ebuild,v 1.1 
2014/07/28 05:42:29 vapier Exp $

EAPI="4"
if [[ ${PV} == * ]] ; then
ESVN_REPO_URI="http://svn.enlightenment.org/svn/e/trunk/E16/e";
inherit subversion autotools
SRC_URI=""
#KEYWORDS=""
S=${WORKDIR}/e16/e
else
SRC_URI="mirror://sourceforge/enlightenment/e16-${PV/_/-}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd"
S=${WORKDIR}/e16-${PV/_pre?}
fi
inherit eutils

DESCRIPTION="Enlightenment Window Manager (e16)"
HOMEPAGE="http://www.enlightenment.org/";

LICENSE="BSD"
SLOT="0"
IUSE="dbus doc nls pango pulseaudio xcomposite xinerama xrandr"

RDEPEND="pulseaudio? ( media-sound/pulseaudio )
dbus? ( sys-apps/dbus )
pango? ( x11-libs/pango )
=media-libs/freetype-2*
>=media-libs/imlib2-1.3.0[X]
x11-libs/libSM
x11-libs/libICE
x11-libs/libX11
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXdamage
x11-libs/libXxf86vm
x11-libs/libXft
xrandr? ( x11-libs/libXrandr )
x11-libs/libXrender
x11-misc/xbitmaps
xinerama? ( x11-libs/libXinerama )
xcomposite? ( x11-libs/libXcomposite )
nls? ( virtual/libintl )
virtual/libiconv"
DEPEND="${RDEPEND}
virtual/pkgconfig
x11-proto/xextproto
x11-proto/xf86vidmodeproto
xinerama? ( x11-proto/xineramaproto )
xcomposite? ( x11-proto/compositeproto )
x11-proto/xproto
nls? ( sys-devel/gettext )"
PDEPEND="doc? ( app-doc/edox-data )"

src_prepare() {
if [[ ! -e configure ]] ; then
eautopoint
eautoreconf
fi
}

src_configure() {
econf \
$(use_enable nls) \
$(use_enable dbus) \
$(use_enable pulseaudio sound-pulse) \
--disable-sound-esound \
$(use_enable pango) \
$(use_enable xinerama) \
$(use_enable xrandr) \
$(use_enable xcomposite composite) \
--disable-docs \
--enable-zoom
}

src_install() {
default
dodoc COMPLIANCE sample-scripts/*
dohtml docs/e16.html
}






[gentoo-commits] gentoo-x86 commit in dev-tcltk/expect-lite: expect-lite-4.7.2.ebuild ChangeLog

2014-07-27 Thread Mike Frysinger (vapier)
vapier  14/07/28 05:22:45

  Modified: ChangeLog
  Added:expect-lite-4.7.2.ebuild
  Log:
  Version bump #517784 by Quentin Minster.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.34 dev-tcltk/expect-lite/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect-lite/ChangeLog?rev=1.34&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect-lite/ChangeLog?rev=1.34&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect-lite/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect-lite/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   25 Dec 2013 22:25:26 -  1.33
+++ ChangeLog   28 Jul 2014 05:22:45 -  1.34
@@ -1,6 +1,11 @@
 # ChangeLog for dev-tcltk/expect-lite
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect-lite/ChangeLog,v 1.33 
2013/12/25 22:25:26 vapier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect-lite/ChangeLog,v 1.34 
2014/07/28 05:22:45 vapier Exp $
+
+*expect-lite-4.7.2 (28 Jul 2014)
+
+  28 Jul 2014; Mike Frysinger  +expect-lite-4.7.2.ebuild:
+  Version bump #517784 by Quentin Minster.
 
   25 Dec 2013; Mike Frysinger  expect-lite-4.6.2.ebuild:
   Stabilize for all #495646 by Pacho Ramos.



1.1  dev-tcltk/expect-lite/expect-lite-4.7.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect-lite/expect-lite-4.7.2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect-lite/expect-lite-4.7.2.ebuild?rev=1.1&content-type=text/plain

Index: expect-lite-4.7.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-tcltk/expect-lite/expect-lite-4.7.2.ebuild,v 1.1 
2014/07/28 05:22:45 vapier Exp $

DESCRIPTION="quick and easy command line automation tool built on top of expect"
HOMEPAGE="http://expect-lite.sourceforge.net/";
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug examples"

RDEPEND="dev-tcltk/expect
debug? ( dev-tcltk/tclx )"

S=${WORKDIR}/${PN}.proj

src_install() {
dobin ${PN} || die
doman man/* || die
dodoc bashrc ChangeLog README
dohtml Docs/*

if use examples ; then
docinto examples
dodoc examples/* || die
fi
}






[gentoo-commits] gentoo-x86 commit in www-client/phantomjs: metadata.xml ChangeLog

2014-07-27 Thread Mike Frysinger (vapier)
vapier  14/07/28 05:19:15

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself as maintainer.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.5  www-client/phantomjs/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/phantomjs/metadata.xml?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/phantomjs/metadata.xml?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/phantomjs/metadata.xml?r1=1.4&r2=1.5

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/www-client/phantomjs/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml13 Feb 2014 15:55:36 -  1.4
+++ metadata.xml28 Jul 2014 05:19:15 -  1.5
@@ -2,8 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd";>
 

-   vap...@gentoo.org
-   do whatever
+   maintainer-nee...@gentoo.org


phantomjs



1.14 www-client/phantomjs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/phantomjs/ChangeLog?rev=1.14&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/phantomjs/ChangeLog?rev=1.14&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/phantomjs/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/phantomjs/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   4 Mar 2014 21:39:14 -   1.13
+++ ChangeLog   28 Jul 2014 05:19:15 -  1.14
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/phantomjs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/phantomjs/ChangeLog,v 1.13 
2014/03/04 21:39:14 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/phantomjs/ChangeLog,v 1.14 
2014/07/28 05:19:15 vapier Exp $
+
+  28 Jul 2014; Mike Frysinger  metadata.xml:
+  Drop myself as maintainer.
 
   04 Mar 2014; Andreas K. Huettel 
   phantomjs-1.9.7.ebuild:






[gentoo-commits] gentoo-x86 commit in x11-apps/intel-gpu-tools: intel-gpu-tools-1.7.ebuild metadata.xml ChangeLog

2014-07-27 Thread Mike Frysinger (vapier)
vapier  14/07/28 05:07:08

  Modified: metadata.xml ChangeLog
  Added:intel-gpu-tools-1.7.ebuild
  Log:
  Version bump #502034 by James Ausmus.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.2  x11-apps/intel-gpu-tools/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/intel-gpu-tools/metadata.xml?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/intel-gpu-tools/metadata.xml?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/intel-gpu-tools/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/x11-apps/intel-gpu-tools/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml27 May 2009 13:47:53 -  1.1
+++ metadata.xml28 Jul 2014 05:07:08 -  1.2
@@ -2,4 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd";>
 
 x11
+
+ Install python based register dumper utilities
+
 



1.16 x11-apps/intel-gpu-tools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/intel-gpu-tools/ChangeLog?rev=1.16&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/intel-gpu-tools/ChangeLog?rev=1.16&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/intel-gpu-tools/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-apps/intel-gpu-tools/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   18 Nov 2012 12:07:31 -  1.15
+++ ChangeLog   28 Jul 2014 05:07:08 -  1.16
@@ -1,6 +1,12 @@
 # ChangeLog for x11-apps/intel-gpu-tools
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-apps/intel-gpu-tools/ChangeLog,v 1.15 
2012/11/18 12:07:31 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-apps/intel-gpu-tools/ChangeLog,v 1.16 
2014/07/28 05:07:08 vapier Exp $
+
+*intel-gpu-tools-1.7 (28 Jul 2014)
+
+  28 Jul 2014; Mike Frysinger  +intel-gpu-tools-1.7.ebuild,
+  metadata.xml:
+  Version bump #502034 by James Ausmus.
 
   18 Nov 2012; Agostino Sarubbo  intel-gpu-tools-1.3.ebuild:
   Stable for x86, wrt bug #440872



1.1  x11-apps/intel-gpu-tools/intel-gpu-tools-1.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/intel-gpu-tools/intel-gpu-tools-1.7.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/intel-gpu-tools/intel-gpu-tools-1.7.ebuild?rev=1.1&content-type=text/plain

Index: intel-gpu-tools-1.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-apps/intel-gpu-tools/intel-gpu-tools-1.7.ebuild,v 
1.1 2014/07/28 05:07:08 vapier Exp $

EAPI=5

PYTHON_COMPAT=( python{3_3,3_4} )

inherit python-single-r1 xorg-2

DESCRIPTION="Intel GPU userland tools"
KEYWORDS="~amd64 ~x86"
IUSE="python video_cards_nouveau"
RESTRICT="test"

DEPEND="dev-libs/glib:2
>=x11-libs/cairo-1.12.0
>=x11-libs/libdrm-2.4.47[video_cards_intel,video_cards_nouveau?]
>=x11-libs/libpciaccess-0.10
python? ( ${PYTHON_DEPS} )"
RDEPEND="${DEPEND}"

src_configure() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable python dumper)
$(use_enable video_cards_nouveau nouveau)
--disable-tests #484618
)
xorg-2_src_configure
}






[gentoo-commits] gentoo-x86 commit in app-crypt/trousers: ChangeLog trousers-0.3.10.ebuild

2014-07-27 Thread Alon Bar-Lev (alonbl)
alonbl  14/07/28 04:37:22

  Modified: ChangeLog
  Removed:  trousers-0.3.10.ebuild
  Log:
  Cleanup
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
BF20DC51)

Revision  ChangesPath
1.52 app-crypt/trousers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/ChangeLog?rev=1.52&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/ChangeLog?rev=1.52&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/ChangeLog?r1=1.51&r2=1.52

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/trousers/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   27 Jul 2014 23:41:47 -  1.51
+++ ChangeLog   28 Jul 2014 04:37:22 -  1.52
@@ -1,6 +1,9 @@
 # ChangeLog for app-crypt/trousers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/trousers/ChangeLog,v 1.51 
2014/07/27 23:41:47 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/trousers/ChangeLog,v 1.52 
2014/07/28 04:37:22 alonbl Exp $
+
+  28 Jul 2014; Alon Bar-Lev  -trousers-0.3.10.ebuild:
+  Cleanup
 
   27 Jul 2014; Mikle Kolyada  trousers-0.3.10-r1.ebuild:
   amd64 stable wrt bug #516844






[gentoo-commits] gentoo-x86 commit in sys-apps/systemd: systemd-9999.ebuild metadata.xml ChangeLog

2014-07-27 Thread Mike Gilbert (floppym)
floppym 14/07/28 03:36:10

  Modified: systemd-.ebuild metadata.xml ChangeLog
  Log:
  Add python3_4 to PYTHON_COMPAT. Add optional dependencies on curl and lz4.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.130sys-apps/systemd/systemd-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-.ebuild?rev=1.130&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-.ebuild?rev=1.130&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-.ebuild?r1=1.129&r2=1.130

Index: systemd-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-.ebuild,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- systemd-.ebuild 27 Jul 2014 15:00:52 -  1.129
+++ systemd-.ebuild 28 Jul 2014 03:36:10 -  1.130
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-.ebuild,v 
1.129 2014/07/27 15:00:52 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-.ebuild,v 
1.130 2014/07/28 03:36:10 floppym Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 #endif
 
 AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
-PYTHON_COMPAT=( python{2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
 inherit autotools-utils bash-completion-r1 fcaps linux-info multilib \
multilib-minimal pam python-single-r1 systemd toolchain-funcs udev \
user
@@ -25,9 +25,9 @@
 LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
 SLOT="0/2"
 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="acl audit cryptsetup doc elfutils +firmware-loader gcrypt gudev http
-   introspection kdbus +kmod lzma pam policykit python qrcode +seccomp 
selinux
-   ssl test vanilla"
+IUSE="acl audit cryptsetup curl doc elfutils +firmware-loader gcrypt gudev http
+   introspection kdbus +kmod lz4 lzma pam policykit python qrcode +seccomp
+   selinux ssl test vanilla"
 
 MINKV="3.8"
 
@@ -36,6 +36,7 @@
acl? ( sys-apps/acl:0= )
audit? ( >=sys-process/audit-2:0= )
cryptsetup? ( >=sys-fs/cryptsetup-1.6:0= )
+   curl? ( net-misc/curl:0= )
elfutils? ( >=dev-libs/elfutils-0.158:0= )
gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[${MULTILIB_USEDEP}] )
gudev? ( >=dev-libs/glib-2.34.3:2=[${MULTILIB_USEDEP}] )
@@ -45,6 +46,7 @@
)
introspection? ( >=dev-libs/gobject-introspection-1.31.1:0= )
kmod? ( >=sys-apps/kmod-15:0= )
+   lz4? ( >=app-arch/lz4-0_p119:0=[${MULTILIB_USEDEP}] )
lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[${MULTILIB_USEDEP}] )
pam? ( virtual/pam:= )
python? ( ${PYTHON_DEPS} )
@@ -210,6 +212,7 @@
$(multilib_native_use_enable acl)
$(multilib_native_use_enable audit)
$(multilib_native_use_enable cryptsetup libcryptsetup)
+   $(multilib_native_use_enable curl libcurl)
$(multilib_native_use_enable doc gtk-doc)
$(multilib_native_use_enable elfutils)
$(use_enable gcrypt)
@@ -219,6 +222,7 @@
$(multilib_native_use_enable introspection)
$(use_enable kdbus)
$(multilib_native_use_enable kmod)
+   $(use_enable lz4)
$(use_enable lzma xz)
$(multilib_native_use_enable pam)
$(multilib_native_use_enable policykit polkit)
@@ -235,6 +239,7 @@
$(multilib_native_enable binfmt)
$(multilib_native_enable bootchart)
$(multilib_native_enable coredump)
+   $(multilib_native_enable firstboot)
$(multilib_native_enable hostnamed)
$(multilib_native_enable localed)
$(multilib_native_enable logind)



1.27 sys-apps/systemd/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/metadata.xml?rev=1.27&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/metadata.xml?rev=1.27&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/metadata.xml?r1=1.26&r2=1.27

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/metadata.xml,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- metadata.xml4 Jul 2014 15:00:55 -   1.26
+++ metadata.xml28 Jul 2014 03:36:10 -  1.27
@@ -16,6 +16,7 @@
Enable embedded HTTP server in journald
Connect to kernel dbus (KDBUS) instead of 
use

[gentoo-commits] gentoo-x86 commit in sys-apps/systemd: ChangeLog systemd-215-r3.ebuild

2014-07-27 Thread Richard Freeman (rich0)
rich0   14/07/28 02:43:04

  Modified: ChangeLog systemd-215-r3.ebuild
  Log:
  amd64 stable - 517120
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x08C170DE55EC123A)

Revision  ChangesPath
1.294sys-apps/systemd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/ChangeLog?rev=1.294&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/ChangeLog?rev=1.294&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/ChangeLog?r1=1.293&r2=1.294

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v
retrieving revision 1.293
retrieving revision 1.294
diff -u -r1.293 -r1.294
--- ChangeLog   27 Jul 2014 15:00:52 -  1.293
+++ ChangeLog   28 Jul 2014 02:43:04 -  1.294
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/systemd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v 1.293 
2014/07/27 15:00:52 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v 1.294 
2014/07/28 02:43:04 rich0 Exp $
+
+  28 Jul 2014; Richard Freeman  systemd-215-r3.ebuild:
+  amd64 stable - 517120
 
   27 Jul 2014; Mike Gilbert  systemd-215-r3.ebuild,
   systemd-.ebuild:



1.3  sys-apps/systemd/systemd-215-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild?r1=1.2&r2=1.3

Index: systemd-215-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- systemd-215-r3.ebuild   27 Jul 2014 15:00:52 -  1.2
+++ systemd-215-r3.ebuild   28 Jul 2014 02:43:04 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild,v 
1.2 2014/07/27 15:00:52 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild,v 
1.3 2014/07/28 02:43:04 rich0 Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
 SLOT="0/2"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="acl audit cryptsetup doc elfutils +firmware-loader gcrypt gudev http
introspection kdbus +kmod lzma pam policykit python qrcode +seccomp 
selinux
ssl test vanilla"






[gentoo-commits] gentoo-x86 commit in net-misc/sshpass: sshpass-1.05.ebuild ChangeLog

2014-07-27 Thread Yixun Lan (dlan)
dlan14/07/28 02:01:25

  Modified: sshpass-1.05.ebuild ChangeLog
  Log:
  add arm keyword, bug 518100, tested on odroid-u3
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

Revision  ChangesPath
1.4  net-misc/sshpass/sshpass-1.05.ebuild

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

Index: sshpass-1.05.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/sshpass/sshpass-1.05.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sshpass-1.05.ebuild 18 Sep 2011 21:48:33 -  1.3
+++ sshpass-1.05.ebuild 28 Jul 2014 02:01:25 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/sshpass/sshpass-1.05.ebuild,v 1.3 
2011/09/18 21:48:33 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/sshpass/sshpass-1.05.ebuild,v 1.4 
2014/07/28 02:01:25 dlan Exp $
 
 EAPI="4"
 
@@ -10,7 +10,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE=""
 
 RDEPEND="net-misc/openssh"



1.12 net-misc/sshpass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/sshpass/ChangeLog?rev=1.12&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/sshpass/ChangeLog?rev=1.12&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/sshpass/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/sshpass/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   17 Mar 2013 15:08:30 -  1.11
+++ ChangeLog   28 Jul 2014 02:01:25 -  1.12
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/sshpass
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/sshpass/ChangeLog,v 1.11 
2013/03/17 15:08:30 hwoarang Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/sshpass/ChangeLog,v 1.12 
2014/07/28 02:01:25 dlan Exp $
+
+  28 Jul 2014; Yixun Lan  sshpass-1.05.ebuild:
+  add arm keyword, bug 518100, tested on odroid-u3
 
   17 Mar 2013; Markos Chandras  metadata.xml:
   Add proxy-maintainers to metadata.xml






[gentoo-commits] gentoo-x86 commit in media-video/mplayer: mplayer-1.2_pre20130729.ebuild mplayer-1.1.1-r1.ebuild metadata.xml ChangeLog

2014-07-27 Thread Patrick Lauer (patrick)
patrick 14/07/28 01:27:14

  Modified: mplayer-1.2_pre20130729.ebuild
mplayer-1.1.1-r1.ebuild metadata.xml ChangeLog
  Log:
  Prune dxr3 useflag as em8300-libraries is on the way out
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.10 media-video/mplayer/mplayer-1.2_pre20130729.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mplayer/mplayer-1.2_pre20130729.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mplayer/mplayer-1.2_pre20130729.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mplayer/mplayer-1.2_pre20130729.ebuild?r1=1.9&r2=1.10

Index: mplayer-1.2_pre20130729.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.2_pre20130729.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mplayer-1.2_pre20130729.ebuild  23 Jul 2014 20:31:45 -  1.9
+++ mplayer-1.2_pre20130729.ebuild  28 Jul 2014 01:27:14 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.2_pre20130729.ebuild,v 
1.9 2014/07/23 20:31:45 zerochaos Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.2_pre20130729.ebuild,v 
1.10 2014/07/28 01:27:14 patrick Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 IUSE="3dnow 3dnowext a52 aalib +alsa altivec aqua bidi bindist bl bluray
 bs2b cddb +cdio cdparanoia cpudetection debug dga
-directfb doc dts dv dvb +dvd +dvdnav dxr3 +enca +encode faac faad fbcon
+directfb doc dts dv dvb +dvd +dvdnav +enca +encode faac faad fbcon
 ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa
 +libass libcaca libmpeg2 lirc live lzo mad md5sum +mmx mmxext mng mp3 nas
 +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr
@@ -142,7 +142,6 @@
 DEPEND="${RDEPEND}
virtual/pkgconfig
dga? ( x11-proto/xf86dgaproto )
-   dxr3? ( media-video/em8300-libraries )
X? ( ${X_DEPS} )
xinerama? ( x11-proto/xineramaproto )
xscreensaver? ( x11-proto/scrnsaverproto )
@@ -174,7 +173,6 @@
bindist? ( !faac )
dga? ( X )
dvdnav? ( dvd )
-   dxr3? ( X )
enca? ( iconv )
ggi? ( X )
libass? ( truetype )
@@ -487,7 +485,7 @@
###
myconf+=" --disable-gui"
myconf+=" --disable-vesa"
-   uses="dxr3 ggi vdpau xinerama xv"
+   uses="ggi vdpau xinerama xv"
for i in ${uses}; do
use ${i} || myconf+=" --disable-${i}"
done



1.14 media-video/mplayer/mplayer-1.1.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mplayer/mplayer-1.1.1-r1.ebuild?rev=1.14&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mplayer/mplayer-1.1.1-r1.ebuild?rev=1.14&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mplayer/mplayer-1.1.1-r1.ebuild?r1=1.13&r2=1.14

Index: mplayer-1.1.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.1.1-r1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- mplayer-1.1.1-r1.ebuild 17 May 2014 14:52:06 -  1.13
+++ mplayer-1.1.1-r1.ebuild 28 Jul 2014 01:27:14 -  1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.1.1-r1.ebuild,v 1.13 
2014/05/17 14:52:06 swift Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.1.1-r1.ebuild,v 1.14 
2014/07/28 01:27:14 patrick Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 IUSE="3dnow 3dnowext +a52 aalib +alsa altivec aqua bidi bindist bl bluray
 bs2b cddb +cdio cdparanoia cpudetection debug dga
-directfb doc +dts +dv dvb +dvd +dvdnav dxr3 +enca +encode faac +faad fbcon
+directfb doc +dts +dv dvb +dvd +dvdnav +enca +encode faac +faad fbcon
 ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa
 +libass libcaca libmpeg2 lirc +live lzo mad md5sum +mmx mmxext mng +mp3 nas
 +network nut openal +opengl +osdmenu oss png pnm pulseaudio pvr +quicktime
@@ -141,7 +141,6 @@
 DEPEND="${RDEPEND}
virtual/pkgconfig
dga? ( x11-proto/xf86dgaproto )
-   dxr3? ( media-video/em8300-libraries )
X? ( ${X_DEPS} )
xinerama? ( x11-proto/xineramaproto )
xscreensaver? ( x11-proto/scrnsaverproto )
@@ -174,7 +173,6 @@
dvdnav? ( dvd )
libass? ( truetype )
truetype? ( iconv )
-   dxr3? ( X )
ggi? (

[gentoo-commits] gentoo-x86 commit in app-crypt/trousers: trousers-0.3.10-r1.ebuild ChangeLog

2014-07-27 Thread Mikle Kolyada (zlogene)
zlogene 14/07/27 23:41:47

  Modified: trousers-0.3.10-r1.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #516844
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.6  app-crypt/trousers/trousers-0.3.10-r1.ebuild

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

Index: trousers-0.3.10-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/trousers/trousers-0.3.10-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- trousers-0.3.10-r1.ebuild   27 Jul 2014 19:04:54 -  1.5
+++ trousers-0.3.10-r1.ebuild   27 Jul 2014 23:41:47 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-crypt/trousers/trousers-0.3.10-r1.ebuild,v 1.5 
2014/07/27 19:04:54 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-crypt/trousers/trousers-0.3.10-r1.ebuild,v 1.6 
2014/07/27 23:41:47 zlogene Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="CPL-1.0 GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~m68k ~s390 ~sh x86"
+KEYWORDS="amd64 arm ~arm64 ~m68k ~s390 ~sh x86"
 IUSE="doc selinux" # gtk
 
 # gtk support presently does NOT compile.



1.51 app-crypt/trousers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/ChangeLog?rev=1.51&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/ChangeLog?rev=1.51&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/ChangeLog?r1=1.50&r2=1.51

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/trousers/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog   27 Jul 2014 19:04:54 -  1.50
+++ ChangeLog   27 Jul 2014 23:41:47 -  1.51
@@ -1,6 +1,9 @@
 # ChangeLog for app-crypt/trousers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/trousers/ChangeLog,v 1.50 
2014/07/27 19:04:54 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/trousers/ChangeLog,v 1.51 
2014/07/27 23:41:47 zlogene Exp $
+
+  27 Jul 2014; Mikle Kolyada  trousers-0.3.10-r1.ebuild:
+  amd64 stable wrt bug #516844
 
   27 Jul 2014; Markus Meier  trousers-0.3.10-r1.ebuild:
   arm stable, bug #516844






[gentoo-commits] gentoo commit in xml/htdocs/security/en/glsa: glsa-201407-05.xml

2014-07-27 Thread Tobias Heinlein (keytoaster)
keytoaster14/07/27 22:47:39

  Added:glsa-201407-05.xml
  Log:
  GLSA 201407-05

Revision  ChangesPath
1.1  xml/htdocs/security/en/glsa/glsa-201407-05.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201407-05.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201407-05.xml?rev=1.1&content-type=text/plain

Index: glsa-201407-05.xml
===



http://www.gentoo.org/dtd/glsa.dtd";>

  OpenSSL: Multiple vulnerabilities
  Multiple vulnerabilities have been found in OpenSSL, possibly
allowing remote attackers to execute arbitrary code.
  
  openssl
  July 27, 2014
  July 27, 2014: 1
  512506
  remote
  

  1.0.1h-r1
  1.0.0m
  0.9.8z_p1
  0.9.8z_p2
  0.9.8z_p3
  0.9.8z_p4
  0.9.8z_p5
  1.0.1h-r1

  
  
OpenSSL is an Open Source toolkit implementing the Secure Sockets Layer
  (SSL v2/v3) and Transport Layer Security (TLS v1) as well as a general
  purpose cryptography library.

  
  
Multiple vulnerabilities have been discovered in OpenSSL. Please review
  the OpenSSL Security Advisory [05 Jun 2014] and the CVE identifiers
  referenced below for details.

  
  
A remote attacker could send specially crafted DTLS fragments to an
  OpenSSL DTLS client or server to possibly execute arbitrary code with the
  privileges of the process using OpenSSL.


Furthermore, an attacker could force the use of weak keying material in
  OpenSSL SSL/TLS clients and servers, inject data across sessions, or
  cause a Denial of Service via various vectors.

  
  
There is no known workaround at this time.
  
  
All OpenSSL users should upgrade to the latest version:


  # emerge --sync
  # emerge --ask --oneshot --verbose ">=dev-libs/openssl-1.0.1h-r1"


  
  
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-5298";>CVE-2010-5298
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0195";>CVE-2014-0195
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0198";>CVE-2014-0198
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0221";>CVE-2014-0221
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0224";>CVE-2014-0224
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-3470";>CVE-2014-3470
http://www.openssl.org/news/secadv_20140605.txt";>OpenSSL
  Security Advisory [05 Jun 2014]

  
  
keytoaster
  
  
keytoaster
  







[gentoo-commits] gentoo-x86 commit in sys-fs/eudev: eudev-1.9-r2.ebuild ChangeLog

2014-07-27 Thread Anthony G. Basile (blueness)
blueness14/07/27 22:01:06

  Modified: eudev-1.9-r2.ebuild ChangeLog
  Log:
  Stable on ppc and ppc64, bug #516524
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.3  sys-fs/eudev/eudev-1.9-r2.ebuild

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

Index: eudev-1.9-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.9-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- eudev-1.9-r2.ebuild 27 Jul 2014 19:10:41 -  1.2
+++ eudev-1.9-r2.ebuild 27 Jul 2014 22:01:06 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.9-r2.ebuild,v 1.2 
2014/07/27 19:10:41 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.9-r2.ebuild,v 1.3 
2014/07/27 22:01:06 blueness Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
inherit git-2
 else
SRC_URI="http://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64 arm ~hppa ~mips ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 arm ~hppa ~mips ppc ppc64 ~x86"
 fi
 
 DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"



1.132sys-fs/eudev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/ChangeLog?rev=1.132&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/ChangeLog?rev=1.132&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/ChangeLog?r1=1.131&r2=1.132

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog   27 Jul 2014 19:10:41 -  1.131
+++ ChangeLog   27 Jul 2014 22:01:06 -  1.132
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/eudev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/ChangeLog,v 1.131 2014/07/27 
19:10:41 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/ChangeLog,v 1.132 2014/07/27 
22:01:06 blueness Exp $
+
+  27 Jul 2014; Anthony G. Basile  eudev-1.9-r2.ebuild:
+  Stable on ppc and ppc64, bug #516524
 
   27 Jul 2014; Markus Meier  eudev-1.9-r2.ebuild:
   arm stable, bug #516524






[gentoo-commits] gentoo-x86 commit in net-wireless/yatebts: yatebts-9999.ebuild yatebts-4.0.0.ebuild ChangeLog

2014-07-27 Thread Richard Farina (zerochaos)
zerochaos14/07/27 21:44:56

  Modified: yatebts-.ebuild yatebts-4.0.0.ebuild ChangeLog
  Log:
  adding ~arm
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.3  net-wireless/yatebts/yatebts-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/yatebts/yatebts-.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/yatebts/yatebts-.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/yatebts/yatebts-.ebuild?r1=1.2&r2=1.3

Index: yatebts-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/yatebts/yatebts-.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- yatebts-.ebuild 25 Jul 2014 23:38:33 -  1.2
+++ yatebts-.ebuild 27 Jul 2014 21:44:56 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/yatebts/yatebts-.ebuild,v 
1.2 2014/07/25 23:38:33 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/yatebts/yatebts-.ebuild,v 
1.3 2014/07/27 21:44:56 zerochaos Exp $
 
 EAPI=5
 
@@ -25,7 +25,7 @@
inherit subversion
KEYWORDS=""
 else
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
SRC_URI="http://yate.null.ro/tarballs/${PN}4/yate-bts-${PV}-1.tar.gz";
S="${WORKDIR}/yate-bts"
 fi



1.2  net-wireless/yatebts/yatebts-4.0.0.ebuild

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

Index: yatebts-4.0.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/yatebts/yatebts-4.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- yatebts-4.0.0.ebuild25 Jul 2014 23:38:33 -  1.1
+++ yatebts-4.0.0.ebuild27 Jul 2014 21:44:56 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/yatebts/yatebts-4.0.0.ebuild,v 
1.1 2014/07/25 23:38:33 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/yatebts/yatebts-4.0.0.ebuild,v 
1.2 2014/07/27 21:44:56 zerochaos Exp $
 
 EAPI=5
 
@@ -25,7 +25,7 @@
inherit subversion
KEYWORDS=""
 else
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
SRC_URI="http://yate.null.ro/tarballs/${PN}4/yate-bts-${PV}-1.tar.gz";
S="${WORKDIR}/yate-bts"
 fi



1.3  net-wireless/yatebts/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/yatebts/ChangeLog?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/yatebts/ChangeLog?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/yatebts/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/yatebts/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   25 Jul 2014 23:38:33 -  1.2
+++ ChangeLog   27 Jul 2014 21:44:56 -  1.3
@@ -1,6 +1,10 @@
 # ChangeLog for net-wireless/yatebts
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/yatebts/ChangeLog,v 1.2 
2014/07/25 23:38:33 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/yatebts/ChangeLog,v 1.3 
2014/07/27 21:44:56 zerochaos Exp $
+
+  27 Jul 2014; Rick Farina  yatebts-4.0.0.ebuild,
+  yatebts-.ebuild:
+  adding ~arm
 
 *yatebts-4.0.0 (25 Jul 2014)
 






[gentoo-commits] gentoo-x86 commit in net-voip/yate: yate-9999.ebuild yate-5.4.0.ebuild ChangeLog

2014-07-27 Thread Richard Farina (zerochaos)
zerochaos14/07/27 21:41:22

  Modified: yate-.ebuild yate-5.4.0.ebuild ChangeLog
  Log:
  adding ~arm
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.5  net-voip/yate/yate-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/yate/yate-.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/yate/yate-.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/yate/yate-.ebuild?r1=1.4&r2=1.5

Index: yate-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-voip/yate/yate-.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- yate-.ebuild25 Jul 2014 20:12:38 -  1.4
+++ yate-.ebuild27 Jul 2014 21:41:21 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/yate/yate-.ebuild,v 1.4 
2014/07/25 20:12:38 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/yate/yate-.ebuild,v 1.5 
2014/07/27 21:41:21 zerochaos Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
KEYWORDS=""
 else
SRC_URI="http://voip.null.ro/tarballs/${PN}5/${P}-1.tar.gz";
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
S="${WORKDIR}/${PN}"
 fi
 



1.2  net-voip/yate/yate-5.4.0.ebuild

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

Index: yate-5.4.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-voip/yate/yate-5.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- yate-5.4.0.ebuild   25 Jul 2014 20:38:40 -  1.1
+++ yate-5.4.0.ebuild   27 Jul 2014 21:41:21 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/yate/yate-5.4.0.ebuild,v 1.1 
2014/07/25 20:38:40 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/yate/yate-5.4.0.ebuild,v 1.2 
2014/07/27 21:41:21 zerochaos Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
KEYWORDS=""
 else
SRC_URI="http://voip.null.ro/tarballs/${PN}5/${P}-1.tar.gz";
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
S="${WORKDIR}/${PN}"
 fi
 



1.31 net-voip/yate/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/yate/ChangeLog?rev=1.31&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/yate/ChangeLog?rev=1.31&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/yate/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-voip/yate/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   25 Jul 2014 20:38:40 -  1.30
+++ ChangeLog   27 Jul 2014 21:41:21 -  1.31
@@ -1,6 +1,10 @@
 # ChangeLog for net-voip/yate
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/yate/ChangeLog,v 1.30 2014/07/25 
20:38:40 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/yate/ChangeLog,v 1.31 2014/07/27 
21:41:21 zerochaos Exp $
+
+  27 Jul 2014; Rick Farina  yate-5.4.0.ebuild,
+  yate-.ebuild:
+  adding ~arm
 
 *yate-5.4.0 (25 Jul 2014)
 






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

2014-07-27 Thread Richard Farina (zerochaos)
zerochaos14/07/27 21:41:00

  Modified: ChangeLog package.use.mask
  Log:
  mask net-voip/yate[dahdi] since net-misc/dahdi can't build on arm

Revision  ChangesPath
1.311profiles/arch/arm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/ChangeLog?rev=1.311&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/ChangeLog?rev=1.311&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/ChangeLog?r1=1.310&r2=1.311

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v
retrieving revision 1.310
retrieving revision 1.311
diff -u -r1.310 -r1.311
--- ChangeLog   22 Jul 2014 17:46:37 -  1.310
+++ ChangeLog   27 Jul 2014 21:40:59 -  1.311
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/ARM profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v 1.310 
2014/07/22 17:46:37 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v 1.311 
2014/07/27 21:40:59 zerochaos Exp $
+
+  27 Jul 2014; Rick Farina  package.use.mask:
+  Mask net-voip/yate[dahdi] since net-misc/dahdi doesn't build
 
   22 Jul 2014; Rick Farina  package.use.mask:
   Mask dev-python/gmpy[mpir] since mpir doesn't build



1.214profiles/arch/arm/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v
retrieving revision 1.213
retrieving revision 1.214
diff -u -r1.213 -r1.214
--- package.use.mask22 Jul 2014 17:46:37 -  1.213
+++ package.use.mask27 Jul 2014 21:40:59 -  1.214
@@ -1,6 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.213 
2014/07/22 17:46:37 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.214 
2014/07/27 21:40:59 zerochaos Exp $
+
+# Rick Farina  (27 Jul 2014)
+# net-misc/dahdi doesn't build
+net-voip/yate dahdi
 
 # Rick Farina  (22 Jul 2014)
 # sci-libs/mpir doesn't build






[gentoo-commits] gentoo-x86 commit in www-servers/apache: apache-2.4.10.ebuild ChangeLog

2014-07-27 Thread Christoph Junghans (ottxor)
ottxor  14/07/27 21:07:07

  Modified: apache-2.4.10.ebuild ChangeLog
  Log:
  Added prefix support (bug #433736)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
C2000586)

Revision  ChangesPath
1.2  www-servers/apache/apache-2.4.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.10.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.10.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.10.ebuild?r1=1.1&r2=1.2

Index: apache-2.4.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- apache-2.4.10.ebuild24 Jul 2014 02:30:58 -  1.1
+++ apache-2.4.10.ebuild27 Jul 2014 21:07:07 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.10.ebuild,v 
1.1 2014/07/24 02:30:58 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.10.ebuild,v 
1.2 2014/07/27 21:07:07 ottxor Exp $
 
 EAPI=5
 
@@ -122,7 +122,7 @@
 # some helper scripts are Apache-1.1, thus both are here
 LICENSE="Apache-2.0 Apache-1.1"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos 
~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris"
 IUSE=""
 
 pkg_setup() {
@@ -157,25 +157,25 @@
 src_install() {
apache-2_src_install
for i in /usr/bin/{htdigest,logresolve,htpasswd,htdbm,ab,httxt2dbm}; do
-   rm "${D}"/$i || die "Failed to prune apache-tools bits"
+   rm "${ED}"/$i || die "Failed to prune apache-tools bits"
done
for i in /usr/share/man/man8/{rotatelogs.8,htcacheclean.8}; do
-   rm "${D}"/$i || die "Failed to prune apache-tools bits"
+   rm "${ED}"/$i || die "Failed to prune apache-tools bits"
done
for i in 
/usr/share/man/man1/{logresolve.1,htdbm.1,htdigest.1,htpasswd.1,dbmmanage.1,ab.1};
 do
-   rm "${D}"/$i || die "Failed to prune apache-tools bits"
+   rm "${ED}"/$i || die "Failed to prune apache-tools bits"
done
for i in /usr/sbin/{checkgid,fcgistarter,htcacheclean,rotatelogs}; do
-   rm "${D}/"$i || die "Failed to prune apache-tools bits"
+   rm "${ED}/"$i || die "Failed to prune apache-tools bits"
done
 
# install apxs in /usr/bin (bug #502384) and put a symlink into the 
# old location until all ebuilds and eclasses have been modified to
# use the new location.
local apxs="/usr/bin/apxs"
-   cp "${S}"/support/apxs "${D}"${apxs} || die "Failed to install apxs"
-   ln -s ../bin/apxs "${D}"/usr/sbin/apxs || die
-   chmod 0755 "${D}"${apxs} || die
+   cp "${S}"/support/apxs "${ED}"${apxs} || die "Failed to install apxs"
+   ln -s ../bin/apxs "${ED}"/usr/sbin/apxs || die
+   chmod 0755 "${ED}"${apxs} || die
 
# Note: wait for mod_systemd to be included in the next release,
# then apache2.4.service can be used and systemd support controlled



1.278www-servers/apache/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?rev=1.278&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?rev=1.278&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?r1=1.277&r2=1.278

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -r1.277 -r1.278
--- ChangeLog   24 Jul 2014 02:30:58 -  1.277
+++ ChangeLog   27 Jul 2014 21:07:07 -  1.278
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/apache
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.277 
2014/07/24 02:30:58 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.278 
2014/07/27 21:07:07 ottxor Exp $
+
+  27 Jul 2014; Christoph Junghans  apache-2.4.10.ebuild:
+  Added prefix support (bug #433736)
 
 *apache-2.4.10 (24 Jul 2014)
 






[gentoo-commits] gentoo-x86 commit in net-mail/dbmail: dbmail-3.1.17.ebuild ChangeLog

2014-07-27 Thread Thomas Raschbacher (lordvan)
lordvan 14/07/27 20:32:29

  Modified: ChangeLog
  Added:dbmail-3.1.17.ebuild
  Log:
  new version
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.64 net-mail/dbmail/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dbmail/ChangeLog?rev=1.64&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dbmail/ChangeLog?rev=1.64&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dbmail/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-mail/dbmail/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog   14 Jun 2014 10:57:08 -  1.63
+++ ChangeLog   27 Jul 2014 20:32:29 -  1.64
@@ -1,6 +1,11 @@
 # ChangeLog for net-mail/dbmail
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dbmail/ChangeLog,v 1.63 2014/06/14 
10:57:08 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dbmail/ChangeLog,v 1.64 2014/07/27 
20:32:29 lordvan Exp $
+
+*dbmail-3.1.17 (27 Jul 2014)
+
+  27 Jul 2014;  +dbmail-3.1.17.ebuild:
+  new version
 
   14 Jun 2014; Pawel Hajdan jr  dbmail-3.1.13.ebuild:
   x86 stable wrt bug #509774



1.1  net-mail/dbmail/dbmail-3.1.17.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dbmail/dbmail-3.1.17.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dbmail/dbmail-3.1.17.ebuild?rev=1.1&content-type=text/plain

Index: dbmail-3.1.17.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/dbmail/dbmail-3.1.17.ebuild,v 1.1 
2014/07/27 20:32:29 lordvan Exp $

EAPI="4"
inherit eutils multilib versionator user

DESCRIPTION="DBMail is an open-source project that enables storage of mail 
messages in a relational database."
HOMEPAGE="http://www.dbmail.org/";
SRC_URI="http://www.dbmail.org/download/$(get_version_component_range 
1-2)/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ldap sieve +sqlite ssl static"

DEPEND="dev-db/libzdb
sieve? ( >=mail-filter/libsieve-2.2.1 )
ldap? ( >=net-nds/openldap-2.3.33 )
app-text/asciidoc
app-text/xmlto
app-crypt/mhash
sys-libs/zlib
>=dev-libs/gmime-2.4.6:2.4
>=dev-libs/glib-2.16
dev-libs/libevent
ssl? ( dev-libs/openssl )"
#asciidoc and xmlto needed?
RDEPEND="${DEPEND}"

pkg_setup() {
enewgroup dbmail
enewuser dbmail -1 -1 /var/lib/dbmail dbmail
}

src_configure() {
local myconf=""
use ldap && myconf=${myconf}" --with-auth-ldap"

econf \
--sysconfdir=/etc/dbmail \
$(use_enable static) \
$(use_with sieve) \
${myconf}
}

src_compile() {
emake || die "emake failed"
}

src_install() {
emake DESTDIR="${D}" install || die "emake install failed"

dodoc AUTHORS BUGS ChangeLog README* INSTALL NEWS THANKS UPGRADING

dodoc -r sql
dodoc -r test-scripts
dodoc -r contrib
## TODO: install other contrib stuff

sed -i -e "s:nobody:dbmail:" dbmail.conf
sed -i -e "s:nogroup:dbmail:" dbmail.conf
sed -i -e "s:/var/run:/var/run/dbmail:" dbmail.conf
#sed -i -e "s:#library_directory:library_directory:" dbmail.conf

insinto /etc/dbmail
newins dbmail.conf dbmail.conf.dist

# change config path to our default and use the conf.d and init.d files 
from the contrib dir
sed -i -e "s:/etc/dbmail.conf:/etc/dbmail/dbmail.conf:" 
contrib/startup-scripts/gentoo/init.d-dbmail
#sed -i -e "s:exit 0:return 1:" 
contrib/startup-scripts/gentoo/init.d-dbmail
#sed -i -e "s:/var/run:/var/run/dbmail:" 
contrib/startup-scripts/gentoo/init.d-dbmail
#newconfd contrib/startup-scripts/gentoo/conf.d-dbmail dbmail
#newinitd contrib/startup-scripts/gentoo/init.d-dbmail dbmail
# use custom init scripts until updated in upstream contrib
newinitd "${FILESDIR}/dbmail-imapd.initd" dbmail-imapd
newinitd "${FILESDIR}/dbmail-lmtpd.initd" dbmail-lmtpd
newinitd "${FILESDIR}/dbmail-pop3d.initd" dbmail-pop3d
newinitd "${FILESDIR}/dbmail-timsieved.initd" dbmail-timsieved

dobin contrib/mailbox2dbmail/mailbox2dbmail
doman contrib/mailbox2dbmail/mailbox2dbmail.1
#doman man/*.{1,5,8}

# ldap schema
if use ldap; then
   insinto /etc/openldap/schema
   doins "${S}/dbmail.schema"
fi

keepdir /var/lib/dbmail
fperms 7

[gentoo-commits] proj/qt:master commit in: dev-qt/qtsvg/

2014-07-27 Thread Michael Palimaka
commit: 03e4afdf1fdbf0c9a45ee55bbb10c1729b6bb133
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 20:06:32 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 20:06:32 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=03e4afdf

[dev-qt/qtsvg] Disable broken test wrt bug #474004.

Package-Manager: portage-2.2.10

---
 dev-qt/qtsvg/qtsvg-5.3.1.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/dev-qt/qtsvg/qtsvg-5.3.1.ebuild b/dev-qt/qtsvg/qtsvg-5.3.1.ebuild
index abc85ab..6b595e6 100644
--- a/dev-qt/qtsvg/qtsvg-5.3.1.ebuild
+++ b/dev-qt/qtsvg/qtsvg-5.3.1.ebuild
@@ -25,3 +25,10 @@ RDEPEND="
 DEPEND="${RDEPEND}
test? ( >=dev-qt/qtxml-${PV}:5[debug=] )
 "
+
+src_prepare() {
+   # remove target - broken tests - bug #474004
+   sed -e "/installed_cmake.depends = cmake/d" -i tests/auto/auto.pro
+
+   qt5-build_src_prepare
+}



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

2014-07-27 Thread Michael Palimaka
commit: c4c66ad230789d5d1ec1bf0b8c735095d4b76dfa
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 19:53:48 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 19:53:48 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=c4c66ad2

[eclass] Disable cmake-related tests wrt bug #474004.

---
 eclass/qt5-build.eclass | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index d089b87..16b5d93 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -261,7 +261,8 @@ qt5-build_src_test() {
EOF
chmod +x "${testrunner}"
 
-   qt5_foreach_target_subdir qt5_qmake
+   # '-after SUBDIRS-=cmake' disables broken tests - bug #474004
+   qt5_foreach_target_subdir qt5_qmake -after SUBDIRS-=cmake
qt5_foreach_target_subdir emake
 
_test_runner() {
@@ -579,7 +580,7 @@ qt5_base_configure() {
 qt5_qmake() {
local projectdir=${PWD/#${QT5_BUILD_DIR}/${S}}
 
-   "${QT5_BUILD_DIR}"/bin/qmake "${projectdir}" \
+   "${QT5_BUILD_DIR}"/bin/qmake "${projectdir}" "$@" \
|| die "qmake failed (${projectdir})"
 }
 



[gentoo-commits] gentoo-x86 commit in media-gfx/evoluspencil/files: evoluspencil-2.0.4-exportpng.patch

2014-07-27 Thread Michael Palimaka (kensington)
kensington14/07/27 19:44:15

  Removed:  evoluspencil-2.0.4-exportpng.patch
  Log:
  Remove old.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x06B1F38DCA45A1EC!)



[gentoo-commits] gentoo-x86 commit in media-gfx/evoluspencil: ChangeLog evoluspencil-2.0.4.ebuild

2014-07-27 Thread Michael Palimaka (kensington)
kensington14/07/27 19:44:14

  Modified: ChangeLog
  Removed:  evoluspencil-2.0.4.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x06B1F38DCA45A1EC!)

Revision  ChangesPath
1.9  media-gfx/evoluspencil/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/evoluspencil/ChangeLog?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/evoluspencil/ChangeLog?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/evoluspencil/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/evoluspencil/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   22 Jul 2014 19:16:13 -  1.8
+++ ChangeLog   27 Jul 2014 19:44:14 -  1.9
@@ -1,6 +1,10 @@
 # ChangeLog for media-gfx/evoluspencil
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/evoluspencil/ChangeLog,v 1.8 
2014/07/22 19:16:13 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/evoluspencil/ChangeLog,v 1.9 
2014/07/27 19:44:14 kensington Exp $
+
+  27 Jul 2014; Michael Palimaka 
+  -evoluspencil-2.0.4.ebuild, -files/evoluspencil-2.0.4-exportpng.patch:
+  Remove old.
 
   22 Jul 2014; Pacho Ramos  evoluspencil-2.0.5.ebuild:
   amd64/x86 stable, bug #507314






[gentoo-commits] proj/kde:master commit in: kde-base/plasma-desktop/

2014-07-27 Thread Michael Palimaka
commit: 6d52447d3cb0cd9a10ae0e0ecdc2764acccbe5ac
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 19:11:52 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 19:11:52 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=6d52447d

[kde-base/plasma-desktop] Add missing dependency.

org.kde.kded5 is called via dbus.

Package-Manager: portage-2.2.10

---
 kde-base/plasma-desktop/plasma-desktop-5.0.0.ebuild| 1 +
 kde-base/plasma-desktop/plasma-desktop-5.0..ebuild | 1 +
 kde-base/plasma-desktop/plasma-desktop-.ebuild | 1 +
 3 files changed, 3 insertions(+)

diff --git a/kde-base/plasma-desktop/plasma-desktop-5.0.0.ebuild 
b/kde-base/plasma-desktop/plasma-desktop-5.0.0.ebuild
index 0b9e397..d411896 100644
--- a/kde-base/plasma-desktop/plasma-desktop-5.0.0.ebuild
+++ b/kde-base/plasma-desktop/plasma-desktop-5.0.0.ebuild
@@ -83,6 +83,7 @@ COMMON_DEPEND="
)
 "
 RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
sys-apps/accountsservice
!kde-base/attica:4
!kde-base/knetattach:4

diff --git a/kde-base/plasma-desktop/plasma-desktop-5.0..ebuild 
b/kde-base/plasma-desktop/plasma-desktop-5.0..ebuild
index cee1847..198e681 100644
--- a/kde-base/plasma-desktop/plasma-desktop-5.0..ebuild
+++ b/kde-base/plasma-desktop/plasma-desktop-5.0..ebuild
@@ -83,6 +83,7 @@ COMMON_DEPEND="
)
 "
 RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
sys-apps/accountsservice
!kde-base/attica:4
!kde-base/kcontrol:4

diff --git a/kde-base/plasma-desktop/plasma-desktop-.ebuild 
b/kde-base/plasma-desktop/plasma-desktop-.ebuild
index cee1847..198e681 100644
--- a/kde-base/plasma-desktop/plasma-desktop-.ebuild
+++ b/kde-base/plasma-desktop/plasma-desktop-.ebuild
@@ -83,6 +83,7 @@ COMMON_DEPEND="
)
 "
 RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
sys-apps/accountsservice
!kde-base/attica:4
!kde-base/kcontrol:4



[gentoo-commits] gentoo-x86 commit in dev-python/jinja: ChangeLog jinja-2.7.3.ebuild

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:11:08

  Modified: ChangeLog jinja-2.7.3.ebuild
  Log:
  arm stable, bug #497690
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.114dev-python/jinja/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jinja/ChangeLog?rev=1.114&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jinja/ChangeLog?rev=1.114&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jinja/ChangeLog?r1=1.113&r2=1.114

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/jinja/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog   23 Jul 2014 10:44:55 -  1.113
+++ ChangeLog   27 Jul 2014 19:11:08 -  1.114
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/jinja
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/jinja/ChangeLog,v 1.113 
2014/07/23 10:44:55 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/jinja/ChangeLog,v 1.114 
2014/07/27 19:11:08 maekke Exp $
+
+  27 Jul 2014; Markus Meier  jinja-2.7.3.ebuild:
+  arm stable, bug #497690
 
   23 Jul 2014; Tobias Klausmann  jinja-2.7.3.ebuild:
   Stable on alpha, bug #497690



1.4  dev-python/jinja/jinja-2.7.3.ebuild

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

Index: jinja-2.7.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/jinja/jinja-2.7.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- jinja-2.7.3.ebuild  23 Jul 2014 10:44:55 -  1.3
+++ jinja-2.7.3.ebuild  27 Jul 2014 19:11:08 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/jinja/jinja-2.7.3.ebuild,v 1.3 
2014/07/23 10:44:55 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/jinja/jinja-2.7.3.ebuild,v 1.4 
2014/07/27 19:11:08 maekke Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris"
 IUSE="doc examples"
 
 RDEPEND="dev-python/markupsafe[${PYTHON_USEDEP}]






[gentoo-commits] gentoo-x86 commit in sys-fs/eudev: ChangeLog eudev-1.9-r2.ebuild

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:10:41

  Modified: ChangeLog eudev-1.9-r2.ebuild
  Log:
  arm stable, bug #516524
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.131sys-fs/eudev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/ChangeLog?rev=1.131&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/ChangeLog?rev=1.131&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/ChangeLog?r1=1.130&r2=1.131

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   25 Jul 2014 12:22:39 -  1.130
+++ ChangeLog   27 Jul 2014 19:10:41 -  1.131
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/eudev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/ChangeLog,v 1.130 2014/07/25 
12:22:39 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/ChangeLog,v 1.131 2014/07/27 
19:10:41 maekke Exp $
+
+  27 Jul 2014; Markus Meier  eudev-1.9-r2.ebuild:
+  arm stable, bug #516524
 
   25 Jul 2014; Anthony G. Basile  eudev-1.3.ebuild:
   Drop 1.3 for all except ia64



1.2  sys-fs/eudev/eudev-1.9-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.9-r2.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.9-r2.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.9-r2.ebuild?r1=1.1&r2=1.2

Index: eudev-1.9-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.9-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- eudev-1.9-r2.ebuild 25 Jul 2014 12:12:15 -  1.1
+++ eudev-1.9-r2.ebuild 27 Jul 2014 19:10:41 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.9-r2.ebuild,v 1.1 
2014/07/25 12:12:15 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.9-r2.ebuild,v 1.2 
2014/07/27 19:10:41 maekke Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
inherit git-2
 else
SRC_URI="http://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 arm ~hppa ~mips ~ppc ~ppc64 ~x86"
 fi
 
 DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"






[gentoo-commits] gentoo-x86 commit in dev-ruby/rrdtool-bindings: ChangeLog rrdtool-bindings-1.4.8.ebuild

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:09:56

  Modified: ChangeLog rrdtool-bindings-1.4.8.ebuild
  Log:
  arm stable, bug #517234
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.7  dev-ruby/rrdtool-bindings/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   22 Jul 2014 13:07:48 -  1.6
+++ ChangeLog   27 Jul 2014 19:09:56 -  1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rrdtool-bindings
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v 1.6 
2014/07/22 13:07:48 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v 1.7 
2014/07/27 19:09:56 maekke Exp $
+
+  27 Jul 2014; Markus Meier  rrdtool-bindings-1.4.8.ebuild:
+  arm stable, bug #517234
 
   22 Jul 2014; Tobias Klausmann 
   rrdtool-bindings-1.4.8.ebuild:



1.7  dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild?r1=1.6&r2=1.7

Index: rrdtool-bindings-1.4.8.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rrdtool-bindings-1.4.8.ebuild   22 Jul 2014 13:07:48 -  1.6
+++ rrdtool-bindings-1.4.8.ebuild   27 Jul 2014 19:09:56 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild,v
 1.6 2014/07/22 13:07:48 klausman Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild,v
 1.7 2014/07/27 19:09:56 maekke Exp $
 
 EAPI="5"
 
@@ -19,7 +19,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris"
 
 # Block on older versions of rrdtool that install the bindings themselves.
 # requires rrd_xport which requires rrd_graph 






[gentoo-commits] gentoo-x86 commit in net-analyzer/rrdtool: ChangeLog rrdtool-1.4.8-r1.ebuild

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:09:31

  Modified: ChangeLog rrdtool-1.4.8-r1.ebuild
  Log:
  arm stable, bug #517234
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.270net-analyzer/rrdtool/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/ChangeLog?rev=1.270&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/ChangeLog?rev=1.270&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/ChangeLog?r1=1.269&r2=1.270

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v
retrieving revision 1.269
retrieving revision 1.270
diff -u -r1.269 -r1.270
--- ChangeLog   22 Jul 2014 13:07:39 -  1.269
+++ ChangeLog   27 Jul 2014 19:09:31 -  1.270
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/rrdtool
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.269 
2014/07/22 13:07:39 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.270 
2014/07/27 19:09:31 maekke Exp $
+
+  27 Jul 2014; Markus Meier  rrdtool-1.4.8-r1.ebuild:
+  arm stable, bug #517234
 
   22 Jul 2014; Tobias Klausmann  rrdtool-1.4.8-r1.ebuild:
   Stable on alpha, bug #517234



1.5  net-analyzer/rrdtool/rrdtool-1.4.8-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.4.8-r1.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.4.8-r1.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.4.8-r1.ebuild?r1=1.4&r2=1.5

Index: rrdtool-1.4.8-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.4.8-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rrdtool-1.4.8-r1.ebuild 22 Jul 2014 13:07:39 -  1.4
+++ rrdtool-1.4.8-r1.ebuild 27 Jul 2014 19:09:31 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.4.8-r1.ebuild,v 1.4 
2014/07/22 13:07:39 klausman Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.4.8-r1.ebuild,v 1.5 
2014/07/27 19:09:31 maekke Exp $
 
 EAPI="5"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris"
 IUSE="dbi doc +graph lua perl python rrdcgi static-libs tcl tcpd"
 
 RDEPEND="






[gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.12.2-r1.ebuild

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:08:40

  Modified: ChangeLog cmake-2.8.12.2-r1.ebuild
  Log:
  arm stable, bug #517016
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.292dev-util/cmake/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.292&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.292&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.291&r2=1.292

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -r1.291 -r1.292
--- ChangeLog   27 Jul 2014 11:55:54 -  1.291
+++ ChangeLog   27 Jul 2014 19:08:40 -  1.292
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/cmake
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.291 2014/07/27 
11:55:54 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.292 2014/07/27 
19:08:40 maekke Exp $
+
+  27 Jul 2014; Markus Meier  cmake-2.8.12.2-r1.ebuild:
+  arm stable, bug #517016
 
 *cmake-3.0.0 (27 Jul 2014)
 



1.8  dev-util/cmake/cmake-2.8.12.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.12.2-r1.ebuild?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.12.2-r1.ebuild?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.12.2-r1.ebuild?r1=1.7&r2=1.8

Index: cmake-2.8.12.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.12.2-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- cmake-2.8.12.2-r1.ebuild27 Jul 2014 11:38:49 -  1.7
+++ cmake-2.8.12.2-r1.ebuild27 Jul 2014 19:08:40 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.12.2-r1.ebuild,v 
1.7 2014/07/27 11:38:49 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.12.2-r1.ebuild,v 
1.8 2014/07/27 19:08:40 maekke Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 
1-2)/${MY_P}.tar.gz"
 
 LICENSE="CMake"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE="emacs ncurses qt4 qt5"
 






[gentoo-commits] gentoo-x86 commit in virtual/perl-ExtUtils-Install: perl-ExtUtils-Install-1.580.0-r1.ebuild ChangeLog

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:07:58

  Modified: perl-ExtUtils-Install-1.580.0-r1.ebuild ChangeLog
  Log:
  arm stable, bug #516636
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.6  
virtual/perl-ExtUtils-Install/perl-ExtUtils-Install-1.580.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-ExtUtils-Install/perl-ExtUtils-Install-1.580.0-r1.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-ExtUtils-Install/perl-ExtUtils-Install-1.580.0-r1.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-ExtUtils-Install/perl-ExtUtils-Install-1.580.0-r1.ebuild?r1=1.5&r2=1.6

Index: perl-ExtUtils-Install-1.580.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-ExtUtils-Install/perl-ExtUtils-Install-1.580.0-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- perl-ExtUtils-Install-1.580.0-r1.ebuild 13 Jul 2014 09:44:20 -  
1.5
+++ perl-ExtUtils-Install-1.580.0-r1.ebuild 27 Jul 2014 19:07:58 -  
1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-ExtUtils-Install/perl-ExtUtils-Install-1.580.0-r1.ebuild,v
 1.5 2014/07/13 09:44:20 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-ExtUtils-Install/perl-ExtUtils-Install-1.580.0-r1.ebuild,v
 1.6 2014/07/27 19:07:58 maekke Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE=""
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix 
~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



1.40 virtual/perl-ExtUtils-Install/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-ExtUtils-Install/ChangeLog?rev=1.40&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-ExtUtils-Install/ChangeLog?rev=1.40&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-ExtUtils-Install/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-ExtUtils-Install/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   24 Jul 2014 09:30:18 -  1.39
+++ ChangeLog   27 Jul 2014 19:07:58 -  1.40
@@ -1,6 +1,10 @@
 # ChangeLog for virtual/perl-ExtUtils-Install
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-ExtUtils-Install/ChangeLog,v 
1.39 2014/07/24 09:30:18 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-ExtUtils-Install/ChangeLog,v 
1.40 2014/07/27 19:07:58 maekke Exp $
+
+  27 Jul 2014; Markus Meier 
+  perl-ExtUtils-Install-1.580.0-r1.ebuild:
+  arm stable, bug #516636
 
   24 Jul 2014; Tobias Klausmann 
   perl-ExtUtils-Install-1.590.0-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in x11-misc/xscreensaver: xscreensaver-5.29.ebuild ChangeLog

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:07:12

  Modified: xscreensaver-5.29.ebuild ChangeLog
  Log:
  arm stable, bug #517054
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.4  x11-misc/xscreensaver/xscreensaver-5.29.ebuild

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

Index: xscreensaver-5.29.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-misc/xscreensaver/xscreensaver-5.29.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xscreensaver-5.29.ebuild27 Jul 2014 10:45:22 -  1.3
+++ xscreensaver-5.29.ebuild27 Jul 2014 19:07:12 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/xscreensaver/xscreensaver-5.29.ebuild,v 1.3 
2014/07/27 10:45:22 phajdan.jr Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/xscreensaver/xscreensaver-5.29.ebuild,v 1.4 
2014/07/27 19:07:12 maekke Exp $
 
 EAPI=5
 inherit autotools eutils flag-o-matic multilib pam
@@ -11,7 +11,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE="gdm jpeg new-login opengl pam +perl selinux suid xinerama"
 
 COMMON_DEPEND="dev-libs/libxml2



1.361x11-misc/xscreensaver/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xscreensaver/ChangeLog?rev=1.361&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xscreensaver/ChangeLog?rev=1.361&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xscreensaver/ChangeLog?r1=1.360&r2=1.361

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver/ChangeLog,v
retrieving revision 1.360
retrieving revision 1.361
diff -u -r1.360 -r1.361
--- ChangeLog   27 Jul 2014 10:45:22 -  1.360
+++ ChangeLog   27 Jul 2014 19:07:12 -  1.361
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/xscreensaver
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver/ChangeLog,v 1.360 
2014/07/27 10:45:22 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver/ChangeLog,v 1.361 
2014/07/27 19:07:12 maekke Exp $
+
+  27 Jul 2014; Markus Meier  xscreensaver-5.29.ebuild:
+  arm stable, bug #517054
 
   26 Jul 2014; Pawel Hajdan jr 
   xscreensaver-5.29.ebuild:






[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-2.2.5.ebuild ffmpeg-2.3.ebuild ChangeLog

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:06:39

  Modified: ffmpeg-2.2.5.ebuild ffmpeg-2.3.ebuild ChangeLog
  Log:
  add ~arm, bug #510340
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
072AD062)

Revision  ChangesPath
1.2  media-video/ffmpeg/ffmpeg-2.2.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.5.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.5.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.5.ebuild?r1=1.1&r2=1.2

Index: ffmpeg-2.2.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpeg-2.2.5.ebuild 27 Jul 2014 07:53:08 -  1.1
+++ ffmpeg-2.2.5.ebuild 27 Jul 2014 19:06:39 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.5.ebuild,v 
1.1 2014/07/27 07:53:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.5.ebuild,v 
1.2 2014/07/27 19:06:39 maekke Exp $
 
 EAPI="5"
 
@@ -37,7 +37,7 @@
 LICENSE="GPL-2 amr? ( GPL-3 ) encode? ( aac? ( GPL-3 ) )"
 SLOT="0/${FFMPEG_SUBSLOT}"
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~amd64 ~hppa ~mips ~x86 ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
+   KEYWORDS="~amd64 ~arm ~hppa ~mips ~x86 ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux"
 fi
 IUSE="
aac aacplus alsa amr amrenc bindist bluray +bzip2 cdio celt



1.3  media-video/ffmpeg/ffmpeg-2.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild?r1=1.2&r2=1.3

Index: ffmpeg-2.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ffmpeg-2.3.ebuild   27 Jul 2014 13:10:10 -  1.2
+++ ffmpeg-2.3.ebuild   27 Jul 2014 19:06:39 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild,v 1.2 
2014/07/27 13:10:10 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild,v 1.3 
2014/07/27 19:06:39 maekke Exp $
 
 EAPI="5"
 
@@ -37,7 +37,7 @@
 LICENSE="GPL-2 amr? ( GPL-3 ) encode? ( aac? ( GPL-3 ) ) samba? ( GPL-3 )"
 SLOT="0/${FFMPEG_SUBSLOT}"
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~amd64 ~hppa ~mips ~x86 ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
+   KEYWORDS="~amd64 ~arm ~hppa ~mips ~x86 ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux"
 fi
 IUSE="
aac aacplus alsa amr amrenc bindist bluray bs2b +bzip2 cdio celt



1.773media-video/ffmpeg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.773&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.773&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.772&r2=1.773

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.772
retrieving revision 1.773
diff -u -r1.772 -r1.773
--- ChangeLog   27 Jul 2014 13:10:10 -  1.772
+++ ChangeLog   27 Jul 2014 19:06:39 -  1.773
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpeg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.772 
2014/07/27 13:10:10 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.773 
2014/07/27 19:06:39 maekke Exp $
+
+  27 Jul 2014; Markus Meier  ffmpeg-2.2.5.ebuild,
+  ffmpeg-2.3.ebuild:
+  add ~arm, bug #510340
 
   27 Jul 2014; Samuli Suominen  ffmpeg-2.3.ebuild,
   ffmpeg-.ebuild:






[gentoo-commits] gentoo-x86 commit in net-analyzer/ifstatus: ChangeLog ifstatus-1.1.0-r1.ebuild

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:05:55

  Modified: ChangeLog ifstatus-1.1.0-r1.ebuild
  Log:
  arm stable, bug #516982
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.11 net-analyzer/ifstatus/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ifstatus/ChangeLog?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ifstatus/ChangeLog?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ifstatus/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/ifstatus/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   27 Jul 2014 11:35:17 -  1.10
+++ ChangeLog   27 Jul 2014 19:05:55 -  1.11
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/ifstatus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ifstatus/ChangeLog,v 1.10 
2014/07/27 11:35:17 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ifstatus/ChangeLog,v 1.11 
2014/07/27 19:05:55 maekke Exp $
+
+  27 Jul 2014; Markus Meier  ifstatus-1.1.0-r1.ebuild:
+  arm stable, bug #516982
 
   26 Jul 2014; Pawel Hajdan jr 
   ifstatus-1.1.0-r1.ebuild:



1.4  net-analyzer/ifstatus/ifstatus-1.1.0-r1.ebuild

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

Index: ifstatus-1.1.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/ifstatus/ifstatus-1.1.0-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ifstatus-1.1.0-r1.ebuild27 Jul 2014 11:35:17 -  1.3
+++ ifstatus-1.1.0-r1.ebuild27 Jul 2014 19:05:55 -  1.4
@@ -1,11 +1,11 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/ifstatus/ifstatus-1.1.0-r1.ebuild,v 1.3 
2014/07/27 11:35:17 phajdan.jr Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/ifstatus/ifstatus-1.1.0-r1.ebuild,v 1.4 
2014/07/27 19:05:55 maekke Exp $
 
 EAPI=5
 inherit eutils toolchain-funcs
 
-KEYWORDS="~amd64 ~arm ~ppc x86"
+KEYWORDS="~amd64 arm ~ppc x86"
 
 DESCRIPTION="A simple CLI program for displaying network statistics in real 
time."
 HOMEPAGE="http://ifstatus.sourceforge.net/";






[gentoo-commits] gentoo-x86 commit in app-crypt/trousers: trousers-0.3.10-r1.ebuild ChangeLog

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:04:55

  Modified: trousers-0.3.10-r1.ebuild ChangeLog
  Log:
  arm stable, bug #516844
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.5  app-crypt/trousers/trousers-0.3.10-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/trousers-0.3.10-r1.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/trousers-0.3.10-r1.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/trousers-0.3.10-r1.ebuild?r1=1.4&r2=1.5

Index: trousers-0.3.10-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/trousers/trousers-0.3.10-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- trousers-0.3.10-r1.ebuild   27 Jul 2014 11:13:12 -  1.4
+++ trousers-0.3.10-r1.ebuild   27 Jul 2014 19:04:54 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-crypt/trousers/trousers-0.3.10-r1.ebuild,v 1.4 
2014/07/27 11:13:12 phajdan.jr Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-crypt/trousers/trousers-0.3.10-r1.ebuild,v 1.5 
2014/07/27 19:04:54 maekke Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="CPL-1.0 GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~m68k ~s390 ~sh x86"
+KEYWORDS="~amd64 arm ~arm64 ~m68k ~s390 ~sh x86"
 IUSE="doc selinux" # gtk
 
 # gtk support presently does NOT compile.



1.50 app-crypt/trousers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/ChangeLog?rev=1.50&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/ChangeLog?rev=1.50&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/trousers/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/trousers/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog   27 Jul 2014 11:13:12 -  1.49
+++ ChangeLog   27 Jul 2014 19:04:54 -  1.50
@@ -1,6 +1,9 @@
 # ChangeLog for app-crypt/trousers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/trousers/ChangeLog,v 1.49 
2014/07/27 11:13:12 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/trousers/ChangeLog,v 1.50 
2014/07/27 19:04:54 maekke Exp $
+
+  27 Jul 2014; Markus Meier  trousers-0.3.10-r1.ebuild:
+  arm stable, bug #516844
 
   26 Jul 2014; Pawel Hajdan jr 
   trousers-0.3.10-r1.ebuild:






[gentoo-commits] proj/kde:master commit in: kde-base/kio-extras/

2014-07-27 Thread Michael Palimaka
commit: 481665f2f908122022c64b3533a24a7247e641fe
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 19:02:28 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 19:02:28 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=481665f2

[kde-base/kio-extras] Add missing dependency.

org.kde.kded5 is called via dbus.

Package-Manager: portage-2.2.10

---
 kde-base/kio-extras/kio-extras-5.0.0.ebuild| 7 +--
 kde-base/kio-extras/kio-extras-5.0..ebuild | 7 +--
 kde-base/kio-extras/kio-extras-.ebuild | 7 +--
 3 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/kde-base/kio-extras/kio-extras-5.0.0.ebuild 
b/kde-base/kio-extras/kio-extras-5.0.0.ebuild
index 959a1a8..3bbec8b 100644
--- a/kde-base/kio-extras/kio-extras-5.0.0.ebuild
+++ b/kde-base/kio-extras/kio-extras-5.0.0.ebuild
@@ -14,7 +14,7 @@ 
HOMEPAGE="https://projects.kde.org/projects/kde/workspace/kio-extras";
 KEYWORDS="~amd64"
 IUSE="exif openexr phonon samba +sftp slp"
 
-RDEPEND="
+COMMON_DEPEND="
$(add_frameworks_dep karchive 'bzip2,lzma')
$(add_frameworks_dep kbookmarks)
$(add_frameworks_dep kcodecs)
@@ -45,9 +45,12 @@ RDEPEND="
samba? ( || ( =net-fs/samba-4.0.0_alpha1[client] ) )
sftp? ( >=net-libs/libssh-0.6.0:=[sftp] )
slp? ( net-libs/openslp )
+"
+RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
!kde-base/kdebase-kioslaves:4
 "
-DEPEND="${RDEPEND}
+DEPEND="${COMMON_DEPEND}
x11-misc/shared-mime-info
 "
 

diff --git a/kde-base/kio-extras/kio-extras-5.0..ebuild 
b/kde-base/kio-extras/kio-extras-5.0..ebuild
index acfa6cf..6c3a18d 100644
--- a/kde-base/kio-extras/kio-extras-5.0..ebuild
+++ b/kde-base/kio-extras/kio-extras-5.0..ebuild
@@ -14,7 +14,7 @@ 
HOMEPAGE="https://projects.kde.org/projects/kde/workspace/kio-extras";
 KEYWORDS=""
 IUSE="exif openexr phonon samba +sftp slp"
 
-RDEPEND="
+COMMON_DEPEND="
$(add_frameworks_dep karchive 'bzip2,lzma')
$(add_frameworks_dep kbookmarks)
$(add_frameworks_dep kcodecs)
@@ -45,9 +45,12 @@ RDEPEND="
samba? ( || ( =net-fs/samba-4.0.0_alpha1[client] ) )
sftp? ( >=net-libs/libssh-0.6.0:=[sftp] )
slp? ( net-libs/openslp )
+"
+RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
!kde-base/kdebase-kioslaves:4
 "
-DEPEND="${RDEPEND}
+DEPEND="${COMMON_DEPEND}
x11-misc/shared-mime-info
 "
 

diff --git a/kde-base/kio-extras/kio-extras-.ebuild 
b/kde-base/kio-extras/kio-extras-.ebuild
index acfa6cf..6c3a18d 100644
--- a/kde-base/kio-extras/kio-extras-.ebuild
+++ b/kde-base/kio-extras/kio-extras-.ebuild
@@ -14,7 +14,7 @@ 
HOMEPAGE="https://projects.kde.org/projects/kde/workspace/kio-extras";
 KEYWORDS=""
 IUSE="exif openexr phonon samba +sftp slp"
 
-RDEPEND="
+COMMON_DEPEND="
$(add_frameworks_dep karchive 'bzip2,lzma')
$(add_frameworks_dep kbookmarks)
$(add_frameworks_dep kcodecs)
@@ -45,9 +45,12 @@ RDEPEND="
samba? ( || ( =net-fs/samba-4.0.0_alpha1[client] ) )
sftp? ( >=net-libs/libssh-0.6.0:=[sftp] )
slp? ( net-libs/openslp )
+"
+RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
!kde-base/kdebase-kioslaves:4
 "
-DEPEND="${RDEPEND}
+DEPEND="${COMMON_DEPEND}
x11-misc/shared-mime-info
 "
 



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

2014-07-27 Thread Michael Palimaka
commit: 76d6afba7362bcd40a20e26f781103917782b72e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 19:03:11 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 19:03:11 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=76d6afba

[kde-base/khotkeys] RDEPEND on COMMON_DEPEND too.

Package-Manager: portage-2.2.10

---
 kde-base/khotkeys/khotkeys-5.0.0.ebuild| 2 +-
 kde-base/khotkeys/khotkeys-5.0..ebuild | 2 +-
 kde-base/khotkeys/khotkeys-.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-base/khotkeys/khotkeys-5.0.0.ebuild 
b/kde-base/khotkeys/khotkeys-5.0.0.ebuild
index 57e997b..b2425b3 100644
--- a/kde-base/khotkeys/khotkeys-5.0.0.ebuild
+++ b/kde-base/khotkeys/khotkeys-5.0.0.ebuild
@@ -33,7 +33,7 @@ COMMON_DEPEND="
dev-qt/qtx11extras:5
x11-libs/libX11
 "
-RDEPEND="
+RDEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kded)
!kde-base/khotkeys:4
 "

diff --git a/kde-base/khotkeys/khotkeys-5.0..ebuild 
b/kde-base/khotkeys/khotkeys-5.0..ebuild
index 706ad3d..9891f28 100644
--- a/kde-base/khotkeys/khotkeys-5.0..ebuild
+++ b/kde-base/khotkeys/khotkeys-5.0..ebuild
@@ -33,7 +33,7 @@ COMMON_DEPEND="
dev-qt/qtx11extras:5
x11-libs/libX11
 "
-RDEPEND="
+RDEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kded)
!kde-base/khotkeys:4
 "

diff --git a/kde-base/khotkeys/khotkeys-.ebuild 
b/kde-base/khotkeys/khotkeys-.ebuild
index 706ad3d..9891f28 100644
--- a/kde-base/khotkeys/khotkeys-.ebuild
+++ b/kde-base/khotkeys/khotkeys-.ebuild
@@ -33,7 +33,7 @@ COMMON_DEPEND="
dev-qt/qtx11extras:5
x11-libs/libX11
 "
-RDEPEND="
+RDEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kded)
!kde-base/khotkeys:4
 "



[gentoo-commits] gentoo-x86 commit in media-libs/x265: x265-1.0.ebuild ChangeLog x265-1.2.ebuild x265-0.8.ebuild

2014-07-27 Thread Markus Meier (maekke)
maekke  14/07/27 19:01:15

  Modified: x265-1.0.ebuild ChangeLog x265-1.2.ebuild
x265-0.8.ebuild
  Log:
  add ~arm, bug #510340
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
072AD062)

Revision  ChangesPath
1.3  media-libs/x265/x265-1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.0.ebuild?r1=1.2&r2=1.3

Index: x265-1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- x265-1.0.ebuild 14 Jun 2014 02:40:06 -  1.2
+++ x265-1.0.ebuild 27 Jul 2014 19:01:15 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.0.ebuild,v 1.2 
2014/06/14 02:40:06 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.0.ebuild,v 1.3 
2014/07/27 19:01:15 maekke Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
EHG_REPO_URI="http://bitbucket.org/multicoreware/x265";
 else
SRC_URI="https://bitbucket.org/multicoreware/x265/get/${PV}.tar.bz2 -> 
${P}.tar.bz2"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
 fi
 
 DESCRIPTION="Library for encoding video streams into the H.265/HEVC format"



1.10 media-libs/x265/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   27 Jul 2014 13:06:12 -  1.9
+++ ChangeLog   27 Jul 2014 19:01:15 -  1.10
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/x265
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.9 2014/07/27 
13:06:12 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.10 2014/07/27 
19:01:15 maekke Exp $
+
+  27 Jul 2014; Markus Meier  x265-0.8.ebuild,
+  x265-1.0.ebuild, x265-1.2.ebuild:
+  add ~arm, bug #510340
 
 *x265-1.2 (27 Jul 2014)
 



1.2  media-libs/x265/x265-1.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.2.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.2.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.2.ebuild?r1=1.1&r2=1.2

Index: x265-1.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- x265-1.2.ebuild 27 Jul 2014 13:06:12 -  1.1
+++ x265-1.2.ebuild 27 Jul 2014 19:01:15 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.2.ebuild,v 1.1 
2014/07/27 13:06:12 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.2.ebuild,v 1.2 
2014/07/27 19:01:15 maekke Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
EHG_REPO_URI="http://bitbucket.org/multicoreware/x265";
 else
SRC_URI="https://bitbucket.org/multicoreware/x265/get/${PV}.tar.bz2 -> 
${P}.tar.bz2"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
 fi
 
 DESCRIPTION="Library for encoding video streams into the H.265/HEVC format"



1.4  media-libs/x265/x265-0.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-0.8.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-0.8.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-0.8.ebuild?r1=1.3&r2=1.4

Index: x265-0.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-0.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- x265-0.8.ebuild 20 May 2014 17:55:26 -  1.3
+++ x265-0.8.ebuild 27 Jul 2014 19:

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

2014-07-27 Thread Michael Palimaka
commit: 46a1ac93d3a06fe5e717c216acd537167da01baf
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 18:59:46 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 18:59:46 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=46a1ac93

[kde-base/khotkeys] Add missing dependency.

org.kde.kded5 is called via dbus.

Package-Manager: portage-2.2.10

---
 kde-base/khotkeys/khotkeys-5.0.0.ebuild| 7 +--
 kde-base/khotkeys/khotkeys-5.0..ebuild | 7 +--
 kde-base/khotkeys/khotkeys-.ebuild | 7 +--
 3 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/kde-base/khotkeys/khotkeys-5.0.0.ebuild 
b/kde-base/khotkeys/khotkeys-5.0.0.ebuild
index fe2e10c..57e997b 100644
--- a/kde-base/khotkeys/khotkeys-5.0.0.ebuild
+++ b/kde-base/khotkeys/khotkeys-5.0.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="KDE workspace hotkey module"
 KEYWORDS="~amd64"
 IUSE=""
 
-RDEPEND="
+COMMON_DEPEND="
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
@@ -32,9 +32,12 @@ RDEPEND="
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
x11-libs/libX11
+"
+RDEPEND="
+   $(add_frameworks_dep kded)
!kde-base/khotkeys:4
 "
-DEPEND="${RDEPEND}
+DEPEND="${COMMON_DEPEND}
x11-libs/libxcb
x11-libs/libXtst
x11-proto/xproto

diff --git a/kde-base/khotkeys/khotkeys-5.0..ebuild 
b/kde-base/khotkeys/khotkeys-5.0..ebuild
index a71b04c..706ad3d 100644
--- a/kde-base/khotkeys/khotkeys-5.0..ebuild
+++ b/kde-base/khotkeys/khotkeys-5.0..ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="KDE workspace hotkey module"
 KEYWORDS=""
 IUSE=""
 
-RDEPEND="
+COMMON_DEPEND="
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
@@ -32,9 +32,12 @@ RDEPEND="
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
x11-libs/libX11
+"
+RDEPEND="
+   $(add_frameworks_dep kded)
!kde-base/khotkeys:4
 "
-DEPEND="${RDEPEND}
+DEPEND="${COMMON_DEPEND}
x11-libs/libxcb
x11-libs/libXtst
x11-proto/xproto

diff --git a/kde-base/khotkeys/khotkeys-.ebuild 
b/kde-base/khotkeys/khotkeys-.ebuild
index a71b04c..706ad3d 100644
--- a/kde-base/khotkeys/khotkeys-.ebuild
+++ b/kde-base/khotkeys/khotkeys-.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="KDE workspace hotkey module"
 KEYWORDS=""
 IUSE=""
 
-RDEPEND="
+COMMON_DEPEND="
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
@@ -32,9 +32,12 @@ RDEPEND="
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
x11-libs/libX11
+"
+RDEPEND="
+   $(add_frameworks_dep kded)
!kde-base/khotkeys:4
 "
-DEPEND="${RDEPEND}
+DEPEND="${COMMON_DEPEND}
x11-libs/libxcb
x11-libs/libXtst
x11-proto/xproto



[gentoo-commits] proj/kde:master commit in: kde-base/plasma-workspace/

2014-07-27 Thread Michael Palimaka
commit: 0f7f6d069ef10398820ccce99d770ba4b374e795
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 18:57:28 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 18:57:28 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0f7f6d06

[kde-base/plasma-workspace] Add missing dependency.

org.kde.kded5 is called via dbus.

Package-Manager: portage-2.2.10

---
 kde-base/plasma-workspace/plasma-workspace-5.0.0.ebuild| 1 +
 kde-base/plasma-workspace/plasma-workspace-5.0..ebuild | 1 +
 kde-base/plasma-workspace/plasma-workspace-.ebuild | 1 +
 3 files changed, 3 insertions(+)

diff --git a/kde-base/plasma-workspace/plasma-workspace-5.0.0.ebuild 
b/kde-base/plasma-workspace/plasma-workspace-5.0.0.ebuild
index a77601a..08d7c53 100644
--- a/kde-base/plasma-workspace/plasma-workspace-5.0.0.ebuild
+++ b/kde-base/plasma-workspace/plasma-workspace-5.0.0.ebuild
@@ -79,6 +79,7 @@ COMMON_DEPEND="
)
 "
 RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
$(add_kdebase_dep milou)
dev-qt/qdbus:5
dev-qt/qtpaths:5

diff --git a/kde-base/plasma-workspace/plasma-workspace-5.0..ebuild 
b/kde-base/plasma-workspace/plasma-workspace-5.0..ebuild
index 0098cff..bbd4263 100644
--- a/kde-base/plasma-workspace/plasma-workspace-5.0..ebuild
+++ b/kde-base/plasma-workspace/plasma-workspace-5.0..ebuild
@@ -79,6 +79,7 @@ COMMON_DEPEND="
)
 "
 RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
$(add_kdebase_dep milou)
dev-qt/qdbus:5
dev-qt/qtpaths:5

diff --git a/kde-base/plasma-workspace/plasma-workspace-.ebuild 
b/kde-base/plasma-workspace/plasma-workspace-.ebuild
index 208aa4d..2783aa6 100644
--- a/kde-base/plasma-workspace/plasma-workspace-.ebuild
+++ b/kde-base/plasma-workspace/plasma-workspace-.ebuild
@@ -79,6 +79,7 @@ COMMON_DEPEND="
)
 "
 RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
$(add_kdebase_dep milou)
dev-qt/qdbus:5
dev-qt/qtpaths:5



[gentoo-commits] gentoo-x86 commit in app-crypt/p11-kit: ChangeLog p11-kit-0.20.3.ebuild

2014-07-27 Thread Tim Harder (radhermit)
radhermit14/07/27 18:26:48

  Modified: ChangeLog
  Added:p11-kit-0.20.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.66 app-crypt/p11-kit/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?rev=1.66&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?rev=1.66&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   22 Jun 2014 17:32:20 -  1.65
+++ ChangeLog   27 Jul 2014 18:26:48 -  1.66
@@ -1,6 +1,11 @@
 # ChangeLog for app-crypt/p11-kit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v 1.65 
2014/06/22 17:32:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v 1.66 
2014/07/27 18:26:48 radhermit Exp $
+
+*p11-kit-0.20.3 (27 Jul 2014)
+
+  27 Jul 2014; Tim Harder  +p11-kit-0.20.3.ebuild:
+  Version bump.
 
   22 Jun 2014; Michał Górny  p11-kit-0.20.2-r1.ebuild:
   Fix installing gtk-doc manual, reported by galtgendo.



1.1  app-crypt/p11-kit/p11-kit-0.20.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/p11-kit-0.20.3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/p11-kit-0.20.3.ebuild?rev=1.1&content-type=text/plain

Index: p11-kit-0.20.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/p11-kit-0.20.3.ebuild,v 
1.1 2014/07/27 18:26:48 radhermit Exp $

EAPI=5

inherit eutils multilib-minimal

DESCRIPTION="Provides a standard configuration setup for installing PKCS#11."
HOMEPAGE="http://p11-glue.freedesktop.org/p11-kit.html";
SRC_URI="http://p11-glue.freedesktop.org/releases/${P}.tar.gz";

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
IUSE="+asn1 debug +trust"
REQUIRED_USE="trust? ( asn1 )"

RDEPEND="asn1? ( >=dev-libs/libtasn1-3.4[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
virtual/pkgconfig"

pkg_setup() {
# disable unsafe tests, bug#502088
export FAKED_MODE=1
}

multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
$(use_enable trust trust-module) \
$(use_enable debug) \
$(use_with asn1 libtasn1)

if multilib_is_native_abi; then
# re-use provided documentation
ln -s "${S}"/doc/manual/html doc/manual/html || die
fi
}

multilib_src_install_all() {
prune_libtool_files --modules
}






[gentoo-commits] gentoo-x86 commit in media-libs/spandsp: spandsp-0.0.6_pre21.ebuild spandsp-0.0.6_pre12-r1.ebuild ChangeLog

2014-07-27 Thread Richard Farina (zerochaos)
zerochaos14/07/27 18:15:20

  Modified: spandsp-0.0.6_pre21.ebuild
spandsp-0.0.6_pre12-r1.ebuild ChangeLog
  Log:
  adding ~arm
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.3  media-libs/spandsp/spandsp-0.0.6_pre21.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild?r1=1.2&r2=1.3

Index: spandsp-0.0.6_pre21.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- spandsp-0.0.6_pre21.ebuild  6 May 2013 04:20:55 -   1.2
+++ spandsp-0.0.6_pre21.ebuild  27 Jul 2014 18:15:19 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild,v 1.2 
2013/05/06 04:20:55 mattst88 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild,v 1.3 
2014/07/27 18:15:19 zerochaos Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE="doc fixed-point mmx sse sse2 sse3 static-libs"
 
 RDEPEND="media-libs/tiff"



1.9  media-libs/spandsp/spandsp-0.0.6_pre12-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre12-r1.ebuild?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre12-r1.ebuild?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre12-r1.ebuild?r1=1.8&r2=1.9

Index: spandsp-0.0.6_pre12-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre12-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- spandsp-0.0.6_pre12-r1.ebuild   29 Jun 2013 19:23:56 -  1.8
+++ spandsp-0.0.6_pre12-r1.ebuild   27 Jul 2014 18:15:19 -  1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre12-r1.ebuild,v 1.8 
2013/06/29 19:23:56 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre12-r1.ebuild,v 1.9 
2014/07/27 18:15:19 zerochaos Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ppc ppc64 x86"
 IUSE="doc fixed-point static-libs"
 
 RDEPEND="media-libs/tiff"



1.31 media-libs/spandsp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/spandsp/ChangeLog?rev=1.31&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/spandsp/ChangeLog?rev=1.31&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/spandsp/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/spandsp/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   27 Oct 2013 09:39:16 -  1.30
+++ ChangeLog   27 Jul 2014 18:15:19 -  1.31
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/spandsp
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/ChangeLog,v 1.30 
2013/10/27 09:39:16 pacho Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/ChangeLog,v 1.31 
2014/07/27 18:15:19 zerochaos Exp $
+
+  27 Jul 2014; Rick Farina  
spandsp-0.0.6_pre12-r1.ebuild,
+  spandsp-0.0.6_pre21.ebuild:
+  adding ~arm
 
   27 Oct 2013; Pacho Ramos  metadata.xml:
   Tony was taking it






[gentoo-commits] gentoo-x86 commit in sys-fs/aufs-util: aufs-util-3.15_p20140728.ebuild ChangeLog

2014-07-27 Thread Justin Lecher (jlec)
jlec14/07/27 18:12:10

  Modified: ChangeLog
  Added:aufs-util-3.15_p20140728.ebuild
  Log:
  sys-fs/aufs-util: Bump to latest aufs3
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.32 sys-fs/aufs-util/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-util/ChangeLog?rev=1.32&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-util/ChangeLog?rev=1.32&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-util/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/aufs-util/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   21 Jul 2014 08:33:27 -  1.31
+++ ChangeLog   27 Jul 2014 18:12:09 -  1.32
@@ -1,6 +1,12 @@
 # ChangeLog for sys-fs/aufs-util
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs-util/ChangeLog,v 1.31 
2014/07/21 08:33:27 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs-util/ChangeLog,v 1.32 
2014/07/27 18:12:09 jlec Exp $
+
+*aufs-util-3.15_p20140728 (27 Jul 2014)
+
+  27 Jul 2014; Justin Lecher 
+  +aufs-util-3.15_p20140728.ebuild:
+  Bump to latest aufs3
 
 *aufs-util-3.15_p20140721 (21 Jul 2014)
 



1.1  sys-fs/aufs-util/aufs-util-3.15_p20140728.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-util/aufs-util-3.15_p20140728.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-util/aufs-util-3.15_p20140728.ebuild?rev=1.1&content-type=text/plain

Index: aufs-util-3.15_p20140728.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/aufs-util/aufs-util-3.15_p20140728.ebuild,v 1.1 
2014/07/27 18:12:09 jlec Exp $

EAPI=5

inherit flag-o-matic linux-info multilib toolchain-funcs

DESCRIPTION="Utilities are always necessary for aufs"
HOMEPAGE="http://aufs.sourceforge.net/";
SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz";
# git archive -v --prefix=${P}/ --remote=git://git.code.sf.net/p/aufs/aufs-util 
aufs3.9 -o ${P}.tar
# xz -ve9 *.tar

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

RDEPEND="
!sys-fs/aufs2
!

[gentoo-commits] gentoo-x86 commit in sys-fs/aufs-headers: aufs-headers-3.15_p20140728.ebuild ChangeLog

2014-07-27 Thread Justin Lecher (jlec)
jlec14/07/27 18:08:15

  Modified: ChangeLog
  Added:aufs-headers-3.15_p20140728.ebuild
  Log:
  sys-fs/aufs-headers: Version Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.22 sys-fs/aufs-headers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-headers/ChangeLog?rev=1.22&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-headers/ChangeLog?rev=1.22&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-headers/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/aufs-headers/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   21 Jul 2014 07:58:09 -  1.21
+++ ChangeLog   27 Jul 2014 18:08:14 -  1.22
@@ -1,6 +1,12 @@
 # ChangeLog for sys-fs/aufs-headers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs-headers/ChangeLog,v 1.21 
2014/07/21 07:58:09 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs-headers/ChangeLog,v 1.22 
2014/07/27 18:08:14 jlec Exp $
+
+*aufs-headers-3.15_p20140728 (27 Jul 2014)
+
+  27 Jul 2014; Justin Lecher 
+  +aufs-headers-3.15_p20140728.ebuild:
+  Version Bump
 
 *aufs-headers-3.15_p20140721 (21 Jul 2014)
 



1.1  sys-fs/aufs-headers/aufs-headers-3.15_p20140728.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-headers/aufs-headers-3.15_p20140728.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs-headers/aufs-headers-3.15_p20140728.ebuild?rev=1.1&content-type=text/plain

Index: aufs-headers-3.15_p20140728.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/aufs-headers/aufs-headers-3.15_p20140728.ebuild,v
 1.1 2014/07/27 18:08:14 jlec Exp $

EAPI=5

inherit versionator

DESCRIPTION="User space headers for aufs3"
HOMEPAGE="http://aufs.sourceforge.net/";
# Clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-linux.git
# Check aufs release Branch
# Create .config
# make headers_install INSTALL_HDR_PATH=${T}
# find ${T} -type f \( ! -name "*aufs*" \) -delete
# find ${T} -type d -empty -delete
SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz";

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

S="${WORKDIR}"

src_install() {
doheader -r include/*
}






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-mount-plugin: ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 18:02:36

  Modified: ChangeLog
  Log:
  Fix building with LINGUAS="ug" wrt #518336
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.27 xfce-extra/xfce4-mount-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-mount-plugin/ChangeLog?rev=1.27&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-mount-plugin/ChangeLog?rev=1.27&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-mount-plugin/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-mount-plugin/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   18 Jul 2014 20:00:42 -  1.26
+++ ChangeLog   27 Jul 2014 18:02:35 -  1.27
@@ -1,6 +1,10 @@
 # ChangeLog for xfce-extra/xfce4-mount-plugin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-mount-plugin/ChangeLog,v 
1.26 2014/07/18 20:00:42 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-mount-plugin/ChangeLog,v 
1.27 2014/07/27 18:02:35 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen 
+  files/xfce4-mount-plugin-0.6.7-LINGUAS.patch:
+  Fix building with LINGUAS="ug" wrt #518336
 
   18 Jul 2014; Samuli Suominen 
   -xfce4-mount-plugin-0.6.4.ebuild:






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-mount-plugin/files: xfce4-mount-plugin-0.6.7-LINGUAS.patch

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 18:02:35

  Modified: xfce4-mount-plugin-0.6.7-LINGUAS.patch
  Log:
  Fix building with LINGUAS="ug" wrt #518336
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  
xfce-extra/xfce4-mount-plugin/files/xfce4-mount-plugin-0.6.7-LINGUAS.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-mount-plugin/files/xfce4-mount-plugin-0.6.7-LINGUAS.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-mount-plugin/files/xfce4-mount-plugin-0.6.7-LINGUAS.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-mount-plugin/files/xfce4-mount-plugin-0.6.7-LINGUAS.patch?r1=1.1&r2=1.2

Index: xfce4-mount-plugin-0.6.7-LINGUAS.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-mount-plugin/files/xfce4-mount-plugin-0.6.7-LINGUAS.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-mount-plugin-0.6.7-LINGUAS.patch  20 Jun 2014 13:44:42 -  
1.1
+++ xfce4-mount-plugin-0.6.7-LINGUAS.patch  27 Jul 2014 18:02:35 -  
1.2
@@ -8,7 +8,7 @@
  
  
 -ALL_LINGUAS="ar ast bg ca cs da de el en_AU en_GB es eu fi fr gl hr hu id 
is it ja ko lt lv ms nb nl oc pa pl pt_BR pt ru sk sq sr sv th tr ug uk ur_PK 
ur vi zh_CN zh_TW "
-+ALL_LINGUAS="ar ast ca cs da de el en_GB es eu fi fr gl hu id it ja ko lt 
lv nb nl pl pt_BR pt ru sq sv tr ug ur_PK ur vi zh_CN zh_TW "
++ALL_LINGUAS="ar ast ca cs da de el en_GB es eu fi fr gl hu id it ja ko lt 
lv nb nl pl pt_BR pt ru sq sv tr ur_PK ur vi zh_CN zh_TW "
  
 for ac_header in locale.h
  do :






[gentoo-commits] gentoo-x86 commit in app-leechcraft/lc-liznoo: lc-liznoo-9999.ebuild lc-liznoo-0.6.65.ebuild lc-liznoo-0.6.60.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 18:00:13

  Modified: lc-liznoo-.ebuild lc-liznoo-0.6.65.ebuild
lc-liznoo-0.6.60.ebuild ChangeLog
  Log:
  Sort out UPower hibernate and suspend status.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.4  app-leechcraft/lc-liznoo/lc-liznoo-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild?r1=1.3&r2=1.4

Index: lc-liznoo-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lc-liznoo-.ebuild   31 May 2014 20:41:19 -  1.3
+++ lc-liznoo-.ebuild   27 Jul 2014 18:00:13 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild,v 1.3 
2014/05/31 20:41:19 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild,v 1.4 
2014/07/27 18:00:13 ssuominen Exp $
 
 EAPI="4"
 
@@ -13,8 +13,15 @@
 IUSE="debug"
 
 DEPEND="~app-leechcraft/lc-core-${PV}
-   || ( sys-power/upower sys-power/upower-pm-utils )
x11-libs/qwt:6
dev-qt/qtdbus:4
virtual/leechcraft-trayarea"
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+   || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils )"
+
+pkg_postinst() {
+   if has_version '>=sys-power/upower-0.99'; then
+   ewarn "If you need hibernate and suspend support, you need to 
downgrade"
+   ewarn "sys-power/upower to 0.9.23 or switch to 
sys-power/upower-pm-utils"
+   fi
+}



1.3  app-leechcraft/lc-liznoo/lc-liznoo-0.6.65.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.65.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.65.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.65.ebuild?r1=1.2&r2=1.3

Index: lc-liznoo-0.6.65.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.65.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lc-liznoo-0.6.65.ebuild 31 May 2014 18:48:38 -  1.2
+++ lc-liznoo-0.6.65.ebuild 27 Jul 2014 18:00:13 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.65.ebuild,v 1.2 
2014/05/31 18:48:38 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.65.ebuild,v 1.3 
2014/07/27 18:00:13 ssuominen Exp $
 
 EAPI="4"
 
@@ -9,12 +9,19 @@
 DESCRIPTION="UPower-based power manager for LeechCraft"
 
 SLOT="0"
-KEYWORDS=" ~amd64 ~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="debug"
 
 DEPEND="~app-leechcraft/lc-core-${PV}
-   || ( sys-power/upower sys-power/upower-pm-utils )
x11-libs/qwt:6
dev-qt/qtdbus:4
virtual/leechcraft-trayarea"
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+   || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils )"
+
+pkg_postinst() {
+   if has_version '>=sys-power/upower-0.99'; then
+   ewarn "If you need hibernate and suspend support, you need to 
downgrade"
+   ewarn "sys-power/upower to 0.9.23 or switch to 
sys-power/upower-pm-utils"
+   fi
+}



1.5  app-leechcraft/lc-liznoo/lc-liznoo-0.6.60.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.60.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.60.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.60.ebuild?r1=1.4&r2=1.5

Index: lc-liznoo-0.6.60.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-liznoo/lc-liznoo-0.6.60.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- lc-liznoo-0.6.60.ebuild 1 Jun 2014 10:36:10 -   1.4
+++ lc-liznoo-0.6.60.ebuild 27 Jul 2014 18:00:13 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundat

[gentoo-commits] proj/kde:master commit in: net-im/ktp-kded-module/

2014-07-27 Thread Michael Palimaka
commit: 2610a7aa427ea9f9e68c8cd1c8aa83aa14d9911a
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 17:31:46 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 17:31:46 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2610a7aa

[net-im/ktp-kded-module] Fix MY_P wrt bug #518340.

Package-Manager: portage-2.2.10

---
 net-im/ktp-kded-module/ktp-kded-module-4..ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/ktp-kded-module/ktp-kded-module-4..ebuild 
b/net-im/ktp-kded-module/ktp-kded-module-4..ebuild
index 1047862..f9d1b91 100644
--- a/net-im/ktp-kded-module/ktp-kded-module-4..ebuild
+++ b/net-im/ktp-kded-module/ktp-kded-module-4..ebuild
@@ -29,4 +29,4 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
-[[ ${PV} ==  ]] || S=${WORKDIR}/${MY_P}
+[[ ${PV} == ** ]] || S=${WORKDIR}/${MY_P}



[gentoo-commits] proj/kde:master commit in: net-im/ktp-common-internals/

2014-07-27 Thread Michael Palimaka
commit: 3cf0bc786e5b7dd68032a516ec6991fc560de14f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 17:30:43 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 17:30:43 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3cf0bc78

[net-im/ktp-common-internals] KF5 version bump.

Package-Manager: portage-2.2.10

---
 .../ktp-common-internals-.ebuild   | 52 ++
 1 file changed, 52 insertions(+)

diff --git a/net-im/ktp-common-internals/ktp-common-internals-.ebuild 
b/net-im/ktp-common-internals/ktp-common-internals-.ebuild
new file mode 100644
index 000..4737bb5
--- /dev/null
+++ b/net-im/ktp-common-internals/ktp-common-internals-.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+EGIT_BRANCH="frameworks"
+inherit kde5
+
+DESCRIPTION="KDE Telepathy common library"
+HOMEPAGE="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+if [[ ${PV} != ** ]]; then
+   SRC_URI="mirror://kde/stable/kde-telepathy/${PV}/src/${P}.tar.bz2"
+   KEYWORDS="~amd64 ~x86"
+else
+   KEYWORDS=""
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="5"
+IUSE=""
+
+# todo: telepathy-logger-qt, libkpeople, kdepimlibs
+DEPEND="
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep knotifyconfig)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep ktexteditor)
+   $(add_frameworks_dep kwallet)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   net-libs/telepathy-qt[qt5]
+"
+RDEPEND="${DEPEND}
+   !net-im/ktp-common-internals:4
+"



[gentoo-commits] gentoo-x86 commit in media-gfx/llgal: ChangeLog llgal-0.13.15.ebuild

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 17:08:03

  Modified: ChangeLog
  Removed:  llgal-0.13.15.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.34 media-gfx/llgal/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/llgal/ChangeLog?rev=1.34&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/llgal/ChangeLog?rev=1.34&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/llgal/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/llgal/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   27 Jul 2014 17:07:21 -  1.33
+++ ChangeLog   27 Jul 2014 17:08:03 -  1.34
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/llgal
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/llgal/ChangeLog,v 1.33 2014/07/27 
17:07:21 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/llgal/ChangeLog,v 1.34 2014/07/27 
17:08:03 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  -llgal-0.13.15.ebuild:
+  old
 
   27 Jul 2014; Samuli Suominen  llgal-0.13.17-r1.ebuild:
   amd64/x86 stable






[gentoo-commits] gentoo-x86 commit in media-gfx/llgal: llgal-0.13.17-r1.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 17:07:21

  Modified: llgal-0.13.17-r1.ebuild ChangeLog
  Log:
  amd64/x86 stable
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  media-gfx/llgal/llgal-0.13.17-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/llgal/llgal-0.13.17-r1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/llgal/llgal-0.13.17-r1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/llgal/llgal-0.13.17-r1.ebuild?r1=1.1&r2=1.2

Index: llgal-0.13.17-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/llgal/llgal-0.13.17-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- llgal-0.13.17-r1.ebuild 2 Sep 2013 14:17:56 -   1.1
+++ llgal-0.13.17-r1.ebuild 27 Jul 2014 17:07:21 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/llgal/llgal-0.13.17-r1.ebuild,v 
1.1 2013/09/02 14:17:56 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/llgal/llgal-0.13.17-r1.ebuild,v 
1.2 2014/07/27 17:07:21 ssuominen Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 # Package warrants IUSE doc and possibly examples
 IUSE="exif"
 



1.33 media-gfx/llgal/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/llgal/ChangeLog?rev=1.33&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/llgal/ChangeLog?rev=1.33&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/llgal/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/llgal/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   2 Sep 2013 14:55:19 -   1.32
+++ ChangeLog   27 Jul 2014 17:07:21 -  1.33
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/llgal
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/llgal/ChangeLog,v 1.32 2013/09/02 
14:55:19 idella4 Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/llgal/ChangeLog,v 1.33 2014/07/27 
17:07:21 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  llgal-0.13.17-r1.ebuild:
+  amd64/x86 stable
 
 *llgal-0.13.17-r1 (02 Sep 2013)
 






[gentoo-commits] gentoo-x86 commit in media-sound/lltag/files: lltag-0.14.2-manpage.patch

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 17:06:01

  Removed:  lltag-0.14.2-manpage.patch
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)



[gentoo-commits] gentoo-x86 commit in media-sound/lltag: ChangeLog lltag-0.14.2.ebuild

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 17:06:01

  Modified: ChangeLog
  Removed:  lltag-0.14.2.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.24 media-sound/lltag/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lltag/ChangeLog?rev=1.24&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lltag/ChangeLog?rev=1.24&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lltag/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/lltag/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   2 Sep 2013 14:52:08 -   1.23
+++ ChangeLog   27 Jul 2014 17:06:01 -  1.24
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/lltag
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lltag/ChangeLog,v 1.23 
2013/09/02 14:52:08 idella4 Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lltag/ChangeLog,v 1.24 
2014/07/27 17:06:01 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen 
+  -files/lltag-0.14.2-manpage.patch, -lltag-0.14.2.ebuild:
+  old
 
 *lltag-0.14.4-r1 (02 Sep 2013)
 






[gentoo-commits] gentoo-x86 commit in media-video/cclive: ChangeLog cclive-0.7.13.ebuild cclive-0.7.15.ebuild cclive-0.7.16.ebuild cclive-0.7.12.ebuild cclive-0.9.1.ebuild cclive-0.9.0.ebuild

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 17:02:24

  Modified: ChangeLog
  Removed:  cclive-0.7.13.ebuild cclive-0.7.15.ebuild
cclive-0.7.16.ebuild cclive-0.7.12.ebuild
cclive-0.9.1.ebuild cclive-0.9.0.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.71 media-video/cclive/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/cclive/ChangeLog?rev=1.71&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/cclive/ChangeLog?rev=1.71&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/cclive/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/cclive/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog   23 Feb 2014 16:09:28 -  1.70
+++ ChangeLog   27 Jul 2014 17:02:24 -  1.71
@@ -1,6 +1,11 @@
 # ChangeLog for media-video/cclive
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/cclive/ChangeLog,v 1.70 
2014/02/23 16:09:28 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/cclive/ChangeLog,v 1.71 
2014/07/27 17:02:24 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  -cclive-0.7.12.ebuild,
+  -cclive-0.7.13.ebuild, -cclive-0.7.15.ebuild, -cclive-0.7.16.ebuild,
+  -cclive-0.9.0.ebuild, -cclive-0.9.1.ebuild:
+  old
 
   23 Feb 2014; Pacho Ramos  cclive-0.9.3-r1.ebuild:
   x86 stable, bug #500726






[gentoo-commits] gentoo-x86 commit in media-video/clive: ChangeLog clive-2.2.26.ebuild clive-2.2.28.ebuild clive-2.2.6.ebuild

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 17:01:04

  Modified: ChangeLog
  Removed:  clive-2.2.26.ebuild clive-2.2.28.ebuild
clive-2.2.6.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.76 media-video/clive/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?rev=1.76&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?rev=1.76&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   27 Jul 2014 17:00:13 -  1.75
+++ ChangeLog   27 Jul 2014 17:01:03 -  1.76
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/clive
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.75 
2014/07/27 17:00:13 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.76 
2014/07/27 17:01:03 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  -clive-2.2.26.ebuild,
+  -clive-2.2.28.ebuild, -clive-2.2.6.ebuild:
+  old
 
   27 Jul 2014; Samuli Suominen  clive-2.3.0.1.ebuild:
   amd64/x86 stable






[gentoo-commits] gentoo-x86 commit in media-video/clive: clive-2.3.0.1.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 17:00:13

  Modified: clive-2.3.0.1.ebuild ChangeLog
  Log:
  amd64/x86 stable
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.3  media-video/clive/clive-2.3.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild?r1=1.2&r2=1.3

Index: clive-2.3.0.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- clive-2.3.0.1.ebuild27 Jul 2014 16:58:54 -  1.2
+++ clive-2.3.0.1.ebuild27 Jul 2014 17:00:13 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild,v 
1.2 2014/07/27 16:58:54 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild,v 
1.3 2014/07/27 17:00:13 ssuominen Exp $
 
 EAPI=5
 inherit perl-app
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="clipboard pager password test"
 
 RDEPEND=">=dev-perl/BerkeleyDB-0.34



1.75 media-video/clive/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?rev=1.75&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?rev=1.75&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   27 Jul 2014 16:58:54 -  1.74
+++ ChangeLog   27 Jul 2014 17:00:13 -  1.75
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/clive
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.74 
2014/07/27 16:58:54 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.75 
2014/07/27 17:00:13 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  clive-2.3.0.1.ebuild:
+  amd64/x86 stable
 
   27 Jul 2014; Samuli Suominen  clive-2.3.0.1.ebuild:
   Use EAPI=5.






[gentoo-commits] gentoo-x86 commit in media-video/clive: clive-2.3.0.1.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 16:58:54

  Modified: clive-2.3.0.1.ebuild ChangeLog
  Log:
  Use EAPI=5.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  media-video/clive/clive-2.3.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild?r1=1.1&r2=1.2

Index: clive-2.3.0.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- clive-2.3.0.1.ebuild28 Sep 2012 01:29:07 -  1.1
+++ clive-2.3.0.1.ebuild27 Jul 2014 16:58:54 -  1.2
@@ -1,9 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild,v 
1.1 2012/09/28 01:29:07 vapier Exp $
-
-EAPI=4
+# $Header: /var/cvsroot/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild,v 
1.2 2014/07/27 16:58:54 ssuominen Exp $
 
+EAPI=5
 inherit perl-app
 
 DESCRIPTION="Command line tool for extracting videos from various websites"



1.74 media-video/clive/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?rev=1.74&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?rev=1.74&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   28 Sep 2012 01:29:07 -  1.73
+++ ChangeLog   27 Jul 2014 16:58:54 -  1.74
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/clive
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.73 
2012/09/28 01:29:07 vapier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.74 
2014/07/27 16:58:54 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  clive-2.3.0.1.ebuild:
+  Use EAPI=5.
 
 *clive-2.3.0.1 (28 Sep 2012)
 






[gentoo-commits] gentoo-x86 commit in media-video/acidrip: ChangeLog acidrip-0.14-r1.ebuild

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 16:57:46

  Modified: ChangeLog
  Removed:  acidrip-0.14-r1.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.33 media-video/acidrip/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/ChangeLog?rev=1.33&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/ChangeLog?rev=1.33&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/acidrip/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   27 Jul 2014 16:56:19 -  1.32
+++ ChangeLog   27 Jul 2014 16:57:45 -  1.33
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/acidrip
 # Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/acidrip/ChangeLog,v 1.32 
2014/07/27 16:56:19 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/acidrip/ChangeLog,v 1.33 
2014/07/27 16:57:45 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  -acidrip-0.14-r1.ebuild:
+  old
 
   27 Jul 2014; Samuli Suominen  acidrip-0.14-r2.ebuild:
   amd64/x86 stable






[gentoo-commits] gentoo-x86 commit in media-video/acidrip/files: acidrip-mplayer.patch

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 16:57:45

  Modified: acidrip-mplayer.patch
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  media-video/acidrip/files/acidrip-mplayer.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/files/acidrip-mplayer.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/files/acidrip-mplayer.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/files/acidrip-mplayer.patch?r1=1.1&r2=1.2

Index: acidrip-mplayer.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/media-video/acidrip/files/acidrip-mplayer.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- acidrip-mplayer.patch   10 Jun 2008 13:51:32 -  1.1
+++ acidrip-mplayer.patch   27 Jul 2014 16:57:45 -  1.2
@@ -1,5 +1,7 @@
 AcidRip/acidrip.pm.orig2008-06-10 07:33:00.0 -0600
-+++ AcidRip/acidrip.pm 2008-06-10 07:34:40.0 -0600
+http://bugs.gentoo.org/168012
+
+--- AcidRip/acidrip.pm
 AcidRip/acidrip.pm
 @@ -680,7 +680,7 @@
  message( "Running " . get_command("cropdetect") );
  open( CROP, get_command("cropdetect") . " 2>&1 |" );






[gentoo-commits] gentoo-x86 commit in media-video/acidrip: acidrip-0.14-r2.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 16:56:19

  Modified: acidrip-0.14-r2.ebuild ChangeLog
  Log:
  amd64/x86 stable
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.7  media-video/acidrip/acidrip-0.14-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild?r1=1.6&r2=1.7

Index: acidrip-0.14-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- acidrip-0.14-r2.ebuild  27 Jul 2014 16:54:47 -  1.6
+++ acidrip-0.14-r2.ebuild  27 Jul 2014 16:56:19 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild,v 1.6 
2014/07/27 16:54:47 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild,v 1.7 
2014/07/27 16:56:19 ssuominen Exp $
 
 EAPI=5
 inherit perl-app
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="encode"
 
 RDEPEND="dev-lang/perl



1.32 media-video/acidrip/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/ChangeLog?rev=1.32&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/ChangeLog?rev=1.32&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/acidrip/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   27 Jul 2014 16:54:47 -  1.31
+++ ChangeLog   27 Jul 2014 16:56:19 -  1.32
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/acidrip
 # Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/acidrip/ChangeLog,v 1.31 
2014/07/27 16:54:47 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/acidrip/ChangeLog,v 1.32 
2014/07/27 16:56:19 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  acidrip-0.14-r2.ebuild:
+  amd64/x86 stable
 
   27 Jul 2014; Samuli Suominen  acidrip-0.14-r2.ebuild:
   Punt bogus RESTRICT="mirror" and update to EAPI=5.






[gentoo-commits] gentoo-x86 commit in media-video/acidrip: acidrip-0.14-r2.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 16:54:47

  Modified: acidrip-0.14-r2.ebuild ChangeLog
  Log:
  Punt bogus RESTRICT="mirror" and update to EAPI=5.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.6  media-video/acidrip/acidrip-0.14-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild?r1=1.5&r2=1.6

Index: acidrip-0.14-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- acidrip-0.14-r2.ebuild  18 Mar 2014 15:40:16 -  1.5
+++ acidrip-0.14-r2.ebuild  27 Jul 2014 16:54:47 -  1.6
@@ -1,27 +1,26 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild,v 1.5 
2014/03/18 15:40:16 beandog Exp $
-
-EAPI="2"
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/acidrip/acidrip-0.14-r2.ebuild,v 1.6 
2014/07/27 16:54:47 ssuominen Exp $
 
+EAPI=5
 inherit perl-app
 
 DESCRIPTION="A gtk-perl mplayer/mencoder frontend for ripping DVDs"
 HOMEPAGE="http://sourceforge.net/acidrip/";
 SRC_URI="mirror://sourceforge/${P}.tar.gz"
-RESTRICT="mirror"
+
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 IUSE="encode"
 
-DEPEND="dev-lang/perl
+RDEPEND="dev-lang/perl
dev-perl/gtk2-perl
media-video/lsdvd
media-video/mplayer[encode]
encode? ( >=media-sound/lame-3.92 )"
+DEPEND="${RDEPEND}"
 
 src_prepare() {
-   # bug 168012
-   epatch "${FILESDIR}/${PN}-mplayer.patch"
+   epatch "${FILESDIR}"/${PN}-mplayer.patch #168012
 }



1.31 media-video/acidrip/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/ChangeLog?rev=1.31&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/ChangeLog?rev=1.31&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/acidrip/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/acidrip/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   18 Mar 2014 15:40:16 -  1.30
+++ ChangeLog   27 Jul 2014 16:54:47 -  1.31
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/acidrip
 # Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/acidrip/ChangeLog,v 1.30 
2014/03/18 15:40:16 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/acidrip/ChangeLog,v 1.31 
2014/07/27 16:54:47 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  acidrip-0.14-r2.ebuild:
+  Punt bogus RESTRICT="mirror" and update to EAPI=5.
 
   18 Mar 2014; Steve Dibb  acidrip-0.14-r1.ebuild,
   acidrip-0.14-r2.ebuild:






[gentoo-commits] proj/kde:master commit in: net-im/ktp-contact-runner/, net-im/ktp-common-internals/, ...

2014-07-27 Thread Michael Palimaka
commit: b8b95bd97607a6a6512ea8e38749685c17f69f42
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 16:44:19 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 16:44:19 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b8b95bd9

[net-im/ktp-*] Move  to 4. in preparation for KF5 version bumps.

---
 .../{kde-telepathy-meta-.ebuild => kde-telepathy-meta-4..ebuild}  | 0
 .../{ktp-accounts-kcm-.ebuild => ktp-accounts-kcm-4..ebuild}  | 0
 .../ktp-approver/{ktp-approver-.ebuild => ktp-approver-4..ebuild} | 0
 .../{ktp-auth-handler-.ebuild => ktp-auth-handler-4..ebuild}  | 0
 net-im/ktp-call-ui/{ktp-call-ui-.ebuild => ktp-call-ui-4..ebuild} | 0
 ...tp-common-internals-.ebuild => ktp-common-internals-4..ebuild} | 0
 .../{ktp-contact-list-.ebuild => ktp-contact-list-4..ebuild}  | 0
 .../{ktp-contact-runner-.ebuild => ktp-contact-runner-4..ebuild}  | 0
 ...ransfer-handler-.ebuild => ktp-filetransfer-handler-4..ebuild} | 0
 .../{ktp-kded-module-.ebuild => ktp-kded-module-4..ebuild}| 0
 .../{ktp-send-file-.ebuild => ktp-send-file-4..ebuild}| 0
 net-im/ktp-text-ui/{ktp-text-ui-.ebuild => ktp-text-ui-4..ebuild} | 0
 12 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/net-im/kde-telepathy-meta/kde-telepathy-meta-.ebuild 
b/net-im/kde-telepathy-meta/kde-telepathy-meta-4..ebuild
similarity index 100%
rename from net-im/kde-telepathy-meta/kde-telepathy-meta-.ebuild
rename to net-im/kde-telepathy-meta/kde-telepathy-meta-4..ebuild

diff --git a/net-im/ktp-accounts-kcm/ktp-accounts-kcm-.ebuild 
b/net-im/ktp-accounts-kcm/ktp-accounts-kcm-4..ebuild
similarity index 100%
rename from net-im/ktp-accounts-kcm/ktp-accounts-kcm-.ebuild
rename to net-im/ktp-accounts-kcm/ktp-accounts-kcm-4..ebuild

diff --git a/net-im/ktp-approver/ktp-approver-.ebuild 
b/net-im/ktp-approver/ktp-approver-4..ebuild
similarity index 100%
rename from net-im/ktp-approver/ktp-approver-.ebuild
rename to net-im/ktp-approver/ktp-approver-4..ebuild

diff --git a/net-im/ktp-auth-handler/ktp-auth-handler-.ebuild 
b/net-im/ktp-auth-handler/ktp-auth-handler-4..ebuild
similarity index 100%
rename from net-im/ktp-auth-handler/ktp-auth-handler-.ebuild
rename to net-im/ktp-auth-handler/ktp-auth-handler-4..ebuild

diff --git a/net-im/ktp-call-ui/ktp-call-ui-.ebuild 
b/net-im/ktp-call-ui/ktp-call-ui-4..ebuild
similarity index 100%
rename from net-im/ktp-call-ui/ktp-call-ui-.ebuild
rename to net-im/ktp-call-ui/ktp-call-ui-4..ebuild

diff --git a/net-im/ktp-common-internals/ktp-common-internals-.ebuild 
b/net-im/ktp-common-internals/ktp-common-internals-4..ebuild
similarity index 100%
rename from net-im/ktp-common-internals/ktp-common-internals-.ebuild
rename to net-im/ktp-common-internals/ktp-common-internals-4..ebuild

diff --git a/net-im/ktp-contact-list/ktp-contact-list-.ebuild 
b/net-im/ktp-contact-list/ktp-contact-list-4..ebuild
similarity index 100%
rename from net-im/ktp-contact-list/ktp-contact-list-.ebuild
rename to net-im/ktp-contact-list/ktp-contact-list-4..ebuild

diff --git a/net-im/ktp-contact-runner/ktp-contact-runner-.ebuild 
b/net-im/ktp-contact-runner/ktp-contact-runner-4..ebuild
similarity index 100%
rename from net-im/ktp-contact-runner/ktp-contact-runner-.ebuild
rename to net-im/ktp-contact-runner/ktp-contact-runner-4..ebuild

diff --git 
a/net-im/ktp-filetransfer-handler/ktp-filetransfer-handler-.ebuild 
b/net-im/ktp-filetransfer-handler/ktp-filetransfer-handler-4..ebuild
similarity index 100%
rename from net-im/ktp-filetransfer-handler/ktp-filetransfer-handler-.ebuild
rename to net-im/ktp-filetransfer-handler/ktp-filetransfer-handler-4..ebuild

diff --git a/net-im/ktp-kded-module/ktp-kded-module-.ebuild 
b/net-im/ktp-kded-module/ktp-kded-module-4..ebuild
similarity index 100%
rename from net-im/ktp-kded-module/ktp-kded-module-.ebuild
rename to net-im/ktp-kded-module/ktp-kded-module-4..ebuild

diff --git a/net-im/ktp-send-file/ktp-send-file-.ebuild 
b/net-im/ktp-send-file/ktp-send-file-4..ebuild
similarity index 100%
rename from net-im/ktp-send-file/ktp-send-file-.ebuild
rename to net-im/ktp-send-file/ktp-send-file-4..ebuild

diff --git a/net-im/ktp-text-ui/ktp-text-ui-.ebuild 
b/net-im/ktp-text-ui/ktp-text-ui-4..ebuild
similarity index 100%
rename from net-im/ktp-text-ui/ktp-text-ui-.ebuild
rename to net-im/ktp-text-ui/ktp-text-ui-4..ebuild



[gentoo-commits] gentoo-x86 commit in app-leechcraft/lc-vrooby: metadata.xml lc-vrooby-0.6.65.ebuild lc-vrooby-9999.ebuild lc-vrooby-0.6.60.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 16:25:30

  Modified: metadata.xml lc-vrooby-0.6.65.ebuild
lc-vrooby-.ebuild lc-vrooby-0.6.60.ebuild
ChangeLog
  Log:
  Punt USE="udisks udisks2" and always select sys-fs/udisks:2 wrt #517956. Ack 
from maksbotan.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  app-leechcraft/lc-vrooby/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-vrooby/metadata.xml?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-vrooby/metadata.xml?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-vrooby/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-leechcraft/lc-vrooby/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml8 Mar 2013 22:08:48 -   1.1
+++ metadata.xml27 Jul 2014 16:25:30 -  1.2
@@ -2,8 +2,4 @@
 http://www.gentoo.org/dtd/metadata.dtd";>
 
leechcraft
-   
-   Use sys-fs/udisks:0 for block 
device access (e.g., automounting)
-   Use sys-fs/udisks:2 for block 
device access (e.g., automounting)
-   
 



1.2  app-leechcraft/lc-vrooby/lc-vrooby-0.6.65.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-0.6.65.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-0.6.65.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-0.6.65.ebuild?r1=1.1&r2=1.2

Index: lc-vrooby-0.6.65.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-0.6.65.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lc-vrooby-0.6.65.ebuild 10 Apr 2014 18:04:50 -  1.1
+++ lc-vrooby-0.6.65.ebuild 27 Jul 2014 16:25:30 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-0.6.65.ebuild,v 1.1 
2014/04/10 18:04:50 maksbotan Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-0.6.65.ebuild,v 1.2 
2014/07/27 16:25:30 ssuominen Exp $
 
 EAPI="5"
 
@@ -9,31 +9,19 @@
 DESCRIPTION="Vrooby, removable device manager for LeechCraft."
 
 SLOT="0"
-KEYWORDS=" ~amd64 ~x86"
-IUSE="debug udisks udisks2"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
 
 DEPEND="~app-leechcraft/lc-core-${PV}
dev-qt/qtdbus:4"
 RDEPEND="${DEPEND}
-   udisks? ( sys-fs/udisks:0 )
-   udisks2? ( sys-fs/udisks:2 )
-   "
-
-REQUIRED_USE="|| ( udisks udisks2 )"
+   sys-fs/udisks:2"
 
 src_configure() {
local mycmakeargs=(
-   $(cmake-utils_use_enable udisks VROOBY_UDISKS)
-   $(cmake-utils_use_enable udisks2 VROOBY_UDISKS2)
-   )
+   -DENABLE_VROOBY_UDISKS=OFF
+   -DENABLE_VROOBY_UDISKS2=ON
+   )
 
cmake-utils_src_configure
 }
-
-pkg_postinst() {
-   if use udisks2; then
-   elog "You have enabled the experimental UDisks2 backend. "
-   elog "Please try the old udisks:0-based one before "
-   elog "reporting issues."
-   fi
-}



1.3  app-leechcraft/lc-vrooby/lc-vrooby-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-.ebuild?r1=1.2&r2=1.3

Index: lc-vrooby-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lc-vrooby-.ebuild   12 Apr 2013 08:44:34 -  1.2
+++ lc-vrooby-.ebuild   27 Jul 2014 16:25:30 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-.ebuild,v 1.2 
2013/04/12 08:44:34 pinkbyte Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-.ebuild,v 1.3 
2014/07/27 16:25:30 ssuominen Exp $
 
 EAPI="5"
 
@@ -10,30 +1

[gentoo-commits] gentoo-x86 commit in xfce-base/libxfcegui4: libxfcegui4-4.10.0-r1.ebuild libxfcegui4-4.10.0.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 16:14:17

  Modified: libxfcegui4-4.10.0-r1.ebuild
libxfcegui4-4.10.0.ebuild ChangeLog
  Log:
  Change DESCRIPTION and HOMEPAGE wrt 
http://bugzilla.xfce.org/show_bug.cgi?id=10974#c7
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild?r1=1.1&r2=1.2

Index: libxfcegui4-4.10.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libxfcegui4-4.10.0-r1.ebuild24 Jun 2014 13:37:07 -  1.1
+++ libxfcegui4-4.10.0-r1.ebuild27 Jul 2014 16:14:17 -  1.2
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild,v 
1.1 2014/06/24 13:37:07 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild,v 
1.2 2014/07/27 16:14:17 ssuominen Exp $
 
 EAPI=5
 inherit xfconf
 
-DESCRIPTION="A compability library for unported Xfce 4.6 plugins"
-HOMEPAGE="http://www.xfce.org/";
+DESCRIPTION="A compability library for unported Xfce 4.6 plugins (DEPRECATED)"
+HOMEPAGE="http://wiki.gentoo.org/wiki/No_homepage 
http://git.xfce.org/archive/libxfcegui4/";
 SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2 LGPL-2.1"



1.12 xfce-base/libxfcegui4/libxfcegui4-4.10.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0.ebuild?rev=1.12&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0.ebuild?rev=1.12&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0.ebuild?r1=1.11&r2=1.12

Index: libxfcegui4-4.10.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- libxfcegui4-4.10.0.ebuild   24 Jun 2014 13:37:07 -  1.11
+++ libxfcegui4-4.10.0.ebuild   27 Jul 2014 16:14:17 -  1.12
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0.ebuild,v 1.11 
2014/06/24 13:37:07 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0.ebuild,v 1.12 
2014/07/27 16:14:17 ssuominen Exp $
 
 EAPI=5
 inherit xfconf
 
-DESCRIPTION="A compability library for unported Xfce 4.6 plugins"
-HOMEPAGE="http://www.xfce.org/";
+DESCRIPTION="A compability library for unported Xfce 4.6 plugins (DEPRECATED)"
+HOMEPAGE="http://wiki.gentoo.org/wiki/No_homepage 
http://git.xfce.org/archive/libxfcegui4/";
 SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2 LGPL-2.1"



1.186xfce-base/libxfcegui4/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/ChangeLog?rev=1.186&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/ChangeLog?rev=1.186&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/ChangeLog?r1=1.185&r2=1.186

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog   24 Jun 2014 13:37:07 -  1.185
+++ ChangeLog   27 Jul 2014 16:14:17 -  1.186
@@ -1,6 +1,11 @@
 # ChangeLog for xfce-base/libxfcegui4
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/ChangeLog,v 1.185 
2014/06/24 13:37:07 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/ChangeLog,v 1.186 
2014/07/27 16:14:17 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen 
+  libxfcegui4-4.10.0-r1.ebuild, libxfcegui4-4.10.0.ebuild:
+  Change DESCRIPTION and HOMEPAGE wrt
+  http://bugzilla.xfce.org/show_bug.cgi?id=10974#c7
 
 *libxfcegui4-4.10.0-r1 (24 Jun 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-kernel/openvz-sources: openvz-sources-2.6.32.92.3.ebuild ChangeLog

2014-07-27 Thread Maxim Koltsov (maksbotan)
maksbotan14/07/27 16:09:58

  Modified: ChangeLog
  Added:openvz-sources-2.6.32.92.3.ebuild
  Log:
  Bump to new release, fized security bug #518108. Thanks to ago and slepnoga
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F8DBDADE)

Revision  ChangesPath
1.233sys-kernel/openvz-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/openvz-sources/ChangeLog?rev=1.233&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/openvz-sources/ChangeLog?rev=1.233&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/openvz-sources/ChangeLog?r1=1.232&r2=1.233

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/ChangeLog,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -r1.232 -r1.233
--- ChangeLog   12 Jul 2014 16:57:11 -  1.232
+++ ChangeLog   27 Jul 2014 16:09:58 -  1.233
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/openvz-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/ChangeLog,v 1.232 
2014/07/12 16:57:11 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/ChangeLog,v 1.233 
2014/07/27 16:09:58 maksbotan Exp $
+
+*openvz-sources-2.6.32.92.3 (27 Jul 2014)
+
+  27 Jul 2014; Maxim Koltsov 
+  +openvz-sources-2.6.32.92.3.ebuild:
+  Bump to new release, fized security bug #518108. Thanks to ago and slepnoga
 
   12 Jul 2014; Peter Volkov 
   -openvz-sources-2.6.32.90.5.ebuild, openvz-sources-2.6.32.92.2.ebuild:



1.1  sys-kernel/openvz-sources/openvz-sources-2.6.32.92.3.ebuild

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

Index: openvz-sources-2.6.32.92.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/openvz-sources-2.6.32.92.3.ebuild,v
 1.1 2014/07/27 16:09:58 maksbotan Exp $

EAPI="5"

inherit versionator

OVZ_KV="0$(get_version_component_range 4).$(get_version_component_range 5)"

CKV=$(get_version_component_range 1-3)
OKV=${OKV:-${CKV}}
EXTRAVERSION=-${PN/-*}-${OVZ_KV}
ETYPE="sources"
KV_FULL=${CKV}${EXTRAVERSION}
if [[ ${PR} != "r0" ]]; then
KV_FULL+=-${PR}
EXTRAVERSION+=-${PR}
fi
S=${WORKDIR}/linux-${KV_FULL}

# ${KV_MAJOR}.${KV_MINOR}.${KV_PATCH} should succeed.
KV_MAJOR=$(get_version_component_range 1 ${OKV})
KV_MINOR=$(get_version_component_range 2 ${OKV})
KV_PATCH=$(get_version_component_range 3 ${OKV})

KERNEL_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${OKV}.tar.xz"

inherit kernel-2
#detect_version

KEYWORDS="~amd64 ~ppc64 ~sparc ~x86"
IUSE=""

DESCRIPTION="Kernel sources with OpenVZ patchset"
HOMEPAGE="http://www.openvz.org";
SRC_URI="${KERNEL_URI} ${ARCH_URI}

http://download.openvz.org/kernel/branches/rhel6-${CKV}/042stab${OVZ_KV}/patches/patch-042stab${OVZ_KV}-combined.gz";

UNIPATCH_STRICTORDER=1
UNIPATCH_LIST="${DISTDIR}/patch-042stab${OVZ_KV}-combined.gz"

K_EXTRAEINFO="This openvz kernel uses RHEL6 patchset instead of vanilla kernel.
This patchset considered to be more stable and security supported by upstream,
but for us RHEL6 patchset is very fragile and fails to build in many
configurations so if you have problems use config files from openvz team
http://wiki.openvz.org/Download/kernel/rhel6/042stab${OVZ_KV}";






[gentoo-commits] gentoo-x86 commit in net-libs/h323plus: h323plus-1.25.0-r1.ebuild ChangeLog

2014-07-27 Thread Richard Farina (zerochaos)
zerochaos14/07/27 16:04:33

  Modified: h323plus-1.25.0-r1.ebuild ChangeLog
  Log:
  adding ~arm
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.3  net-libs/h323plus/h323plus-1.25.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/h323plus-1.25.0-r1.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/h323plus-1.25.0-r1.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/h323plus-1.25.0-r1.ebuild?r1=1.2&r2=1.3

Index: h323plus-1.25.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/h323plus/h323plus-1.25.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- h323plus-1.25.0-r1.ebuild   15 May 2014 11:18:53 -  1.2
+++ h323plus-1.25.0-r1.ebuild   27 Jul 2014 16:04:33 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-libs/h323plus/h323plus-1.25.0-r1.ebuild,v 1.2 
2014/05/15 11:18:53 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-libs/h323plus/h323plus-1.25.0-r1.ebuild,v 1.3 
2014/07/27 16:04:33 zerochaos Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 IUSE="aec debug +sound +video"
 SLOT="0/${PV}"
 LICENSE="MPL-1.1"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~sparc ~x86"
 
 DEPEND=">=net-libs/ptlib-2.6.4:=[wav]
aec? ( >=media-libs/speex-1.2_rc1 )



1.7  net-libs/h323plus/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/ChangeLog?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/ChangeLog?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/h323plus/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   15 May 2014 11:18:53 -  1.6
+++ ChangeLog   27 Jul 2014 16:04:33 -  1.7
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/h323plus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/h323plus/ChangeLog,v 1.6 
2014/05/15 11:18:53 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/h323plus/ChangeLog,v 1.7 
2014/07/27 16:04:33 zerochaos Exp $
+
+  27 Jul 2014; Rick Farina  h323plus-1.25.0-r1.ebuild:
+  adding ~arm
 
   15 May 2014; Ulrich Müller  h323plus-1.25.0-r1.ebuild,
   metadata.xml:






[gentoo-commits] gentoo-x86 commit in net-libs/ptlib: ptlib-2.12.4.ebuild ptlib-2.12.9.ebuild ptlib-2.10.11.ebuild ptlib-2.10.10.ebuild ChangeLog

2014-07-27 Thread Richard Farina (zerochaos)
zerochaos14/07/27 16:03:22

  Modified: ptlib-2.12.4.ebuild ptlib-2.12.9.ebuild
ptlib-2.10.11.ebuild ptlib-2.10.10.ebuild ChangeLog
  Log:
  adding ~arm
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.4  net-libs/ptlib/ptlib-2.12.4.ebuild

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

Index: ptlib-2.12.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/ptlib/ptlib-2.12.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ptlib-2.12.4.ebuild 15 May 2014 12:04:06 -  1.3
+++ ptlib-2.12.4.ebuild 27 Jul 2014 16:03:22 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/ptlib/ptlib-2.12.4.ebuild,v 1.3 
2014/05/15 12:04:06 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/ptlib/ptlib-2.12.4.ebuild,v 1.4 
2014/07/27 16:03:22 zerochaos Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="MPL-1.0"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 # default enabled are features from 'minsize', the most used according to ptlib
 IUSE="alsa +asn debug doc +dtmf examples ffmpeg ftp +http ipv6
 jabber ldap lua mail odbc oss pch pulseaudio remote sasl sdl serial



1.3  net-libs/ptlib/ptlib-2.12.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ptlib/ptlib-2.12.9.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ptlib/ptlib-2.12.9.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ptlib/ptlib-2.12.9.ebuild?r1=1.2&r2=1.3

Index: ptlib-2.12.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/ptlib/ptlib-2.12.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ptlib-2.12.9.ebuild 15 May 2014 12:04:06 -  1.2
+++ ptlib-2.12.9.ebuild 27 Jul 2014 16:03:22 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/ptlib/ptlib-2.12.9.ebuild,v 1.2 
2014/05/15 12:04:06 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/ptlib/ptlib-2.12.9.ebuild,v 1.3 
2014/07/27 16:03:22 zerochaos Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="MPL-1.0"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 # default enabled are features from 'minsize', the most used according to ptlib
 IUSE="alsa +asn debug doc +dtmf examples ffmpeg ftp +http ipv6
 jabber ldap lua mail odbc oss pch pulseaudio remote sasl sdl serial



1.3  net-libs/ptlib/ptlib-2.10.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ptlib/ptlib-2.10.11.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ptlib/ptlib-2.10.11.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ptlib/ptlib-2.10.11.ebuild?r1=1.2&r2=1.3

Index: ptlib-2.10.11.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/ptlib/ptlib-2.10.11.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ptlib-2.10.11.ebuild15 May 2014 12:04:06 -  1.2
+++ ptlib-2.10.11.ebuild27 Jul 2014 16:03:22 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/ptlib/ptlib-2.10.11.ebuild,v 1.2 
2014/05/15 12:04:06 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/ptlib/ptlib-2.10.11.ebuild,v 1.3 
2014/07/27 16:03:22 zerochaos Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="MPL-1.0"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 # default enabled are features from 'minsize', the most used according to ptlib
 IUSE="alsa +asn debug doc +dtmf examples ffmpeg ftp +http ipv6
 jabber ldap lua mail odbc oss pch pulseaudio qos remote sasl sdl serial



1.10 net-libs/ptlib/ptlib-2.10.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ptlib/ptlib-2.10.10.ebuild?rev=1.10&vi

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

2014-07-27 Thread Michael Palimaka
commit: 3680339c6e43a6f596df05a484faa22adc20eeea
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 15:33:33 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 15:33:33 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3680339c

[kde-frameworks/kconfig] Update dependencies.

xcb USE flag enables Qt session manager (kconfig checks for
QT_NO_SESSIONMANAGER).

Package-Manager: portage-2.2.10

---
 kde-frameworks/kconfig/kconfig-5.0.0.ebuild | 2 +-
 kde-frameworks/kconfig/kconfig-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kconfig/kconfig-5.0.0.ebuild 
b/kde-frameworks/kconfig/kconfig-5.0.0.ebuild
index 71b4892..93c0fcc 100644
--- a/kde-frameworks/kconfig/kconfig-5.0.0.ebuild
+++ b/kde-frameworks/kconfig/kconfig-5.0.0.ebuild
@@ -13,7 +13,7 @@ KEYWORDS="~amd64"
 IUSE=""
 
 RDEPEND="
-   dev-qt/qtgui:5
+   dev-qt/qtgui:5[xcb]
dev-qt/qtxml:5
 "
 DEPEND="${RDEPEND}

diff --git a/kde-frameworks/kconfig/kconfig-.ebuild 
b/kde-frameworks/kconfig/kconfig-.ebuild
index 5672a7b..eb8dc71 100644
--- a/kde-frameworks/kconfig/kconfig-.ebuild
+++ b/kde-frameworks/kconfig/kconfig-.ebuild
@@ -13,7 +13,7 @@ KEYWORDS=""
 IUSE=""
 
 RDEPEND="
-   dev-qt/qtgui:5
+   dev-qt/qtgui:5[xcb]
dev-qt/qtxml:5
 "
 DEPEND="${RDEPEND}



[gentoo-commits] gentoo-x86 commit in sys-cluster/ploop: ploop-1.11.ebuild ChangeLog

2014-07-27 Thread Mikle Kolyada (zlogene)
zlogene 14/07/27 15:29:15

  Modified: ploop-1.11.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #515870
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.3  sys-cluster/ploop/ploop-1.11.ebuild

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

Index: ploop-1.11.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ploop-1.11.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ploop-1.11.ebuild   27 Jul 2014 11:18:13 -  1.2
+++ ploop-1.11.ebuild   27 Jul 2014 15:29:15 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ploop-1.11.ebuild,v 1.2 
2014/07/27 11:18:13 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ploop-1.11.ebuild,v 1.3 
2014/07/27 15:29:15 zlogene Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="debug static-libs"
 
 DEPEND="



1.30 sys-cluster/ploop/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ploop/ChangeLog?rev=1.30&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ploop/ChangeLog?rev=1.30&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ploop/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   27 Jul 2014 11:18:13 -  1.29
+++ ChangeLog   27 Jul 2014 15:29:15 -  1.30
@@ -1,6 +1,9 @@
 # ChangeLog for sys-cluster/ploop
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v 1.29 
2014/07/27 11:18:13 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v 1.30 
2014/07/27 15:29:15 zlogene Exp $
+
+  27 Jul 2014; Mikle Kolyada  ploop-1.11.ebuild:
+  amd64 stable wrt bug #515870
 
   26 Jul 2014; Pawel Hajdan jr  ploop-1.11.ebuild:
   x86 stable wrt bug #515870






[gentoo-commits] proj/kde:master commit in: dev-libs/extra-cmake-modules/, dev-libs/extra-cmake-modules/files/

2014-07-27 Thread Michael Palimaka
commit: f18654535b6c264adddcf81f06eb95d6f4a53f61
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 27 15:18:47 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 27 15:18:47 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f1865453

[dev-libs/extra-cmake-modules] Backport patch from upstream adding 
KXMLGUI_INSTALL_DIR variable, required by Plasma 5.0.0.

Package-Manager: portage-2.2.10

---
 ebuild => extra-cmake-modules-1.0.0-r2.ebuild} |  5 +-
 .../files/extra-cmake-modules-1.0.0-kxmlgui.patch  | 66 ++
 2 files changed, 70 insertions(+), 1 deletion(-)

diff --git a/dev-libs/extra-cmake-modules/extra-cmake-modules-1.0.0-r1.ebuild 
b/dev-libs/extra-cmake-modules/extra-cmake-modules-1.0.0-r2.ebuild
similarity index 91%
rename from dev-libs/extra-cmake-modules/extra-cmake-modules-1.0.0-r1.ebuild
rename to dev-libs/extra-cmake-modules/extra-cmake-modules-1.0.0-r2.ebuild
index da40a74..ab87b50 100644
--- a/dev-libs/extra-cmake-modules/extra-cmake-modules-1.0.0-r1.ebuild
+++ b/dev-libs/extra-cmake-modules/extra-cmake-modules-1.0.0-r2.ebuild
@@ -26,7 +26,10 @@ DEPEND="
)
 "
 
-PATCHES=( "${FILESDIR}/${P}-linguas.patch" )
+PATCHES=(
+   "${FILESDIR}/${P}-linguas.patch"
+   "${FILESDIR}/${P}-kxmlgui.patch"
+)
 
 python_check_deps() {
has_version "dev-python/sphinx[${PYTHON_USEDEP}]"

diff --git 
a/dev-libs/extra-cmake-modules/files/extra-cmake-modules-1.0.0-kxmlgui.patch 
b/dev-libs/extra-cmake-modules/files/extra-cmake-modules-1.0.0-kxmlgui.patch
new file mode 100644
index 000..94a58b4
--- /dev/null
+++ b/dev-libs/extra-cmake-modules/files/extra-cmake-modules-1.0.0-kxmlgui.patch
@@ -0,0 +1,66 @@
+From 032b4c4baaaff5fde1243864149d33f545767b5c Mon Sep 17 00:00:00 2001
+From: David Faure 
+Date: Mon, 7 Jul 2014 00:09:53 +0200
+Subject: [PATCH] Define convenience variable for DATAROOTDIR/kxmlgui5.
+
+See RR 119142 for more details.
+---
+ kde-modules/KDEInstallDirs.cmake | 6 ++
+ tests/KDEInstallDirsTest/vars_defined/CMakeLists.txt | 3 +++
+ 2 files changed, 9 insertions(+)
+
+diff --git a/kde-modules/KDEInstallDirs.cmake 
b/kde-modules/KDEInstallDirs.cmake
+index 061e542..90ed5b8 100644
+--- a/kde-modules/KDEInstallDirs.cmake
 b/kde-modules/KDEInstallDirs.cmake
+@@ -69,6 +69,9 @@
+ # ``KSERVICETYPES5DIR``
+ # service types for KDE Frameworks 5 (``DATAROOTDIR/kservicetypes5``)
+ # [``SERVICETYPES_INSTALL_DIR``]
++# ``KXMLGUI5DIR``
++# knotify description files (``DATAROOTDIR/kxmlgui5``)
++# [``KXMLGUI_INSTALL_DIR``]
+ # ``KNOTIFY5RCDIR``
+ # knotify description files (``DATAROOTDIR/knotifications5``)
+ # [``KNOTIFYRC_INSTALL_DIR``]
+@@ -384,6 +387,9 @@ _define_relative(KSERVICETYPES5DIR DATAROOTDIR 
"kservicetypes5"
+ _define_relative(KNOTIFY5RCDIR DATAROOTDIR "knotifications5"
+ "knotify description files"
+ KNOTIFYRC_INSTALL_DIR)
++_define_relative(KXMLGUI5DIR DATAROOTDIR "kxmlgui5"
++"kxmlgui .rc files"
++KXMLGUI_INSTALL_DIR)
+ 
+ # Cross-desktop or other system things
+ _define_relative(ICONDIR DATAROOTDIR "icons"
+diff --git a/tests/KDEInstallDirsTest/vars_defined/CMakeLists.txt 
b/tests/KDEInstallDirsTest/vars_defined/CMakeLists.txt
+index f1617da..3940b81 100644
+--- a/tests/KDEInstallDirsTest/vars_defined/CMakeLists.txt
 b/tests/KDEInstallDirsTest/vars_defined/CMakeLists.txt
+@@ -31,6 +31,7 @@ set(relative_path_vars
+ KF5_INCLUDE_INSTALL_DIR
+ KF5_LIBEXEC_INSTALL_DIR
+ KNOTIFYRC_INSTALL_DIR
++KXMLGUI_INSTALL_DIR
+ LIBEXEC_INSTALL_DIR
+ LIB_INSTALL_DIR
+ LOCALE_INSTALL_DIR
+@@ -73,6 +74,7 @@ set(relative_path_vars
+ CMAKE_INSTALL_KCFGDIR
+ CMAKE_INSTALL_KCONFUPDATEDIR
+ CMAKE_INSTALL_KNOTIFY5RCDIR
++CMAKE_INSTALL_KXMLGUI5DIR
+ CMAKE_INSTALL_KSERVICES5DIR
+ CMAKE_INSTALL_KSERVICETYPES5DIR
+ CMAKE_INSTALL_LIBDIR
+@@ -117,6 +119,7 @@ set(absolute_path_vars
+ CMAKE_INSTALL_FULL_KCFGDIR
+ CMAKE_INSTALL_FULL_KCONFUPDATEDIR
+ CMAKE_INSTALL_FULL_KNOTIFY5RCDIR
++CMAKE_INSTALL_FULL_KXMLGUI5DIR
+ CMAKE_INSTALL_FULL_KSERVICES5DIR
+ CMAKE_INSTALL_FULL_KSERVICETYPES5DIR
+ CMAKE_INSTALL_FULL_LIBDIR
+-- 
+1.8.5.5
+



[gentoo-commits] gentoo-x86 commit in sys-apps/systemd: systemd-215-r3.ebuild systemd-9999.ebuild ChangeLog

2014-07-27 Thread Mike Gilbert (floppym)
floppym 14/07/27 15:00:52

  Modified: systemd-215-r3.ebuild systemd-.ebuild ChangeLog
  Log:
  Don't install /etc/systemd/system/network-online.target.wants, bug 518318 by 
poncho.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.2  sys-apps/systemd/systemd-215-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild?r1=1.1&r2=1.2

Index: systemd-215-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- systemd-215-r3.ebuild   25 Jul 2014 10:26:48 -  1.1
+++ systemd-215-r3.ebuild   27 Jul 2014 15:00:52 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild,v 
1.1 2014/07/25 10:26:48 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-215-r3.ebuild,v 
1.2 2014/07/27 15:00:52 floppym Exp $
 
 EAPI=5
 
@@ -312,11 +312,6 @@
 
if multilib_is_native_abi; then
emake "${mymakeopts[@]}" install
-   # Even with --enable-networkd, it's not right to have this 
running by default
-   # when it's unconfigured.
-   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-networkd.service
-   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-resolved.service
-   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-timesyncd.service
else
mymakeopts+=(
install-libLTLIBRARIES
@@ -360,6 +355,13 @@
 
# Symlink /etc/sysctl.conf for easy migration.
dosym ../sysctl.conf /etc/sysctl.d/99-sysctl.conf
+
+   # If we install these symlinks, there is no way for the sysadmin to 
remove them
+   # permanently.
+   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-networkd.service
+   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-resolved.service
+   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-timesyncd.service
+   rm -rf "${D}"/etc/systemd/system/network-online.target.wants
 }
 
 migrate_locale() {



1.129sys-apps/systemd/systemd-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-.ebuild?rev=1.129&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-.ebuild?rev=1.129&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/systemd-.ebuild?r1=1.128&r2=1.129

Index: systemd-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-.ebuild,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- systemd-.ebuild 21 Jul 2014 17:52:42 -  1.128
+++ systemd-.ebuild 27 Jul 2014 15:00:52 -  1.129
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-.ebuild,v 
1.128 2014/07/21 17:52:42 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-.ebuild,v 
1.129 2014/07/27 15:00:52 floppym Exp $
 
 EAPI=5
 
@@ -324,11 +324,6 @@
 
if multilib_is_native_abi; then
emake "${mymakeopts[@]}" install
-   # Even with --enable-networkd, it's not right to have this 
running by default
-   # when it's unconfigured.
-   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-networkd.service
-   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-resolved.service
-   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-timesyncd.service
else
mymakeopts+=(
install-libLTLIBRARIES
@@ -366,6 +361,13 @@
 
# Symlink /etc/sysctl.conf for easy migration.
dosym ../sysctl.conf /etc/sysctl.d/99-sysctl.conf
+
+   # If we install these symlinks, there is no way for the sysadmin to 
remove them
+   # permanently.
+   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-networkd.service
+   rm -f 
"${D}"/etc/systemd/system/multi-user.target.wants/systemd-resolved.service
+   rm -f 
"${D}"/etc/systemd/system/multi-us

[gentoo-commits] proj/qt:master commit in: dev-qt/qtwidgets/

2014-07-27 Thread Davide Pesavento
commit: 76016f5309edfd7da7f6ecbbb583b55b303ab16c
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Jul 27 14:33:58 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 27 14:33:58 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=76016f53

[dev-qt/qtwidgets:5] Introduce some USE flags to keep consistency with qtgui.

Should fix the crashes reported by Franz Fellner in bug 518262#c2

Package-Manager: portage-2.2.10

---
 dev-qt/qtwidgets/metadata.xml  |  3 +++
 dev-qt/qtwidgets/qtwidgets-5.3.1-r1.ebuild | 22 --
 dev-qt/qtwidgets/qtwidgets-5.3..ebuild | 22 --
 dev-qt/qtwidgets/qtwidgets-5..ebuild   | 22 --
 4 files changed, 63 insertions(+), 6 deletions(-)

diff --git a/dev-qt/qtwidgets/metadata.xml b/dev-qt/qtwidgets/metadata.xml
index 9d5bff1..10bfda0 100644
--- a/dev-qt/qtwidgets/metadata.xml
+++ b/dev-qt/qtwidgets/metadata.xml
@@ -2,6 +2,9 @@
 http://www.gentoo.org/dtd/metadata.dtd";>
 
qt
+   
+   Use OpenGL ES 2.0 instead of desktop 
OpenGL
+   

https://bugreports.qt-project.org/
http://qt-project.org/doc/

diff --git a/dev-qt/qtwidgets/qtwidgets-5.3.1-r1.ebuild 
b/dev-qt/qtwidgets/qtwidgets-5.3.1-r1.ebuild
index 35c598d..208edc0 100644
--- a/dev-qt/qtwidgets/qtwidgets-5.3.1-r1.ebuild
+++ b/dev-qt/qtwidgets/qtwidgets-5.3.1-r1.ebuild
@@ -16,11 +16,14 @@ else
KEYWORDS="~amd64 ~x86"
 fi
 
-IUSE=""
+IUSE="gles2 +opengl +png"
+REQUIRED_USE="
+   gles2? ( opengl )
+"
 
 DEPEND="
~dev-qt/qtcore-${PV}[debug=]
-   ~dev-qt/qtgui-${PV}[debug=]
+   ~dev-qt/qtgui-${PV}[debug=,gles2=,opengl=,png=]
 "
 RDEPEND="${DEPEND}"
 
@@ -38,3 +41,18 @@ QT5_TARGET_SUBDIRS=(
 QT5_GENTOO_CONFIG=(
!:no-widgets:
 )
+
+src_configure() {
+   local gl="-no-opengl"
+   if use gles2; then
+   gl="-opengl es2"
+   elif use opengl; then
+   gl="-opengl desktop"
+   fi
+
+   local myconf=(
+   ${gl}
+   $(qt_use png libpng system)
+   )
+   qt5-build_src_configure
+}

diff --git a/dev-qt/qtwidgets/qtwidgets-5.3..ebuild 
b/dev-qt/qtwidgets/qtwidgets-5.3..ebuild
index 35c598d..208edc0 100644
--- a/dev-qt/qtwidgets/qtwidgets-5.3..ebuild
+++ b/dev-qt/qtwidgets/qtwidgets-5.3..ebuild
@@ -16,11 +16,14 @@ else
KEYWORDS="~amd64 ~x86"
 fi
 
-IUSE=""
+IUSE="gles2 +opengl +png"
+REQUIRED_USE="
+   gles2? ( opengl )
+"
 
 DEPEND="
~dev-qt/qtcore-${PV}[debug=]
-   ~dev-qt/qtgui-${PV}[debug=]
+   ~dev-qt/qtgui-${PV}[debug=,gles2=,opengl=,png=]
 "
 RDEPEND="${DEPEND}"
 
@@ -38,3 +41,18 @@ QT5_TARGET_SUBDIRS=(
 QT5_GENTOO_CONFIG=(
!:no-widgets:
 )
+
+src_configure() {
+   local gl="-no-opengl"
+   if use gles2; then
+   gl="-opengl es2"
+   elif use opengl; then
+   gl="-opengl desktop"
+   fi
+
+   local myconf=(
+   ${gl}
+   $(qt_use png libpng system)
+   )
+   qt5-build_src_configure
+}

diff --git a/dev-qt/qtwidgets/qtwidgets-5..ebuild 
b/dev-qt/qtwidgets/qtwidgets-5..ebuild
index c8844e3..1aa1cf4 100644
--- a/dev-qt/qtwidgets/qtwidgets-5..ebuild
+++ b/dev-qt/qtwidgets/qtwidgets-5..ebuild
@@ -16,11 +16,14 @@ else
KEYWORDS="~amd64 ~x86"
 fi
 
-IUSE=""
+IUSE="gles2 +opengl +png"
+REQUIRED_USE="
+   gles2? ( opengl )
+"
 
 DEPEND="
~dev-qt/qtcore-${PV}[debug=]
-   ~dev-qt/qtgui-${PV}[debug=]
+   ~dev-qt/qtgui-${PV}[debug=,gles2=,opengl=,png=]
 "
 RDEPEND="${DEPEND}"
 
@@ -32,3 +35,18 @@ QT5_TARGET_SUBDIRS=(
 QT5_GENTOO_CONFIG=(
!:no-widgets:
 )
+
+src_configure() {
+   local gl="-no-opengl"
+   if use gles2; then
+   gl="-opengl es2"
+   elif use opengl; then
+   gl="-opengl desktop"
+   fi
+
+   local myconf=(
+   ${gl}
+   $(qt_use png libpng system)
+   )
+   qt5-build_src_configure
+}



[gentoo-commits] gentoo-x86 commit in media-libs/ffmpegsource: ffmpegsource-2.20.ebuild ChangeLog ffmpegsource-2.17.3_pre743.ebuild ffmpegsource-2.17.4_pre755.ebuild ffmpegsource-2.19.ebuild ffmpegsou

2014-07-27 Thread Mikle Kolyada (zlogene)
zlogene 14/07/27 13:56:05

  Modified: ChangeLog
  Added:ffmpegsource-2.20.ebuild
  Removed:  ffmpegsource-2.17.3_pre743.ebuild
ffmpegsource-2.17.4_pre755.ebuild
ffmpegsource-2.19.ebuild
ffmpegsource-2.17.4_pre753.ebuild
  Log:
  Version bump; Drop old, thanks to Nikoli
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.22 media-libs/ffmpegsource/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ffmpegsource/ChangeLog?rev=1.22&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ffmpegsource/ChangeLog?rev=1.22&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ffmpegsource/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/ffmpegsource/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   24 Jul 2014 16:07:21 -  1.21
+++ ChangeLog   27 Jul 2014 13:56:05 -  1.22
@@ -1,6 +1,13 @@
 # ChangeLog for media-libs/ffmpegsource
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/ffmpegsource/ChangeLog,v 1.21 
2014/07/24 16:07:21 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/ffmpegsource/ChangeLog,v 1.22 
2014/07/27 13:56:05 zlogene Exp $
+
+*ffmpegsource-2.20 (27 Jul 2014)
+
+  27 Jul 2014; Mikle Kolyada  +ffmpegsource-2.20.ebuild,
+  -ffmpegsource-2.17.3_pre743.ebuild, -ffmpegsource-2.17.4_pre753.ebuild,
+  -ffmpegsource-2.17.4_pre755.ebuild, -ffmpegsource-2.19.ebuild:
+  Version bump; Drop old, thanks to Nikoli
 
   24 Jul 2014; Pacho Ramos  ffmpegsource-2.19.1.ebuild:
   amd64/x86 stable, bug #517974



1.1  media-libs/ffmpegsource/ffmpegsource-2.20.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ffmpegsource/ffmpegsource-2.20.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ffmpegsource/ffmpegsource-2.20.ebuild?rev=1.1&content-type=text/plain

Index: ffmpegsource-2.20.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-libs/ffmpegsource/ffmpegsource-2.20.ebuild,v 1.1 
2014/07/27 13:56:05 zlogene Exp $

EAPI=5

AUTOTOOLS_AUTORECONF=1

inherit autotools-utils

DESCRIPTION="A libav/ffmpeg based source library for easy frame accurate access"
HOMEPAGE="https://github.com/FFMS/ffms2";
SRC_URI="https://github.com/FFMS/ffms2/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0/3"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"

RDEPEND="
sys-libs/zlib
>=virtual/ffmpeg-9
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
S="${WORKDIR}/ffms2-${PV}"






[gentoo-commits] proj/qt:master commit in: dev-qt/qtnetwork/

2014-07-27 Thread Davide Pesavento
commit: 819f0896b75cc7f03a4293f76401a3cfbd7983ec
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Jul 27 13:50:46 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 27 13:50:46 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=819f0896

[dev-qt/qtnetwork:5] Simplify dbus and ssl handling.

qt5_base_configure already disables both by default, DRY.

Package-Manager: portage-2.2.10

---
 dev-qt/qtnetwork/qtnetwork-5.3.1.ebuild| 4 ++--
 dev-qt/qtnetwork/qtnetwork-5.3..ebuild | 4 ++--
 dev-qt/qtnetwork/qtnetwork-5..ebuild   | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-qt/qtnetwork/qtnetwork-5.3.1.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.3.1.ebuild
index b67c60d..6c2cfa1 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.3.1.ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.3.1.ebuild
@@ -50,8 +50,8 @@ pkg_setup() {
 
 src_configure() {
local myconf=(
-   $(use connman || use networkmanager && echo -dbus-linked || 
echo -no-dbus)
-   $(use ssl && echo -openssl-linked || echo -no-openssl)
+   $(use connman || use networkmanager && echo -dbus-linked)
+   $(use ssl && echo -openssl-linked)
)
qt5-build_src_configure
 }

diff --git a/dev-qt/qtnetwork/qtnetwork-5.3..ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.3..ebuild
index b67c60d..6c2cfa1 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.3..ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.3..ebuild
@@ -50,8 +50,8 @@ pkg_setup() {
 
 src_configure() {
local myconf=(
-   $(use connman || use networkmanager && echo -dbus-linked || 
echo -no-dbus)
-   $(use ssl && echo -openssl-linked || echo -no-openssl)
+   $(use connman || use networkmanager && echo -dbus-linked)
+   $(use ssl && echo -openssl-linked)
)
qt5-build_src_configure
 }

diff --git a/dev-qt/qtnetwork/qtnetwork-5..ebuild 
b/dev-qt/qtnetwork/qtnetwork-5..ebuild
index b67c60d..6c2cfa1 100644
--- a/dev-qt/qtnetwork/qtnetwork-5..ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5..ebuild
@@ -50,8 +50,8 @@ pkg_setup() {
 
 src_configure() {
local myconf=(
-   $(use connman || use networkmanager && echo -dbus-linked || 
echo -no-dbus)
-   $(use ssl && echo -openssl-linked || echo -no-openssl)
+   $(use connman || use networkmanager && echo -dbus-linked)
+   $(use ssl && echo -openssl-linked)
)
qt5-build_src_configure
 }



[gentoo-commits] gentoo-x86 commit in media-sound/flacon: flacon-1.0.0.ebuild ChangeLog

2014-07-27 Thread Mikle Kolyada (zlogene)
zlogene 14/07/27 13:44:48

  Modified: ChangeLog
  Added:flacon-1.0.0.ebuild
  Log:
  Version bump, thanks to Nikoli
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.17 media-sound/flacon/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/flacon/ChangeLog?rev=1.17&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/flacon/ChangeLog?rev=1.17&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/flacon/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/flacon/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   26 Apr 2014 17:56:11 -  1.16
+++ ChangeLog   27 Jul 2014 13:44:48 -  1.17
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/flacon
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/flacon/ChangeLog,v 1.16 
2014/04/26 17:56:11 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/flacon/ChangeLog,v 1.17 
2014/07/27 13:44:48 zlogene Exp $
+
+*flacon-1.0.0 (27 Jul 2014)
+
+  27 Jul 2014; Mikle Kolyada  +flacon-1.0.0.ebuild:
+  Version bump, thanks to Nikoli
 
   26 Apr 2014; Maxim Koltsov  -flacon-0.6.1.ebuild:
   Clean old.



1.1  media-sound/flacon/flacon-1.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/flacon/flacon-1.0.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/flacon/flacon-1.0.0.ebuild?rev=1.1&content-type=text/plain

Index: flacon-1.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/flacon/flacon-1.0.0.ebuild,v 1.1 
2014/07/27 13:44:48 zlogene Exp $

EAPI="5"

PLOCALES="cs_CZ cs de es_MX es fr gl hu it pl_PL pl pt_BR pt_PT ro_RO ru si_LK 
uk zh_CN zh_TW"

EGIT_REPO_URI="https://github.com/flacon/flacon.git";

inherit cmake-utils l10n fdo-mime gnome2-utils
[[ ${PV} == ** ]] && inherit git-r3

DESCRIPTION="Extracts audio tracks from audio CD image to separate tracks"
HOMEPAGE="https://flacon.github.io/";
[[ ${PV} == ** ]] || \
SRC_URI="https://github.com/flacon/flacon/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
[[ ${PV} == ** ]] || \
KEYWORDS="~amd64 ~x86"
IUSE="flac mac mp3 mp4 ogg replaygain tta wavpack"

RDEPEND="
dev-qt/qtcore:4
dev-qt/qtgui:4
dev-libs/uchardet
media-sound/shntool[mac?]
flac? ( media-libs/flac )
mac? ( media-sound/mac )
mp3? ( media-sound/lame )
mp4? ( media-libs/faac )
ogg? ( media-sound/vorbis-tools )
tta? ( media-sound/ttaenc )
wavpack? ( media-sound/wavpack )
replaygain? (
mp3? ( media-sound/mp3gain )
ogg? ( media-sound/vorbisgain )
)
"
DEPEND="${RDEPEND}"

src_prepare() {
my_rm_loc() {
rm "translations/${PN}_${1}."{ts,desktop} || die
}

l10n_find_plocales_changes "translations" "${PN}_" '.ts'
l10n_for_each_disabled_locale_do my_rm_loc
}

pkg_preinst() {
gnome2_icon_savelist
}

pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}

pkg_postrm() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}






[gentoo-commits] gentoo-x86 commit in kde-base/kdelibs: kdelibs-4.12.5-r2.ebuild ChangeLog

2014-07-27 Thread Richard Freeman (rich0)
rich0   14/07/27 13:42:13

  Modified: kdelibs-4.12.5-r2.ebuild ChangeLog
  Log:
  amd64 stable - 517864
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x08C170DE55EC123A)

Revision  ChangesPath
1.2  kde-base/kdelibs/kdelibs-4.12.5-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/kdelibs-4.12.5-r2.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/kdelibs-4.12.5-r2.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/kdelibs-4.12.5-r2.ebuild?r1=1.1&r2=1.2

Index: kdelibs-4.12.5-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-4.12.5-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdelibs-4.12.5-r2.ebuild23 Jul 2014 11:07:59 -  1.1
+++ kdelibs-4.12.5-r2.ebuild27 Jul 2014 13:42:13 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-4.12.5-r2.ebuild,v 
1.1 2014/07/23 11:07:59 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-4.12.5-r2.ebuild,v 
1.2 2014/07/27 13:42:13 rich0 Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 DESCRIPTION="KDE libraries needed by all KDE programs."
 
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux"
 LICENSE="LGPL-2.1"
 IUSE="3dnow acl alsa altivec +bzip2 debug doc fam jpeg2k kerberos lzma
 mmx nls openexr +policykit semantic-desktop spell sse sse2 ssl +udev +udisks



1.1020   kde-base/kdelibs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/ChangeLog?rev=1.1020&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/ChangeLog?rev=1.1020&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdelibs/ChangeLog?r1=1.1019&r2=1.1020

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v
retrieving revision 1.1019
retrieving revision 1.1020
diff -u -r1.1019 -r1.1020
--- ChangeLog   24 Jul 2014 11:14:51 -  1.1019
+++ ChangeLog   27 Jul 2014 13:42:13 -  1.1020
@@ -1,6 +1,9 @@
 # ChangeLog for kde-base/kdelibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v 1.1019 
2014/07/24 11:14:51 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v 1.1020 
2014/07/27 13:42:13 rich0 Exp $
+
+  27 Jul 2014; Richard Freeman  kdelibs-4.12.5-r2.ebuild:
+  amd64 stable - 517864
 
   24 Jul 2014; Samuli Suominen  metadata.xml:
   Remove descriptions for USE flags "udisks" and "upower" because their global






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

2014-07-27 Thread Davide Pesavento
commit: fd0170b72ae239f5d51e2ec807036c7de3895877
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Jul 27 13:26:41 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 27 13:26:41 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=fd0170b7

[qt5-build.eclass] QCONFIG_* variables are no longer public API.

---
 eclass/qt5-build.eclass | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index 28b82d9..d089b87 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -115,21 +115,6 @@ esac
 # definitions, which are then merged together with all other Qt5 packages
 # installed on the system to obtain the global qconfig.{h,pri} files.
 
-# @ECLASS-VARIABLE: QCONFIG_ADD
-# @DEFAULT_UNSET
-# @DESCRIPTION:
-# Array of options that must be added to QT_CONFIG in qconfig.pri
-
-# @ECLASS-VARIABLE: QCONFIG_REMOVE
-# @DEFAULT_UNSET
-# @DESCRIPTION:
-# Array of options that must be removed from QT_CONFIG in qconfig.pri
-
-# @ECLASS-VARIABLE: QCONFIG_DEFINE
-# @DEFAULT_UNSET
-# @DESCRIPTION:
-# Array of macros that must be defined in QtCore/qconfig.h
-
 # @ECLASS-VARIABLE: VIRTUALX_REQUIRED
 # @DESCRIPTION:
 # For proper description see virtualx.eclass man page.



[gentoo-commits] gentoo-x86 commit in www-client/pybugz: pybugz-0.10.1-r2.ebuild ChangeLog

2014-07-27 Thread Pacho Ramos (pacho)
pacho   14/07/27 13:36:18

  Modified: pybugz-0.10.1-r2.ebuild ChangeLog
  Log:
  x86 stable, bug #517550
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.3  www-client/pybugz/pybugz-0.10.1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild?r1=1.2&r2=1.3

Index: pybugz-0.10.1-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pybugz-0.10.1-r2.ebuild 27 Jul 2014 13:34:21 -  1.2
+++ pybugz-0.10.1-r2.ebuild 27 Jul 2014 13:36:18 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild,v 
1.2 2014/07/27 13:34:21 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild,v 
1.3 2014/07/27 13:36:18 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 pypy pypy2_0 )
@@ -12,7 +12,7 @@
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
inherit vcs-snapshot
 fi
 



1.120www-client/pybugz/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?rev=1.120&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?rev=1.120&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?r1=1.119&r2=1.120

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog   27 Jul 2014 13:34:21 -  1.119
+++ ChangeLog   27 Jul 2014 13:36:18 -  1.120
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/pybugz
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.119 
2014/07/27 13:34:21 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.120 
2014/07/27 13:36:18 pacho Exp $
+
+  27 Jul 2014; Pacho Ramos  pybugz-0.10.1-r2.ebuild:
+  x86 stable, bug #517550
 
   27 Jul 2014; William Hubbs  pybugz-0.10.1-r2.ebuild:
   amd64 stable for bug #517550.






[gentoo-commits] proj/qt:master commit in: dev-qt/qtgui/

2014-07-27 Thread Davide Pesavento
commit: 692d37c05ebe292513576412543214914a464391
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Jul 27 13:36:00 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Jul 27 13:36:00 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=692d37c0

[dev-qt/qtgui:5] Simplify dbus handling.

qt5_base_configure already passes -no-dbus, no need to repeat it here.

Package-Manager: portage-2.2.10

---
 dev-qt/qtgui/qtgui-5.3.1.ebuild| 7 +--
 dev-qt/qtgui/qtgui-5.3..ebuild | 7 +--
 dev-qt/qtgui/qtgui-5..ebuild   | 7 +--
 3 files changed, 3 insertions(+), 18 deletions(-)

diff --git a/dev-qt/qtgui/qtgui-5.3.1.ebuild b/dev-qt/qtgui/qtgui-5.3.1.ebuild
index 14c0fef..ee936d2 100644
--- a/dev-qt/qtgui/qtgui-5.3.1.ebuild
+++ b/dev-qt/qtgui/qtgui-5.3.1.ebuild
@@ -121,11 +121,6 @@ pkg_setup() {
 }
 
 src_configure() {
-   local dbus="-no-dbus"
-   if use accessibility && use xcb; then
-   dbus="-dbus"
-   fi
-
local gl="-no-opengl"
if use gles2; then
gl="-opengl es2"
@@ -134,7 +129,7 @@ src_configure() {
fi
 
local myconf=(
-   ${dbus}
+   $(use accessibility && use xcb && echo -dbus-linked)
$(qt_use egl)
$(qt_use eglfs)
$(qt_use evdev)

diff --git a/dev-qt/qtgui/qtgui-5.3..ebuild 
b/dev-qt/qtgui/qtgui-5.3..ebuild
index 14c0fef..ee936d2 100644
--- a/dev-qt/qtgui/qtgui-5.3..ebuild
+++ b/dev-qt/qtgui/qtgui-5.3..ebuild
@@ -121,11 +121,6 @@ pkg_setup() {
 }
 
 src_configure() {
-   local dbus="-no-dbus"
-   if use accessibility && use xcb; then
-   dbus="-dbus"
-   fi
-
local gl="-no-opengl"
if use gles2; then
gl="-opengl es2"
@@ -134,7 +129,7 @@ src_configure() {
fi
 
local myconf=(
-   ${dbus}
+   $(use accessibility && use xcb && echo -dbus-linked)
$(qt_use egl)
$(qt_use eglfs)
$(qt_use evdev)

diff --git a/dev-qt/qtgui/qtgui-5..ebuild b/dev-qt/qtgui/qtgui-5..ebuild
index 6bcb9f8..a755ca2 100644
--- a/dev-qt/qtgui/qtgui-5..ebuild
+++ b/dev-qt/qtgui/qtgui-5..ebuild
@@ -122,11 +122,6 @@ pkg_setup() {
 }
 
 src_configure() {
-   local dbus="-no-dbus"
-   if use accessibility && use xcb; then
-   dbus="-dbus"
-   fi
-
local gl="-no-opengl"
if use gles2; then
gl="-opengl es2"
@@ -135,7 +130,7 @@ src_configure() {
fi
 
local myconf=(
-   ${dbus}
+   $(use accessibility && use xcb && echo -dbus-linked)
$(qt_use egl)
$(qt_use eglfs)
$(qt_use evdev)



[gentoo-commits] gentoo-x86 commit in www-client/pybugz: pybugz-0.10.1-r2.ebuild ChangeLog

2014-07-27 Thread William Hubbs (williamh)
williamh14/07/27 13:34:21

  Modified: pybugz-0.10.1-r2.ebuild ChangeLog
  Log:
  amd64 stable for bug #517550.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x30C46538)

Revision  ChangesPath
1.2  www-client/pybugz/pybugz-0.10.1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild?r1=1.1&r2=1.2

Index: pybugz-0.10.1-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pybugz-0.10.1-r2.ebuild 21 May 2014 09:16:31 -  1.1
+++ pybugz-0.10.1-r2.ebuild 27 Jul 2014 13:34:21 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild,v 
1.1 2014/05/21 09:16:31 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.10.1-r2.ebuild,v 
1.2 2014/07/27 13:34:21 williamh Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 pypy pypy2_0 )
@@ -12,7 +12,7 @@
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
inherit vcs-snapshot
 fi
 



1.119www-client/pybugz/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?rev=1.119&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?rev=1.119&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?r1=1.118&r2=1.119

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog   22 Jun 2014 18:07:15 -  1.118
+++ ChangeLog   27 Jul 2014 13:34:21 -  1.119
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/pybugz
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.118 
2014/06/22 18:07:15 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.119 
2014/07/27 13:34:21 williamh Exp $
+
+  27 Jul 2014; William Hubbs  pybugz-0.10.1-r2.ebuild:
+  amd64 stable for bug #517550.
 
   22 Jun 2014; William Hubbs 
   -files/pybugz--bugzilla-4.4.1.patch, pybugz-.ebuild:






[gentoo-commits] gentoo-x86 commit in media-video/mpv: mpv-0.4.2.ebuild ChangeLog

2014-07-27 Thread Mikle Kolyada (zlogene)
zlogene 14/07/27 13:28:06

  Modified: ChangeLog
  Added:mpv-0.4.2.ebuild
  Log:
  Version bump, thanks to Nikoli
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.89 media-video/mpv/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/ChangeLog?rev=1.89&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/ChangeLog?rev=1.89&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/mpv/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog   20 Jul 2014 19:24:30 -  1.88
+++ ChangeLog   27 Jul 2014 13:28:06 -  1.89
@@ -1,6 +1,11 @@
 # ChangeLog for media-video/mpv
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/ChangeLog,v 1.88 2014/07/20 
19:24:30 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/ChangeLog,v 1.89 2014/07/27 
13:28:06 zlogene Exp $
+
+*mpv-0.4.2 (27 Jul 2014)
+
+  27 Jul 2014; Mikle Kolyada  +mpv-0.4.2.ebuild:
+  Version bump, thanks to Nikoli
 
   20 Jul 2014; Mikle Kolyada  mpv-.ebuild:
   Respect cflags, thanks to Nikoli



1.1  media-video/mpv/mpv-0.4.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/mpv-0.4.2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/mpv-0.4.2.ebuild?rev=1.1&content-type=text/plain

Index: mpv-0.4.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/mpv-0.4.2.ebuild,v 1.1 
2014/07/27 13:28:06 zlogene Exp $

EAPI=5

EGIT_REPO_URI="https://github.com/mpv-player/mpv.git";

inherit eutils waf-utils pax-utils fdo-mime gnome2-utils
[[ ${PV} == ** ]] && inherit git-r3

WAF_V="1.7.16"

DESCRIPTION="Video player based on MPlayer/mplayer2"
HOMEPAGE="http://mpv.io/";
SRC_URI="http://ftp.waf.io/pub/release/waf-${WAF_V}";
[[ ${PV} == ** ]] || \
SRC_URI+=" https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
[[ ${PV} == ** ]] || \
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
IUSE="+alsa bluray bs2b cdio -doc-pdf dvb +dvd dvdnav +enca encode +iconv jack 
-joystick
jpeg ladspa lcms +libass libcaca libguess libmpv lirc lua luajit +mpg123 
-openal +opengl
oss portaudio postproc pulseaudio pvr +quvi samba sdl selinux +shm v4l vaapi 
vdpau
vf-dlopen wayland +X xinerama +xscreensaver +xv"

REQUIRED_USE="
dvdnav? ( dvd )
enca? ( iconv )
lcms? ( opengl )
libguess? ( iconv )
luajit? ( lua )
opengl? ( || ( wayland X ) )
pvr? ( v4l )
vaapi? ( X )
vdpau? ( X )
wayland? ( opengl )
xinerama? ( X )
xscreensaver? ( X )
xv? ( X )
"

RDEPEND+="
|| (
>=media-video/libav-10:=[encode?,threads,vaapi?,vdpau?]
>=media-video/ffmpeg-2.1.4:0=[encode?,threads,vaapi?,vdpau?]
)
sys-libs/ncurses
sys-libs/zlib
X? (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXxf86vm
opengl? ( virtual/opengl )
lcms? ( >=media-libs/lcms-2.6:2 )
vaapi? ( >=x11-libs/libva-0.34.0[X(+)] )
vdpau? ( >=x11-libs/libvdpau-0.2 )
xinerama? ( x11-libs/libXinerama )
xscreensaver? ( x11-libs/libXScrnSaver )
xv? ( x11-libs/libXv )
)
alsa? ( media-libs/alsa-lib )
bluray? ( >=media-libs/libbluray-0.3.0 )
bs2b? ( media-libs/libbs2b )
cdio? (
dev-libs/libcdio
dev-libs/libcdio-paranoia
)
dvb? ( virtual/linuxtv-dvb-headers )
dvd? (
>=media-libs/libdvdread-4.1.3
dvdnav? ( >=media-libs/libdvdnav-4.2.0 )
)
enca? ( app-i18n/enca )
iconv? ( virtual/libiconv )
jack? ( media-sound/jack-audio-connection-kit )
jpeg? ( virtual/jpeg:0 )
ladspa? ( media-libs/ladspa-sdk )
libass? (
>=media-libs/libass-0.9.10:=[enca?,fontconfig]
virtual/ttf-fonts
)
libcaca? ( >=media-libs/libcaca-0.99_beta18 )
libguess? ( >=app-i18n/libguess-1.0 )
lirc? ( app-misc/lirc )
lua? (
!luajit? ( >=dev-lang/lua-5.1 )
luajit? ( dev-lang/luajit:2 )
)
mpg123? ( >=media-sound/mpg123-1.

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

2014-07-27 Thread Mikle Kolyada (zlogene)
zlogene 14/07/27 13:26:12

  Modified: ChangeLog package.mask
  Log:
  Update media-video/mpv mask.

Revision  ChangesPath
1.9265   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9264
retrieving revision 1.9265
diff -u -r1.9264 -r1.9265
--- ChangeLog   27 Jul 2014 11:47:24 -  1.9264
+++ ChangeLog   27 Jul 2014 13:26:11 -  1.9265
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9264 2014/07/27 
11:47:24 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9265 2014/07/27 
13:26:11 zlogene 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!
 
+  27 Jul 2014; Mikle Kolyada  package.mask:
+  Update media-video/mpv mask.
+
   27 Jul 2014; Johannes Huber  package.mask:
   Mask >=dev-util/cmake-3.0.0 for testing.
 



1.15933  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15932
retrieving revision 1.15933
diff -u -r1.15932 -r1.15933
--- package.mask27 Jul 2014 11:47:24 -  1.15932
+++ package.mask27 Jul 2014 13:26:11 -  1.15933
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15932 2014/07/27 
11:47:24 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15933 2014/07/27 
13:26:11 zlogene 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
@@ -195,7 +195,7 @@
 # Maxim Koltsov  (9 Jul 2014)
 # Requires >=libav-10, which is masked, or >=ffmpeg-2.1.4
 # If you use ffmpeg instead of libav, sorry!
-=media-video/mpv-0.4.1
+=media-video/mpv-0.4*
 
 # Andreas K. Huettel  (7 Jul 2014)
 # Filter never was part of core Perl, no idea why we have a virtual.






[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ffmpeg-2.3.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 13:10:10

  Modified: ffmpeg-.ebuild ffmpeg-2.3.ebuild ChangeLog
  Log:
  Update media-libs/x265 dependency from 1.0 to 1.2 wrt #518320 by "darkbasic"
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.168media-video/ffmpeg/ffmpeg-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild?rev=1.168&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild?rev=1.168&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild?r1=1.167&r2=1.168

Index: ffmpeg-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ffmpeg-.ebuild  27 Jul 2014 09:23:21 -  1.167
+++ ffmpeg-.ebuild  27 Jul 2014 13:10:10 -  1.168
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild,v 
1.167 2014/07/27 09:23:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild,v 
1.168 2014/07/27 13:10:10 ssuominen Exp $
 
 EAPI="5"
 
@@ -100,7 +100,7 @@
wavpack? ( >=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}] )
webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] )
x264? ( >=media-libs/x264-0.0.20130506:=[${MULTILIB_USEDEP}] )
-   x265? ( >=media-libs/x265-1.0:=[${MULTILIB_USEDEP}] )
+   x265? ( >=media-libs/x265-1.2:=[${MULTILIB_USEDEP}] )
xvid? ( >=media-libs/xvid-1.3.2-r1[${MULTILIB_USEDEP}] )
)
fdk? ( >=media-libs/fdk-aac-0.1.3[${MULTILIB_USEDEP}] )



1.2  media-video/ffmpeg/ffmpeg-2.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild?r1=1.1&r2=1.2

Index: ffmpeg-2.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpeg-2.3.ebuild   27 Jul 2014 09:36:19 -  1.1
+++ ffmpeg-2.3.ebuild   27 Jul 2014 13:10:10 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild,v 1.1 
2014/07/27 09:36:19 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.3.ebuild,v 1.2 
2014/07/27 13:10:10 ssuominen Exp $
 
 EAPI="5"
 
@@ -100,7 +100,7 @@
wavpack? ( >=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}] )
webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] )
x264? ( >=media-libs/x264-0.0.20130506:=[${MULTILIB_USEDEP}] )
-   x265? ( >=media-libs/x265-1.0:=[${MULTILIB_USEDEP}] )
+   x265? ( >=media-libs/x265-1.2:=[${MULTILIB_USEDEP}] )
xvid? ( >=media-libs/xvid-1.3.2-r1[${MULTILIB_USEDEP}] )
)
fdk? ( >=media-libs/fdk-aac-0.1.3[${MULTILIB_USEDEP}] )



1.772media-video/ffmpeg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.772&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.772&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.771&r2=1.772

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.771
retrieving revision 1.772
diff -u -r1.771 -r1.772
--- ChangeLog   27 Jul 2014 09:36:19 -  1.771
+++ ChangeLog   27 Jul 2014 13:10:10 -  1.772
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpeg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.771 
2014/07/27 09:36:19 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.772 
2014/07/27 13:10:10 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  ffmpeg-2.3.ebuild,
+  ffmpeg-.ebuild:
+  Update media-libs/x265 dependency from 1.0 to 1.2 wrt #518320 by "darkbasic"
 
 *ffmpeg-2.3 (27 Jul 2014)
 






[gentoo-commits] gentoo-x86 commit in media-libs/libgpod: ChangeLog libgpod-0.8.2.ebuild

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 13:10:14

  Modified: ChangeLog
  Removed:  libgpod-0.8.2.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.105media-libs/libgpod/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.105&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.105&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgpod/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog   7 Apr 2014 16:50:00 -   1.104
+++ ChangeLog   27 Jul 2014 13:10:14 -  1.105
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libgpod
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.104 
2014/04/07 16:50:00 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.105 
2014/07/27 13:10:14 ssuominen Exp $
+
+  27 Jul 2014; Samuli Suominen  -libgpod-0.8.2.ebuild:
+  old
 
   07 Apr 2014; Samuli Suominen  libgpod-0.8.3.ebuild:
   Move PYTHON_REQUIRED_USE behind USE python.






[gentoo-commits] proj/sci:master commit in: dev-java/jeuclid-core/, dev-java/jeuclid-core/files/

2014-07-27 Thread Guillaume Horel
commit: 4507cf4c9a4819c4ba591bbb64472b8478699e0a
Author: Guillaume Horel  gmail  com>
AuthorDate: Sun Jul 27 13:07:45 2014 +
Commit: Guillaume Horel  gmail  com>
CommitDate: Sun Jul 27 13:07:45 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4507cf4c

dev-java/jeuclid-core: upgrade dependencies

Package-Manager: portage-2.2.10

---
 dev-java/jeuclid-core/ChangeLog   | 10 --
 .../jeuclid-core/files/jeuclid-core-cast-issue.patch  | 18 ++
 ...core-3.1.9.ebuild => jeuclid-core-3.1.9-r1.ebuild} | 19 +--
 3 files changed, 31 insertions(+), 16 deletions(-)

diff --git a/dev-java/jeuclid-core/ChangeLog b/dev-java/jeuclid-core/ChangeLog
index 9b3617b..b75ef7d 100644
--- a/dev-java/jeuclid-core/ChangeLog
+++ b/dev-java/jeuclid-core/ChangeLog
@@ -1,7 +1,14 @@
 # ChangeLog for dev-java/jeuclid-core
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*jeuclid-core-3.1.9-r1 (27 Jul 2014)
+
+  27 Jul 2014; Guillaume Horel 
+  +files/jeuclid-core-cast-issue.patch, +jeuclid-core-3.1.9-r1.ebuild,
+  -jeuclid-core-3.1.9.ebuild:
+  dev-java/jeuclid-core: upgrade dependencies
+
 *jeuclid-core-3.1.9 (14 May 2012)
 
   14 May 2012; Sébastien Fabbro 
@@ -18,4 +25,3 @@
 
   22 Jan 2010; Sébastien Fabbro  +metadata.xml:
   Initial import. Ebuild initially submitted by Jiri Tyr, bug #224995
-

diff --git a/dev-java/jeuclid-core/files/jeuclid-core-cast-issue.patch 
b/dev-java/jeuclid-core/files/jeuclid-core-cast-issue.patch
new file mode 100644
index 000..2ff4670
--- /dev/null
+++ b/dev-java/jeuclid-core/files/jeuclid-core-cast-issue.patch
@@ -0,0 +1,18 @@
+Index: 
jeuclid-parent-3.1.9/jeuclid-core/src/main/java/net/sourceforge/jeuclid/converter/ConverterRegistry.java
+===
+--- 
jeuclid-parent-3.1.9.orig/jeuclid-core/src/main/java/net/sourceforge/jeuclid/converter/ConverterRegistry.java
  2010-02-12 15:10:32.0 +0100
 
jeuclid-parent-3.1.9/jeuclid-core/src/main/java/net/sourceforge/jeuclid/converter/ConverterRegistry.java
   2013-08-20 14:55:16.0 +0200
+@@ -52,10 +52,10 @@
+  */
+ @SuppressWarnings("unchecked")
+ protected ConverterRegistry() {
+-final Iterator it = Service
+-.providers(ConverterDetector.class);
++final Iterator it = Service
++.providers(ConverterDetector.class);
+ while (it.hasNext()) {
+-final ConverterDetector det = it.next();
++final ConverterDetector det = (ConverterDetector) it.next();
+ det.detectConversionPlugins(this);
+ }
+ }

diff --git a/dev-java/jeuclid-core/jeuclid-core-3.1.9.ebuild 
b/dev-java/jeuclid-core/jeuclid-core-3.1.9-r1.ebuild
similarity index 59%
rename from dev-java/jeuclid-core/jeuclid-core-3.1.9.ebuild
rename to dev-java/jeuclid-core/jeuclid-core-3.1.9-r1.ebuild
index e3c3fe8..8d901a7 100644
--- a/dev-java/jeuclid-core/jeuclid-core-3.1.9.ebuild
+++ b/dev-java/jeuclid-core/jeuclid-core-3.1.9-r1.ebuild
@@ -20,9 +20,7 @@ COMMON_DEPEND="dev-java/ant-core
dev-java/commons-logging
dev-java/jcip-annotations
dev-java/xml-commons-external:1.3
-   dev-java/xmlgraphics-commons:1.3"
-
-# note: dev-java/jcip-annotations is in the java overlay
+   dev-java/xmlgraphics-commons:1.5"
 
 RDEPEND=">=virtual/jre-1.5
${COMMON_DEPEND}"
@@ -34,11 +32,8 @@ DEPEND=">=virtual/jdk-1.5
 S="${WORKDIR}/jeuclid-parent-${PV}/${PN}"
 
 src_prepare() {
-   # remove support of FreeHep from JAVA files (not needed for FOP plugin)
-   # really not needed?
-   #rm -f src/main/java/net/sourceforge/jeuclid/converter/FreeHep*
-
-   epatch "${FILESDIR}"/${PN}-no-freehep.patch
+   epatch "${FILESDIR}"/${PN}-no-freehep.patch \
+   "${FILESDIR}"/${PN}-cast-issue.patch
 
# create directory for dependencies
mkdir lib && cd lib || die
@@ -46,12 +41,8 @@ src_prepare() {
# add dependencies into the lib dir
java-pkg_jar-from ant-core ant.jar
java-pkg_jar-from batik-1.7 batik-all.jar
-   java-pkg_jar-from commons-logging commons-logging.jar
-   java-pkg_jar-from jcip-annotations jcip-annotations.jar
-   java-pkg_jar-from xml-commons-external-1.3 xml-apis.jar
-   java-pkg_jar-from xmlgraphics-commons-1.3 xmlgraphics-commons.jar
-   #java-pkg_jar-from freehep-util freehep-util.jar
-   #java-pkg_jar-from freehep-graphics2d freehep-graphics2d.jar
+   java-pkg_jar-from 
commons-logging,jcip-annotations,xml-commons-external-1.3
+   java-pkg_jar-from xml-commons-external-1.3,xmlgraphics-commons-1.5
 }
 
 src_install() {



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

2014-07-27 Thread Guillaume Horel
commit: e642edf2bb5462db41297168d2b8381466df1b33
Author: Guillaume Horel  gmail  com>
AuthorDate: Sun Jul 27 13:08:42 2014 +
Commit: Guillaume Horel  gmail  com>
CommitDate: Sun Jul 27 13:08:42 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e642edf2

Merge branch 'master' of git+ssh://git.overlays.gentoo.org/proj/sci


 dev-ml/mlgmpidl/Manifest   |  2 +-
 dev-ml/mlgmpidl/mlgmpidl-1.1.ebuild|  4 +-
 dev-ml/ocamlgraph/Manifest |  2 +-
 dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild  |  4 +-
 dev-ml/zarith/Manifest |  2 +-
 dev-ml/zarith/zarith-1.2.1.ebuild  |  4 +-
 dev-python/ffc/ChangeLog   |  9 
 dev-python/ffc/Manifest|  1 +
 dev-python/ffc/ffc-1.3.0.ebuild| 10 +++-
 .../ffc/{ffc-1.3.0.ebuild => ffc-1.4.0.ebuild} | 10 +++-
 dev-python/fiat/ChangeLog  | 14 -
 dev-python/fiat/Manifest   |  2 +
 .../fiat/{fiat-1.1.ebuild => fiat-1.3.0.ebuild}| 13 +++--
 .../fiat/{fiat-1.1.ebuild => fiat-1.4.0.ebuild}| 13 +++--
 dev-python/instant/ChangeLog   | 10 +++-
 dev-python/instant/Manifest|  2 +
 .../{instant-1.2.0.ebuild => instant-1.3.0.ebuild} |  9 ++--
 .../{instant-1.2.0.ebuild => instant-1.4.0.ebuild} |  9 ++--
 dev-python/ufl/ChangeLog   | 10 +++-
 dev-python/ufl/Manifest|  4 +-
 dev-python/ufl/metadata.xml|  3 ++
 .../ufl/{ufl-0.5.4.ebuild => ufl-1.3.0.ebuild} | 11 ++--
 .../ufl/{ufl-0.5.4.ebuild => ufl-1.4.0.ebuild} | 11 ++--
 sci-chemistry/module2/ChangeLog| 10 
 sci-chemistry/module2/Manifest |  1 +
 sci-chemistry/{concoord => module2}/metadata.xml   |  0
 sci-chemistry/module2/module2-0_pre20140717.ebuild | 51 ++
 sci-chemistry/pales-bin/ChangeLog  | 13 +
 sci-chemistry/pales-bin/Manifest   |  1 +
 sci-chemistry/{concoord => pales-bin}/metadata.xml |  0
 .../pales-bin/pales-bin-0_pre140717.ebuild | 26 +
 sci-chemistry/redcat/ChangeLog | 14 +
 sci-chemistry/redcat/Manifest  |  1 +
 sci-chemistry/redcat/files/CMakeLists.txt  | 13 +
 sci-chemistry/{concoord => redcat}/metadata.xml|  0
 sci-chemistry/redcat/redcat-3.ebuild   | 62 ++
 sci-libs/libsc/ChangeLog   |  6 +++
 sci-libs/libsc/Manifest|  1 +
 sci-libs/libsc/libsc-0.7.3.ebuild  |  8 +--
 .../libsc/{libsc-0.7.3.ebuild => libsc-1.0.ebuild} | 14 ++---
 sci-libs/libsc/metadata.xml| 23 
 sci-libs/p4est/ChangeLog   |  6 +++
 sci-libs/p4est/Manifest|  2 +
 sci-libs/p4est/metadata.xml| 29 +-
 .../p4est/{p4est-0.3.5.ebuild => p4est-1.0.ebuild} | 33 +++-
 sci-mathematics/alt-ergo/Manifest  |  2 +-
 sci-mathematics/alt-ergo/alt-ergo-0.95.2.ebuild|  8 +--
 sci-mathematics/apron/ChangeLog|  4 ++
 sci-mathematics/apron/Manifest |  4 +-
 sci-mathematics/apron/apron-0.9.10-r1.ebuild   | 20 ++-
 sci-mathematics/apron/apron-0.9.10.ebuild  |  6 +--
 sci-mathematics/flocq/Manifest |  2 +-
 sci-mathematics/flocq/flocq-2.3.0.ebuild   |  4 +-
 sci-mathematics/frama-c/Manifest   |  2 +-
 sci-mathematics/frama-c/frama-c-20140301.ebuild|  4 +-
 sci-mathematics/giac/Manifest  |  2 +-
 sci-mathematics/giac/giac-1.1.0.ebuild |  2 +-
 sci-mathematics/ltl2ba/Manifest|  2 +-
 sci-mathematics/petsc/Manifest |  1 +
 ...rpath.patch => petsc-3.5.1-disable-rpath.patch} |  0
 sci-mathematics/petsc/metadata.xml |  4 +-
 .../{petsc-3.4.2.ebuild => petsc-3.5.1.ebuild} | 25 -
 sci-mathematics/ufc/ChangeLog  | 10 +++-
 sci-mathematics/ufc/Manifest   |  3 +-
 .../ufc/{ufc-1.4.2.ebuild => ufc-2.3.0.ebuild} |  7 ++-
 sci-mathematics/why/Manifest   |  2 +-
 sci-mathematics/why/why-2.34.ebuild|  9 ++--
 sci-mathematics/why3/Manifest  |  2 +-
 sci-mathematics/why3/why3-0.83.ebuild  |  7 +--
 sci-physics/geant-vmc/ChangeLog|  5 ++
 sci-physics/geant-vmc/geant-vmc-.ebuild| 19 ++-
 sci-visualization/gnuplot/ChangeLog|  9 
 ...lot-4.7..ebuild => gnuplot-5.0..ebuild} |  1 +
 sys-cluster/hpx/hpx-0.9.8.ebuild   | 13 ++---
 sys-cluster/hpx/hpx-.ebuild| 13 ++--

[gentoo-commits] gentoo-x86 commit in media-libs/x265: x265-9999.ebuild x265-1.2.ebuild ChangeLog

2014-07-27 Thread Samuli Suominen (ssuominen)
ssuominen14/07/27 13:06:12

  Modified: x265-.ebuild ChangeLog
  Added:x265-1.2.ebuild
  Log:
  Version bump; update SLOT to 0/25 based on new SONAME
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.8  media-libs/x265/x265-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-.ebuild?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-.ebuild?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-.ebuild?r1=1.7&r2=1.8

Index: x265-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- x265-.ebuild14 Jun 2014 02:40:06 -  1.7
+++ x265-.ebuild27 Jul 2014 13:06:12 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v 1.7 
2014/06/14 02:40:06 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v 1.8 
2014/07/27 13:06:12 ssuominen Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 
 LICENSE="GPL-2"
 # subslot = libx265 soname
-SLOT="0/18"
+SLOT="0/25"
 IUSE="+10bit test"
 
 ASM_DEPEND=">=dev-lang/yasm-1.2.0"



1.9  media-libs/x265/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   14 Jun 2014 02:40:06 -  1.8
+++ ChangeLog   27 Jul 2014 13:06:12 -  1.9
@@ -1,6 +1,12 @@
 # ChangeLog for media-libs/x265
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.8 2014/06/14 
02:40:06 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.9 2014/07/27 
13:06:12 ssuominen Exp $
+
+*x265-1.2 (27 Jul 2014)
+
+  27 Jul 2014; Samuli Suominen  +x265-1.2.ebuild,
+  x265-.ebuild:
+  Version bump; update SLOT to 0/25 based on new SONAME
 
   14 Jun 2014; Mike Gilbert  x265-1.0.ebuild,
   x265-.ebuild:



1.1  media-libs/x265/x265-1.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.2.ebuild?rev=1.1&content-type=text/plain

Index: x265-1.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.2.ebuild,v 1.1 
2014/07/27 13:06:12 ssuominen Exp $

EAPI=5

inherit cmake-multilib multilib flag-o-matic

if [[ ${PV} = * ]]; then
inherit mercurial
EHG_REPO_URI="http://bitbucket.org/multicoreware/x265";
else
SRC_URI="https://bitbucket.org/multicoreware/x265/get/${PV}.tar.bz2 -> 
${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
fi

DESCRIPTION="Library for encoding video streams into the H.265/HEVC format"
HOMEPAGE="http://x265.org/";

LICENSE="GPL-2"
# subslot = libx265 soname
SLOT="0/25"
IUSE="+10bit test"

ASM_DEPEND=">=dev-lang/yasm-1.2.0"
RDEPEND=""
DEPEND="${RDEPEND}
abi_x86_32? ( ${ASM_DEPEND} )
abi_x86_64? ( ${ASM_DEPEND} )"

src_unpack() {
if [[ ${PV} = * ]]; then
mercurial_src_unpack
# Can't set it at global scope due to mercurial.eclass 
limitations...
export S=${WORKDIR}/${P}/source
else
unpack ${A}
export S=$(echo "${WORKDIR}"/*${PN}*/source)
fi
}

multilib_src_configure() {
append-cflags -fPIC
append-cxxflags -fPIC
local mycmakeargs=(
$(cmake-utils_use_enable test TESTS)
$(multilib_is_native_abi || echo "-DENABLE_CLI=OFF")
-DHIGH_BIT_DEPTH=$(usex 10bit "ON" "OFF")
-DLIB_INSTALL_DIR="$(get_libdir)"
)
cmake-utils_src_configure
}

src_configure() {
multilib_parallel_foreach_abi multilib_src_configure
}

multilib_src_test() {
cd "${BUILD_DIR}/test" || die
for i in PoolTest TestBench ; do
./${i} || die
done
}

src_test() {
mul

[gentoo-commits] gentoo-x86 commit in dev-tex/html2latex: html2latex-1.1-r1.ebuild ChangeLog html2latex-1.1.ebuild

2014-07-27 Thread Mikle Kolyada (zlogene)
zlogene 14/07/27 13:05:11

  Modified: html2latex-1.1-r1.ebuild ChangeLog
  Removed:  html2latex-1.1.ebuild
  Log:
  Merge stable keywords; Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  dev-tex/html2latex/html2latex-1.1-r1.ebuild

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

Index: html2latex-1.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-tex/html2latex/html2latex-1.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- html2latex-1.1-r1.ebuild29 Aug 2013 16:17:37 -  1.1
+++ html2latex-1.1-r1.ebuild27 Jul 2014 13:05:11 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-tex/html2latex/html2latex-1.1-r1.ebuild,v 1.1 
2013/08/29 16:17:37 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-tex/html2latex/html2latex-1.1-r1.ebuild,v 1.2 
2014/07/27 13:05:11 zlogene Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
 
 IUSE="imagemagick libwww"
 



1.18 dev-tex/html2latex/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/html2latex/ChangeLog?rev=1.18&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/html2latex/ChangeLog?rev=1.18&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/html2latex/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-tex/html2latex/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   29 Aug 2013 16:17:37 -  1.17
+++ ChangeLog   27 Jul 2014 13:05:11 -  1.18
@@ -1,6 +1,10 @@
 # ChangeLog for dev-tex/html2latex
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/html2latex/ChangeLog,v 1.17 
2013/08/29 16:17:37 idella4 Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/html2latex/ChangeLog,v 1.18 
2014/07/27 13:05:11 zlogene Exp $
+
+  27 Jul 2014; Mikle Kolyada  -html2latex-1.1.ebuild,
+  html2latex-1.1-r1.ebuild:
+  Merge stable keywords; Drop old.
 
 *html2latex-1.1-r1 (29 Aug 2013)
 






[gentoo-commits] gentoo-x86 commit in media-libs/libsdl2: ChangeLog libsdl2-2.0.3-r100.ebuild

2014-07-27 Thread Julian Ospald (hasufell)
hasufell14/07/27 12:52:45

  Modified: ChangeLog
  Added:libsdl2-2.0.3-r100.ebuild
  Log:
  add no-multilib branch
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.22 media-libs/libsdl2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.22&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.22&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   27 Jul 2014 12:51:39 -  1.21
+++ ChangeLog   27 Jul 2014 12:52:45 -  1.22
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/libsdl2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.21 
2014/07/27 12:51:39 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.22 
2014/07/27 12:52:45 hasufell Exp $
+
+*libsdl2-2.0.3-r100 (27 Jul 2014)
+
+  27 Jul 2014; Julian Ospald  +libsdl2-2.0.3-r100.ebuild:
+  add no-multilib branch
 
 *libsdl2-2.0.3-r200 (27 Jul 2014)
 



1.1  media-libs/libsdl2/libsdl2-2.0.3-r100.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.3-r100.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.3-r100.ebuild?rev=1.1&content-type=text/plain

Index: libsdl2-2.0.3-r100.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.3-r100.ebuild,v 1.1 
2014/07/27 12:52:45 hasufell Exp $

# TODO: convert FusionSound #484250

EAPI=5
inherit autotools flag-o-matic toolchain-funcs eutils

MY_P=SDL2-${PV}
DESCRIPTION="Simple Direct Media Layer"
HOMEPAGE="http://www.libsdl.org";
SRC_URI="http://www.libsdl.org/release/${MY_P}.tar.gz";

LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE="3dnow alsa altivec custom-cflags dbus fusionsound gles haptic +joystick 
mmx nas opengl oss pulseaudio +sound sse sse2 static-libs +threads tslib udev 
+video wayland X xinerama xscreensaver"
REQUIRED_USE="
alsa? ( sound )
fusionsound? ( sound )
gles? ( video )
nas? ( sound )
opengl? ( video )
pulseaudio? ( sound )
xinerama? ( X )
xscreensaver? ( X )"

RDEPEND="
alsa? ( >=media-libs/alsa-lib-1.0.27.2 )
dbus? ( >=sys-apps/dbus-1.6.18-r1 )
fusionsound? ( || ( >=media-libs/FusionSound-1.1.1 
>=dev-libs/DirectFB-1.7.1[fusionsound] ) )
gles? ( >=media-libs/mesa-9.1.6[gles2] )
nas? ( >=media-libs/nas-1.9.4 )
opengl? (
>=virtual/opengl-7.0-r1
>=virtual/glu-9.0-r1
)
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1 )
tslib? ( >=x11-libs/tslib-1.0-r2 )
udev? ( >=virtual/libudev-208:= )
wayland? (
>=dev-libs/wayland-1.0.6
>=media-libs/mesa-9.1.6[wayland]
>=x11-libs/libxkbcommon-0.2.0
)
X? (
>=x11-libs/libX11-1.6.2
>=x11-libs/libXcursor-1.1.14
>=x11-libs/libXext-1.3.2
>=x11-libs/libXi-1.7.2
>=x11-libs/libXrandr-1.4.2
>=x11-libs/libXt-1.1.4
>=x11-libs/libXxf86vm-1.1.3
xinerama? ( >=x11-libs/libXinerama-1.1.3 )
xscreensaver? ( >=x11-libs/libXScrnSaver-1.2.2-r1 )
)"
DEPEND="${RDEPEND}
X? (
>=x11-proto/xextproto-7.2.1-r1
>=x11-proto/xproto-7.0.24
)
virtual/pkgconfig"

S=${WORKDIR}/${MY_P}

src_prepare() {
# https://bugzilla.libsdl.org/show_bug.cgi?id=1431
epatch "${FILESDIR}"/${P}-static-libs.patch \
"${FILESDIR}"/${P}-gles-wayland.patch
AT_M4DIR="/usr/share/aclocal acinclude" eautoreconf
}

src_configure() {
use custom-cflags || strip-flags

# sorted by `./configure --help`
econf \
$(use_enable static-libs static) \
$(use_enable sound audio) \
$(use_enable video) \
--enable-render \
--enable-events \
$(use_enable joystick) \
$(use_enable haptic) \
--enable-power \
$(use_enable threads) \
--enable-timers \
--enable-file \
--disable-loadso \
   

[gentoo-commits] gentoo-x86 commit in media-libs/libsdl2: libsdl2-2.0.3-r200.ebuild ChangeLog libsdl2-2.0.3.ebuild

2014-07-27 Thread Julian Ospald (hasufell)
hasufell14/07/27 12:51:39

  Modified: ChangeLog
  Added:libsdl2-2.0.3-r200.ebuild
  Removed:  libsdl2-2.0.3.ebuild
  Log:
  revbump for no-multilib/multilib branch
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.21 media-libs/libsdl2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.21&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.21&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   26 Jul 2014 09:06:49 -  1.20
+++ ChangeLog   27 Jul 2014 12:51:39 -  1.21
@@ -1,6 +1,12 @@
 # ChangeLog for media-libs/libsdl2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.20 
2014/07/26 09:06:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.21 
2014/07/27 12:51:39 hasufell Exp $
+
+*libsdl2-2.0.3-r200 (27 Jul 2014)
+
+  27 Jul 2014; Julian Ospald  -libsdl2-2.0.3.ebuild,
+  +libsdl2-2.0.3-r200.ebuild:
+  revbump for no-multilib/multilib branch
 
   26 Jul 2014; Samuli Suominen  libsdl2-2.0.1-r1.ebuild,
   libsdl2-2.0.2-r1.ebuild, libsdl2-2.0.2.ebuild, libsdl2-2.0.3.ebuild:



1.1  media-libs/libsdl2/libsdl2-2.0.3-r200.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.3-r200.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.3-r200.ebuild?rev=1.1&content-type=text/plain

Index: libsdl2-2.0.3-r200.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.3-r200.ebuild,v 1.1 
2014/07/27 12:51:39 hasufell Exp $

# TODO: convert FusionSound #484250

EAPI=5
inherit autotools flag-o-matic toolchain-funcs eutils multilib-minimal

MY_P=SDL2-${PV}
DESCRIPTION="Simple Direct Media Layer"
HOMEPAGE="http://www.libsdl.org";
SRC_URI="http://www.libsdl.org/release/${MY_P}.tar.gz";

LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE="3dnow alsa altivec custom-cflags dbus fusionsound gles haptic +joystick 
mmx nas opengl oss pulseaudio +sound sse sse2 static-libs +threads tslib udev 
+video wayland X xinerama xscreensaver"
REQUIRED_USE="
alsa? ( sound )
fusionsound? ( sound )
gles? ( video )
nas? ( sound )
opengl? ( video )
pulseaudio? ( sound )
xinerama? ( X )
xscreensaver? ( X )"

RDEPEND="
alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
fusionsound? ( || ( >=media-libs/FusionSound-1.1.1 
>=dev-libs/DirectFB-1.7.1[fusionsound] ) )
gles? ( >=media-libs/mesa-9.1.6[${MULTILIB_USEDEP},gles2] )
nas? ( >=media-libs/nas-1.9.4[${MULTILIB_USEDEP}] )
opengl? (
>=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
>=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
)
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
tslib? ( >=x11-libs/tslib-1.0-r3[${MULTILIB_USEDEP}] )
udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] )
wayland? (
>=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}]
>=media-libs/mesa-9.1.6[${MULTILIB_USEDEP},wayland]
>=x11-libs/libxkbcommon-0.2.0[${MULTILIB_USEDEP}]
)
X? (
>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
>=x11-libs/libXcursor-1.1.14[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
>=x11-libs/libXi-1.7.2[${MULTILIB_USEDEP}]
>=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}]
>=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]
>=x11-libs/libXxf86vm-1.1.3[${MULTILIB_USEDEP}]
xinerama? ( >=x11-libs/libXinerama-1.1.3[${MULTILIB_USEDEP}] )
xscreensaver? ( 
>=x11-libs/libXScrnSaver-1.2.2-r1[${MULTILIB_USEDEP}] )
)"
DEPEND="${RDEPEND}
X? (
>=x11-proto/xextproto-7.2.1-r1[${MULTILIB_USEDEP}]
>=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}]
)
virtual/pkgconfig"

S=${WORKDIR}/${MY_P}

src_prepare() {
# https://bugzilla.libsdl.org/show_bug.cgi?id=1431
epatch "${FILESDIR}"/${P}-static-libs.patch \
"

[gentoo-commits] gentoo-x86 commit in sys-apps/install-xattr: install-xattr-0.3.ebuild ChangeLog

2014-07-27 Thread Anthony G. Basile (blueness)
blueness14/07/27 12:47:52

  Modified: install-xattr-0.3.ebuild ChangeLog
  Log:
  Stable on arm, ppc and ppc64, bug #511984
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  sys-apps/install-xattr/install-xattr-0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild?r1=1.4&r2=1.5

Index: install-xattr-0.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- install-xattr-0.3.ebuild24 Jul 2014 16:16:07 -  1.4
+++ install-xattr-0.3.ebuild27 Jul 2014 12:47:51 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild,v 1.4 
2014/07/24 16:16:07 klausman Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/install-xattr/install-xattr-0.3.ebuild,v 1.5 
2014/07/27 12:47:51 blueness Exp $
 
 EAPI=5
 DESCRIPTION="Wrapper to coreutil's install to preserve Filesystem Extended 
Attributes."
@@ -14,7 +14,7 @@
inherit git-2
 else
SRC_URI="http://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2";
-   KEYWORDS="alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86"
+   KEYWORDS="alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 
~sparc ~x86"
S=${WORKDIR}/${PN}
 fi
 



1.18 sys-apps/install-xattr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/ChangeLog?rev=1.18&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/ChangeLog?rev=1.18&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   24 Jul 2014 16:16:07 -  1.17
+++ ChangeLog   27 Jul 2014 12:47:51 -  1.18
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/install-xattr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/ChangeLog,v 1.17 
2014/07/24 16:16:07 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/ChangeLog,v 1.18 
2014/07/27 12:47:51 blueness Exp $
+
+  27 Jul 2014; Anthony G. Basile  
install-xattr-0.3.ebuild:
+  Stable on arm, ppc and ppc64, bug #511984
 
   24 Jul 2014; Tobias Klausmann  install-xattr-0.3.ebuild:
   Stable on alpha, bug #511984






[gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: webkit-gtk-2.4.4.ebuild ChangeLog

2014-07-27 Thread Pacho Ramos (pacho)
pacho   14/07/27 12:31:02

  Modified: webkit-gtk-2.4.4.ebuild ChangeLog
  Log:
  Fix building on ppc (from OpenBSD, only needed on slot 3), bug #518288 by ago
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.5  net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild?r1=1.4&r2=1.5

Index: webkit-gtk-2.4.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- webkit-gtk-2.4.4.ebuild 23 Jul 2014 16:41:19 -  1.4
+++ webkit-gtk-2.4.4.ebuild 27 Jul 2014 12:31:02 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild,v 1.4 
2014/07/23 16:41:19 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild,v 1.5 
2014/07/27 12:31:02 pacho Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -181,6 +181,10 @@
# https://bugs.webkit.org/show_bug.cgi?id=129542
epatch "${FILESDIR}"/${PN}-2.4.1-ia64-malloc.patch
 
+   # Fix building on ppc (from OpenBSD, only needed on slot 3)
+   # https://bugs.webkit.org/show_bug.cgi?id=130837
+   epatch "${FILESDIR}"/${PN}-2.4.4-atomic-ppc.patch
+
AT_M4DIR=Source/autotools eautoreconf
 
gnome2_src_prepare



1.272net-libs/webkit-gtk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.272&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.272&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?r1=1.271&r2=1.272

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.271
retrieving revision 1.272
diff -u -r1.271 -r1.272
--- ChangeLog   23 Jul 2014 16:41:19 -  1.271
+++ ChangeLog   27 Jul 2014 12:31:02 -  1.272
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.271 
2014/07/23 16:41:19 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.272 
2014/07/27 12:31:02 pacho Exp $
+
+  27 Jul 2014; Pacho Ramos 
+  +files/webkit-gtk-2.4.4-atomic-ppc.patch, webkit-gtk-2.4.4.ebuild:
+  Fix building on ppc (from OpenBSD, only needed on slot 3), bug #518288 by ago
 
   23 Jul 2014; Pacho Ramos  -webkit-gtk-2.4.3-r200.ebuild,
   -webkit-gtk-2.4.3.ebuild, webkit-gtk-2.4.4-r200.ebuild,






[gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk/files: webkit-gtk-2.4.4-atomic-ppc.patch

2014-07-27 Thread Pacho Ramos (pacho)
pacho   14/07/27 12:31:03

  Added:webkit-gtk-2.4.4-atomic-ppc.patch
  Log:
  Fix building on ppc (from OpenBSD, only needed on slot 3), bug #518288 by ago
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.1  net-libs/webkit-gtk/files/webkit-gtk-2.4.4-atomic-ppc.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/files/webkit-gtk-2.4.4-atomic-ppc.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/files/webkit-gtk-2.4.4-atomic-ppc.patch?rev=1.1&content-type=text/plain

Index: webkit-gtk-2.4.4-atomic-ppc.patch
===
$OpenBSD: patch-Source_WebKit2_Platform_IPC_Connection_h,v 1.2 2014/07/14 
21:13:31 ajacoutot Exp $
https://bugs.webkit.org/show_bug.cgi?id=130837
--- Source/WebKit2/Platform/IPC/Connection.h.orig   Fri Jul  4 11:06:55 2014
+++ Source/WebKit2/Platform/IPC/Connection.hMon Jul 14 19:31:35 2014
@@ -216,7 +216,11 @@ class Connection : public ThreadSafeRefCounted m_syncRequestID;
+#endif
 
 bool 
m_onlySendMessagesAsDispatchWhenWaitingForSyncReplyWhenProcessingSuchAMessage;
 bool m_shouldExitOnSyncMessageSendFailure;
$OpenBSD: patch-Source_WebKit2_UIProcess_StatisticsRequest_cpp,v 1.3 2014/03/27 
22:03:48 landry Exp $
https://bugs.webkit.org/show_bug.cgi?id=130837
--- Source/WebKit2/UIProcess/StatisticsRequest.cpp.orig Thu Mar 27 21:13:49 2014
+++ Source/WebKit2/UIProcess/StatisticsRequest.cpp  Thu Mar 27 21:14:23 2014
@@ -44,7 +44,11 @@ StatisticsRequest::~StatisticsRequest()
 
 uint64_t StatisticsRequest::addOutstandingRequest()
 {
+#if CPU(PPC)
+static int64_t uniqueRequestID;
+#else
 static std::atomic uniqueRequestID;
+#endif
 
 uint64_t requestID = ++uniqueRequestID;
 m_outstandingRequests.add(requestID);






[gentoo-commits] gentoo-x86 commit in app-emulation/aranym: aranym-0.9.14.ebuild ChangeLog

2014-07-27 Thread Mikle Kolyada (zlogene)
zlogene 14/07/27 12:27:15

  Modified: aranym-0.9.14.ebuild ChangeLog
  Log:
  Mark x86 stable
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.5  app-emulation/aranym/aranym-0.9.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/aranym-0.9.14.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/aranym-0.9.14.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/aranym-0.9.14.ebuild?r1=1.4&r2=1.5

Index: aranym-0.9.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/aranym/aranym-0.9.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- aranym-0.9.14.ebuild5 Jul 2014 13:50:27 -   1.4
+++ aranym-0.9.14.ebuild27 Jul 2014 12:27:15 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/aranym-0.9.14.ebuild,v 
1.4 2014/07/05 13:50:27 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/aranym-0.9.14.ebuild,v 
1.5 2014/07/27 12:27:15 zlogene Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="+fullmmu +lilo opengl usbhost X"
 
 RDEPEND="games-emulation/emutos



1.26 app-emulation/aranym/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/ChangeLog?rev=1.26&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/ChangeLog?rev=1.26&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   5 Jul 2014 13:50:27 -   1.25
+++ ChangeLog   27 Jul 2014 12:27:15 -  1.26
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/aranym
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v 1.25 
2014/07/05 13:50:27 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v 1.26 
2014/07/27 12:27:15 zlogene Exp $
+
+  27 Jul 2014; Mikle Kolyada  aranym-0.9.14.ebuild:
+  Mark x86 stable
 
   05 Jul 2014; Mikle Kolyada  aranym-0.9.14.ebuild:
   Mark amd64 stable






[gentoo-commits] proj/kde:master commit in: dev-util/cmake/files/, dev-util/cmake/

2014-07-27 Thread Johannes Huber
commit: 3b0721973def80758010c73f486239fe16eded80
Author: Johannes Huber  gentoo  org>
AuthorDate: Sun Jul 27 10:23:55 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sun Jul 27 10:23:55 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3b072197

[dev-util/cmake] Moved to tree

Package-Manager: portage-2.2.10

---
 dev-util/cmake/cmake-3.0.0.ebuild  | 183 -
 dev-util/cmake/files/50cmake-gentoo.el |   4 -
 .../files/cmake-2.6.3-no-duplicates-in-rpath.patch |  19 ---
 .../cmake/files/cmake-2.8.10-darwin-bundle.patch   |  23 ---
 .../cmake/files/cmake-2.8.10-darwin-isysroot.patch |  50 --
 dev-util/cmake/files/cmake-2.8.10-libform.patch|  51 --
 .../files/cmake-2.8.10.2-FindPythonInterp.patch|  22 ---
 .../files/cmake-2.8.10.2-FindPythonLibs.patch  |  24 ---
 .../cmake/files/cmake-2.8.12.1-FindFreetype.patch  |  43 -
 .../files/cmake-2.8.12.1-FindImageMagick.patch |  23 ---
 .../cmake/files/cmake-2.8.8-FindPkgConfig.patch|  18 --
 dev-util/cmake/files/cmake-3.0.0-FindBLAS.patch|  43 -
 .../cmake/files/cmake-3.0.0-FindBoost-python.patch |  93 ---
 dev-util/cmake/files/cmake-3.0.0-FindLAPACK.patch  |  44 -
 dev-util/cmake/files/cmake-3.0.0-prefix-dirs.patch | 142 
 dev-util/cmake/files/cmake.vim |   3 -
 dev-util/cmake/metadata.xml|   5 -
 17 files changed, 790 deletions(-)

diff --git a/dev-util/cmake/cmake-3.0.0.ebuild 
b/dev-util/cmake/cmake-3.0.0.ebuild
deleted file mode 100644
index 63b4bf6..000
--- a/dev-util/cmake/cmake-3.0.0.ebuild
+++ /dev/null
@@ -1,183 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-CMAKE_REMOVE_MODULES="no"
-inherit bash-completion-r1 elisp-common toolchain-funcs eutils versionator 
cmake-utils virtualx
-
-DESCRIPTION="Cross platform Make"
-HOMEPAGE="http://www.cmake.org/";
-SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 
1-2)/${P}.tar.gz"
-
-LICENSE="CMake"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="emacs ncurses qt4 qt5"
-
-REQUIRED_USE="?? ( qt4 qt5 )"
-
-DEPEND="
-   >=app-arch/libarchive-2.8.0:=
-   >=dev-libs/expat-2.0.1
-   >=net-misc/curl-7.20.0-r1[ssl]
-   sys-libs/zlib
-   virtual/pkgconfig
-   emacs? ( virtual/emacs )
-   ncurses? ( sys-libs/ncurses )
-   qt4? (
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   )
-"
-RDEPEND="${DEPEND}"
-
-SITEFILE="50${PN}-gentoo.el"
-
-CMAKE_BINARY="${S}/Bootstrap.cmk/cmake"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.6.3-no-duplicates-in-rpath.patch
-   "${FILESDIR}"/${PN}-2.8.8-FindPkgConfig.patch
-   "${FILESDIR}"/${PN}-2.8.10-darwin-bundle.patch
-   "${FILESDIR}"/${PN}-2.8.10-darwin-isysroot.patch
-   "${FILESDIR}"/${PN}-2.8.10-libform.patch
-   "${FILESDIR}"/${PN}-2.8.10.2-FindPythonInterp.patch
-   "${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch
-   "${FILESDIR}"/${PN}-2.8.12.1-FindImageMagick.patch
-   "${FILESDIR}"/${PN}-3.0.0-FindBLAS.patch
-   "${FILESDIR}"/${PN}-3.0.0-FindLAPACK.patch
-   "${FILESDIR}"/${PN}-3.0.0-FindBoost-python.patch
-   "${FILESDIR}"/${PN}-3.0.0-prefix-dirs.patch
-)
-
-cmake_src_bootstrap() {
-   # Cleanup args to extract only JOBS.
-   # Because bootstrap does not know anything else.
-   echo ${MAKEOPTS} | egrep -o 
'(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' > /dev/null
-   if [ $? -eq 0 ]; then
-   par_arg=$(echo ${MAKEOPTS} | egrep -o 
'(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' | tail -n1 | egrep -o 
'[[:digit:]]+')
-   par_arg="--parallel=${par_arg}"
-   else
-   par_arg="--parallel=1"
-   fi
-
-   # execinfo.h on Solaris isn't quite what it is on Darwin
-   if [[ ${CHOST} == *-solaris* ]] ; then
-   sed -i -e 's/execinfo\.h/blablabla.h/' 
Source/kwsys/CMakeLists.txt || die
-   fi
-
-   tc-export CC CXX LD
-
-   # bootstrap script isn't exactly /bin/sh compatible
-   ${CONFIG_SHELL:-sh} ./bootstrap \
-   --prefix="${T}/cmakestrap/" \
-   ${par_arg} \
-   || die "Bootstrap failed"
-}
-
-cmake_src_test() {
-   # fix OutDir and SelectLibraryConfigurations tests
-   # these are altered thanks to our eclass
-   sed -i -e 's:#IGNORE ::g' \
-   
"${S}"/Tests/{OutDir,CMakeOnly/SelectLibraryConfigurations}/CMakeLists.txt \
-   || die
-
-

[gentoo-commits] gentoo-x86 commit in net-misc/bfgminer: metadata.xml bfgminer-4.5.0.ebuild bfgminer-3.10.6.ebuild ChangeLog

2014-07-27 Thread Anthony G. Basile (blueness)
blueness14/07/27 12:12:59

  Modified: metadata.xml ChangeLog
  Added:bfgminer-4.5.0.ebuild bfgminer-3.10.6.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.21 net-misc/bfgminer/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/metadata.xml?rev=1.21&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/metadata.xml?rev=1.21&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/metadata.xml?r1=1.20&r2=1.21

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/bfgminer/metadata.xml,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- metadata.xml22 Jul 2014 15:28:06 -  1.20
+++ metadata.xml27 Jul 2014 12:12:59 -  1.21
@@ -45,6 +45,7 @@
Enable support for CPU SSE2 4way mining 
algorithm
Enable support for CPU SSE4 mining 
algorithm
Enable support for mining with Twinfury 
USB sticks
+   Enable broader udev rules that 
may match non-mining devices
Enable support for mining with X6500 
FPGAs
Enable support for mining with ZeusMiner 
units
Enable support for mining with Ztex 
FPGAs



1.67 net-misc/bfgminer/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/ChangeLog?rev=1.67&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/ChangeLog?rev=1.67&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/ChangeLog?r1=1.66&r2=1.67

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/bfgminer/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog   23 Jul 2014 16:54:24 -  1.66
+++ ChangeLog   27 Jul 2014 12:12:59 -  1.67
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/bfgminer
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/ChangeLog,v 1.66 
2014/07/23 16:54:24 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/ChangeLog,v 1.67 
2014/07/27 12:12:59 blueness Exp $
+
+*bfgminer-3.10.6 (27 Jul 2014)
+*bfgminer-4.5.0 (27 Jul 2014)
+
+  27 Jul 2014; Anthony G. Basile  +bfgminer-3.10.6.ebuild,
+  +bfgminer-4.5.0.ebuild, metadata.xml:
+  Version bump
 
   23 Jul 2014; Chema Alonso  bfgminer-3.10.5.ebuild:
   Stable for amd64 wrt bug #516646



1.1  net-misc/bfgminer/bfgminer-4.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-4.5.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-4.5.0.ebuild?rev=1.1&content-type=text/plain

Index: bfgminer-4.5.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-4.5.0.ebuild,v 
1.1 2014/07/27 12:12:59 blueness Exp $

EAPI=5

inherit eutils

DESCRIPTION="Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C"
HOMEPAGE="https://bitcointalk.org/?topic=168174";
SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.txz -> 
${P}.tar.xz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"

# TODO: knc (needs i2c-tools header)
IUSE="adl antminer avalon bfx bifury bitforce bfsb bigpic bitfury cpumining 
drillbit dualminer examples gridseed hardened hashbuster hashbuster2 hashfast 
icarus jingtian klondike +libusb littlefury lm_sensors metabank modminer 
nanofury ncurses opencl proxy proxy_getwork proxy_stratum rockminer screen 
scrypt twinfury +udev udev-broad-rules unicode x6500 zeusminer ztex"
REQUIRED_USE='
|| ( antminer avalon bfsb bfx bifury bigpic bitforce bitfury cpumining 
drillbit dualminer gridseed hashbuster hashbuster2 hashfast icarus klondike 
littlefury metabank modminer nanofury opencl proxy twinfury x6500 ztex )
adl? ( opencl )
bfsb? ( bitfury )
bfx? ( bitfury libusb )
bigpic? ( bitfury )
drillbit? ( bitfury )
dualminer? ( icarus )
gridseed? ( scrypt )
hashbuster? ( bitfury )
hashbuster2? ( bitfury libusb )
klondike? ( libusb )
littlefury? ( bitfury )
lm_sensors? ( opencl )
metabank? ( bitfury )
nanofury? ( bitfury )
scrypt? ( || ( cpumining dualminer gridseed opencl zeusminer ) )
twinfury? ( bitfury )
unicode? ( ncurses )
proxy? ( || ( proxy_getwork proxy_

[gentoo-commits] gentoo-x86 commit in dev-util/cmake/files: cmake-3.0.0-FindBoost-python.patch cmake-3.0.0-FindBLAS.patch cmake-3.0.0-prefix-dirs.patch cmake-3.0.0-FindLAPACK.patch

2014-07-27 Thread Johannes Huber (johu)
johu14/07/27 11:55:54

  Added:cmake-3.0.0-FindBoost-python.patch
cmake-3.0.0-FindBLAS.patch
cmake-3.0.0-prefix-dirs.patch
cmake-3.0.0-FindLAPACK.patch
  Log:
  Version bump by Michael Palimaka , bug #513682.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F3CFD2BD)

Revision  ChangesPath
1.1  dev-util/cmake/files/cmake-3.0.0-FindBoost-python.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/files/cmake-3.0.0-FindBoost-python.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/files/cmake-3.0.0-FindBoost-python.patch?rev=1.1&content-type=text/plain

Index: cmake-3.0.0-FindBoost-python.patch
===
>From 934ec9add33d413e4d5c9cec1cb3ebb5cbfd81f4 Mon Sep 17 00:00:00 2001
From: Michael Palimaka 
Date: Thu, 19 Jun 2014 00:17:48 +1000
Subject: [PATCH] Fix detection of PYTHON_ABI-versioned Boost Python libraries
 wrt bug #400969.

---
 Modules/FindBoost.cmake | 41 +
 1 file changed, 41 insertions(+)

diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
index dfd4460..70bfb4f 100644
--- a/Modules/FindBoost.cmake
+++ b/Modules/FindBoost.cmake
@@ -952,6 +952,15 @@ foreach(COMPONENT ${Boost_FIND_COMPONENTS})
   set( _boost_docstring_release "Boost ${COMPONENT} library (release)")
   set( _boost_docstring_debug   "Boost ${COMPONENT} library (debug)")
 
+  if(${COMPONENT} STREQUAL "python" OR ${COMPONENT} STREQUAL "mpi_python")
+# Get version of Python.
+if (NOT PYTHON_EXECUTABLE)
+  #if a certain version of python was detected by cmake before use that one
+set(PYTHON_EXECUTABLE "python")
+  endif (NOT PYTHON_EXECUTABLE)
+execute_process(COMMAND "${PYTHON_EXECUTABLE}" -c "import sys; 
sys.stdout.write('.'.join(str(x) for x in sys.version_info[:2]))" 
OUTPUT_VARIABLE _python_version)
+  endif()
+
   # Compute component-specific hints.
   set(_Boost_FIND_LIBRARY_HINTS_FOR_COMPONENT "")
   if(${COMPONENT} STREQUAL "mpi" OR ${COMPONENT} STREQUAL "mpi_python" OR
@@ -984,6 +993,15 @@ foreach(COMPONENT ${Boost_FIND_COMPONENTS})
 
${Boost_LIB_PREFIX}${Boost_NAMESPACE}_${COMPONENT}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}-${Boost_LIB_VERSION}
 
${Boost_LIB_PREFIX}${Boost_NAMESPACE}_${COMPONENT}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}
 ${Boost_LIB_PREFIX}${Boost_NAMESPACE}_${COMPONENT} )
+if(${COMPONENT} STREQUAL "python" OR ${COMPONENT} STREQUAL "mpi_python")
+  list(APPEND _boost_RELEASE_NAMES
+
${Boost_LIB_PREFIX}boost_${COMPONENT}-${_python_version}${_boost_COMPILER}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}-${Boost_LIB_VERSION}
+
${Boost_LIB_PREFIX}boost_${COMPONENT}-${_python_version}${_boost_COMPILER}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}
+
${Boost_LIB_PREFIX}boost_${COMPONENT}-${_python_version}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}-${Boost_LIB_VERSION}
+
${Boost_LIB_PREFIX}boost_${COMPONENT}-${_python_version}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}
+${Boost_LIB_PREFIX}boost_${COMPONENT}-${_python_version} )
+endif()
+
   if(_boost_STATIC_RUNTIME_WORKAROUND)
 set(_boost_RELEASE_STATIC_ABI_TAG "-s${_boost_RELEASE_ABI_TAG}")
 list(APPEND _boost_RELEASE_NAMES
@@ -991,6 +1009,13 @@ foreach(COMPONENT ${Boost_FIND_COMPONENTS})
   
${Boost_LIB_PREFIX}${Boost_NAMESPACE}_${COMPONENT}${_boost_COMPILER}${_boost_MULTITHREADED}${_boost_RELEASE_STATIC_ABI_TAG}
   
${Boost_LIB_PREFIX}${Boost_NAMESPACE}_${COMPONENT}${_boost_MULTITHREADED}${_boost_RELEASE_STATIC_ABI_TAG}-${Boost_LIB_VERSION}
   
${Boost_LIB_PREFIX}${Boost_NAMESPACE}_${COMPONENT}${_boost_MULTITHREADED}${_boost_RELEASE_STATIC_ABI_TAG}
 )
+  if(${COMPONENT} STREQUAL "python" OR ${COMPONENT} STREQUAL "mpi_python")
+list(APPEND _boost_RELEASE_NAMES
+  
${Boost_LIB_PREFIX}boost_${COMPONENT}-${_python_version}${_boost_COMPILER}${_boost_MULTITHREADED}${_boost_RELEASE_STATIC_ABI_TAG}-${Boost_LIB_VERSION}
+  
${Boost_LIB_PREFIX}boost_${COMPONENT}-${_python_version}${_boost_COMPILER}${_boost_MULTITHREADED}${_boost_RELEASE_STATIC_ABI_TAG}
+  
${Boost_LIB_PREFIX}boost_${COMPONENT}-${_python_version}${_boost_MULTITHREADED}${_boost_RELEASE_STATIC_ABI_TAG}-${Boost_LIB_VERSION}
+  
${Boost_LIB_PREFIX}boost_${COMPONENT}-${_python_version}${_boost_MULTITHREADED}${_boost_RELEASE_STATIC_ABI_TAG}
 )
+  endif()
   endif()
   if(Boost_THREADAPI AND ${COMPONENT} STREQUAL "thread")
  _Boost_PREPEND_LIST_WITH_THREADAPI(_boost_RELEASE_NAMES 
${_boost_RELEASE_NAMES})
@@ -1020,6 +1045,15 @@ foreach(COMPONENT ${Boost_FIND_COMPONENTS})
 
${Boost_LIB_PREFIX}${Boost_NAMESPACE}_${COMPONENT}${_boost_MULTITHREADED}${_boost_DEBUG_ABI_TAG}
 ${Boost_LIB_PREFIX}${Boo

[gentoo-commits] gentoo-x86 commit in dev-util/cmake: cmake-3.0.0.ebuild ChangeLog

2014-07-27 Thread Johannes Huber (johu)
johu14/07/27 11:55:54

  Modified: ChangeLog
  Added:cmake-3.0.0.ebuild
  Log:
  Version bump by Michael Palimaka , bug #513682.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F3CFD2BD)

Revision  ChangesPath
1.291dev-util/cmake/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.291&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.291&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.290&r2=1.291

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -r1.290 -r1.291
--- ChangeLog   27 Jul 2014 11:38:49 -  1.290
+++ ChangeLog   27 Jul 2014 11:55:54 -  1.291
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/cmake
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.290 2014/07/27 
11:38:49 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.291 2014/07/27 
11:55:54 johu Exp $
+
+*cmake-3.0.0 (27 Jul 2014)
+
+  27 Jul 2014; Johannes Huber  +cmake-3.0.0.ebuild,
+  +files/cmake-3.0.0-FindBLAS.patch, +files/cmake-3.0.0-FindBoost-python.patch,
+  +files/cmake-3.0.0-FindLAPACK.patch, +files/cmake-3.0.0-prefix-dirs.patch:
+  Version bump by Michael Palimaka , bug #513682.
 
   26 Jul 2014; Pawel Hajdan jr 
   cmake-2.8.12.2-r1.ebuild:



1.1  dev-util/cmake/cmake-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-3.0.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-3.0.0.ebuild?rev=1.1&content-type=text/plain

Index: cmake-3.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-3.0.0.ebuild,v 1.1 
2014/07/27 11:55:54 johu Exp $

EAPI=5

CMAKE_REMOVE_MODULES="no"
inherit bash-completion-r1 elisp-common toolchain-funcs eutils versionator 
cmake-utils virtualx

DESCRIPTION="Cross platform Make"
HOMEPAGE="http://www.cmake.org/";
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 
1-2)/${P}.tar.gz"

LICENSE="CMake"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="emacs ncurses qt4 qt5"

REQUIRED_USE="?? ( qt4 qt5 )"

DEPEND="
>=app-arch/libarchive-2.8.0:=
>=dev-libs/expat-2.0.1
>=net-misc/curl-7.20.0-r1[ssl]
sys-libs/zlib
virtual/pkgconfig
emacs? ( virtual/emacs )
ncurses? ( sys-libs/ncurses )
qt4? (
dev-qt/qtcore:4
dev-qt/qtgui:4
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
)
"
RDEPEND="${DEPEND}"

SITEFILE="50${PN}-gentoo.el"

CMAKE_BINARY="${S}/Bootstrap.cmk/cmake"

PATCHES=(
"${FILESDIR}"/${PN}-2.6.3-no-duplicates-in-rpath.patch
"${FILESDIR}"/${PN}-2.8.8-FindPkgConfig.patch
"${FILESDIR}"/${PN}-2.8.10-darwin-bundle.patch
"${FILESDIR}"/${PN}-2.8.10-darwin-isysroot.patch
"${FILESDIR}"/${PN}-2.8.10-libform.patch
"${FILESDIR}"/${PN}-2.8.10.2-FindPythonInterp.patch
"${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch
"${FILESDIR}"/${PN}-2.8.12.1-FindImageMagick.patch
"${FILESDIR}"/${PN}-3.0.0-FindBLAS.patch
"${FILESDIR}"/${PN}-3.0.0-FindLAPACK.patch
"${FILESDIR}"/${PN}-3.0.0-FindBoost-python.patch
"${FILESDIR}"/${PN}-3.0.0-prefix-dirs.patch
)

cmake_src_bootstrap() {
# Cleanup args to extract only JOBS.
# Because bootstrap does not know anything else.
echo ${MAKEOPTS} | egrep -o 
'(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' > /dev/null
if [ $? -eq 0 ]; then
par_arg=$(echo ${MAKEOPTS} | egrep -o 
'(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' | tail -n1 | egrep -o 
'[[:digit:]]+')
par_arg="--parallel=${par_arg}"
else
par_arg="--parallel=1"
fi

# execinfo.h on Solaris isn't quite what it is on Darwin
if [[ ${CHOST} == *-solaris* ]] ; then
sed -i -e 's/execinfo\.h/blablabla.h/' 
Source/kwsys/CMakeLists.txt || die
fi

tc-export CC CXX LD

# bootstrap script isn't exactly /bin/sh compatible
${CONFIG_SHELL:-sh} ./bootstrap \
-

  1   2   3   >