[gentoo-commits] gentoo-x86 commit in dev-python/pypy-bin: pypy-bin-2.2.1-r1.ebuild ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 06:10:04

  Modified: pypy-bin-2.2.1-r1.ebuild ChangeLog
  Log:
  Add USE=tk for tkinter modules. Update the list of cffi-compiled modules. Bug 
#509794.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  dev-python/pypy-bin/pypy-bin-2.2.1-r1.ebuild

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

Index: pypy-bin-2.2.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/pypy-bin-2.2.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pypy-bin-2.2.1-r1.ebuild3 May 2014 18:00:20 -   1.1
+++ pypy-bin-2.2.1-r1.ebuild9 May 2014 06:10:04 -   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/dev-python/pypy-bin/pypy-bin-2.2.1-r1.ebuild,v 1.1 
2014/05/03 18:00:20 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/pypy-bin/pypy-bin-2.2.1-r1.ebuild,v 1.2 
2014/05/09 06:10:04 mgorny Exp $
 
 EAPI=5
 
@@ -56,7 +56,7 @@
 LICENSE=MIT
 SLOT=0/$(get_version_component_range 1-2 ${PV})
 KEYWORDS=~amd64 ~x86
-IUSE=doc +jit shadowstack sqlite sse2 test
+IUSE=doc +jit shadowstack sqlite sse2 test tk
 
 # yep, world would be easier if people started filling subslots...
 RDEPEND=
@@ -72,6 +72,7 @@
( sys-libs/zlib-1.2.9:0
=sys-libs/zlib-1.2.7:0 )
sqlite? ( dev-db/sqlite:3 )
+   tk? ( dev-lang/tk:0 )
!dev-python/pypy:0
 DEPEND=app-arch/xz-utils
doc? ( dev-python/sphinx )
@@ -121,8 +122,14 @@
dodoc README.rst
 
if ! use sqlite; then
-   rm -r ${ED%/}${INSDESTTREE}/lib-python/*2.7/sqlite3 || die
-   rm ${ED%/}${INSDESTTREE}/lib_pypy/_sqlite3.py || die
+   rm -r ${ED%/}${INSDESTTREE}/lib-python/*2.7/sqlite3 \
+   ${ED%/}${INSDESTTREE}/lib_pypy/_sqlite3.py \
+   
${ED%/}${INSDESTTREE}/lib-python/*2.7/test/test_sqlite.py || die
+   fi
+   if ! use tk; then
+   rm -r ${ED%/}${INSDESTTREE}/lib-python/*2.7/{idlelib,lib-tk} \
+   ${ED%/}${INSDESTTREE}/lib_pypy/_tkinter \
+   
${ED%/}${INSDESTTREE}/lib-python/*2.7/test/test_{tcl,tk,ttk*}.py || die
fi
 
# Install docs
@@ -146,9 +153,13 @@
|| die Generation of Grammar and PatternGrammar pickles failed
 
# Generate cffi cache
-   ${PYTHON} -c import _curses || die Failed to import _curses
+   ${PYTHON} -c import _curses || die Failed to import _curses (cffi)
+   ${PYTHON} -c import syslog || die Failed to import syslog (cffi)
if use sqlite; then
-   ${PYTHON} -c import _sqlite3 || die Failed to import 
_sqlite3
+   ${PYTHON} -c import _sqlite3 || die Failed to import 
_sqlite3 (cffi)
+   fi
+   if use tk; then
+   ${PYTHON} -c import _tkinter || die Failed to import 
_tkinter (cffi)
fi
 
# compile the installed modules



1.17 dev-python/pypy-bin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy-bin/ChangeLog?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy-bin/ChangeLog?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy-bin/ChangeLog?r1=1.16r2=1.17

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   3 May 2014 18:00:20 -   1.16
+++ ChangeLog   9 May 2014 06:10:04 -   1.17
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/pypy-bin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/ChangeLog,v 1.16 
2014/05/03 18:00:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/ChangeLog,v 1.17 
2014/05/09 06:10:04 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org pypy-bin-2.2.1-r1.ebuild:
+  Add USE=tk for tkinter modules. Update the list of cffi-compiled modules. Bug
+  #509794.
 
 *pypy-bin-2.2.1-r1 (03 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-python/pypy: pypy-2.2.1.ebuild ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 06:12:21

  Modified: pypy-2.2.1.ebuild ChangeLog
  Log:
  Add USE=tk for tkinter modules. Update the list of cffi-compiled modules. Bug 
#509794.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  dev-python/pypy/pypy-2.2.1.ebuild

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

Index: pypy-2.2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pypy/pypy-2.2.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pypy-2.2.1.ebuild   11 Apr 2014 08:20:55 -  1.4
+++ pypy-2.2.1.ebuild   9 May 2014 06:12: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/dev-python/pypy/pypy-2.2.1.ebuild,v 1.4 
2014/04/11 08:20:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy/pypy-2.2.1.ebuild,v 1.5 
2014/05/09 06:12:21 mgorny Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 LICENSE=MIT
 SLOT=0/$(get_version_component_range 1-2 ${PV})
 KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
-IUSE=bzip2 doc +jit ncurses sandbox shadowstack sqlite sse2
+IUSE=bzip2 doc +jit ncurses sandbox shadowstack sqlite sse2 tk
 
 RDEPEND==sys-libs/zlib-1.1.3
virtual/libffi
@@ -25,6 +25,7 @@
bzip2? ( app-arch/bzip2 )
ncurses? ( sys-libs/ncurses )
sqlite? ( dev-db/sqlite:3 )
+   tk? ( dev-lang/tk:0 )
!dev-python/pypy-bin:0
 DEPEND=${RDEPEND}
doc? ( dev-python/sphinx )
@@ -127,8 +128,14 @@
dodoc README.rst
 
if ! use sqlite; then
-   rm -r ${ED%/}${INSDESTTREE}/lib-python/*2.7/sqlite3 || die
-   rm ${ED%/}${INSDESTTREE}/lib_pypy/_sqlite3.py || die
+   rm -r ${ED%/}${INSDESTTREE}/lib-python/*2.7/sqlite3 \
+   ${ED%/}${INSDESTTREE}/lib_pypy/_sqlite3.py \
+   
${ED%/}${INSDESTTREE}/lib-python/*2.7/test/test_sqlite.py || die
+   fi
+   if ! use tk; then
+   rm -r ${ED%/}${INSDESTTREE}/lib-python/*2.7/{idlelib,lib-tk} \
+   ${ED%/}${INSDESTTREE}/lib_pypy/_tkinter \
+   
${ED%/}${INSDESTTREE}/lib-python/*2.7/test/test_{tcl,tk,ttk*}.py || die
fi
 
# Install docs
@@ -152,9 +159,13 @@
|| die Generation of Grammar and PatternGrammar pickles failed
 
# Generate cffi cache
-   ${PYTHON} -c import _curses || die Failed to import _curses
+   ${PYTHON} -c import _curses || die Failed to import _curses (cffi)
+   ${PYTHON} -c import syslog || die Failed to import syslog (cffi)
if use sqlite; then
-   ${PYTHON} -c import _sqlite3 || die Failed to import 
_sqlite3
+   ${PYTHON} -c import _sqlite3 || die Failed to import 
_sqlite3 (cffi)
+   fi
+   if use tk; then
+   ${PYTHON} -c import _tkinter || die Failed to import 
_tkinter (cffi)
fi
 
# compile the installed modules



1.61 dev-python/pypy/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pypy/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog   11 Apr 2014 08:20:55 -  1.60
+++ ChangeLog   9 May 2014 06:12:21 -   1.61
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/pypy
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy/ChangeLog,v 1.60 2014/04/11 
08:20:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy/ChangeLog,v 1.61 2014/05/09 
06:12:21 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org pypy-2.2.1.ebuild:
+  Add USE=tk for tkinter modules. Update the list of cffi-compiled modules. Bug
+  #509794.
 
   11 Apr 2014; Michał Górny mgo...@gentoo.org pypy-2.0.2-r1.ebuild,
   pypy-2.2.1.ebuild:






[gentoo-commits] gentoo-x86 commit in virtual/pypy: pypy-2.2.1.ebuild ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 06:14:42

  Modified: pypy-2.2.1.ebuild ChangeLog
  Log:
  Add USE=tk for tkinter modules. Bug #509794.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.4  virtual/pypy/pypy-2.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/pypy/pypy-2.2.1.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/pypy/pypy-2.2.1.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/pypy/pypy-2.2.1.ebuild?r1=1.3r2=1.4

Index: pypy-2.2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/virtual/pypy/pypy-2.2.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pypy-2.2.1.ebuild   30 Mar 2014 21:00:58 -  1.3
+++ pypy-2.2.1.ebuild   9 May 2014 06:14:41 -   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/virtual/pypy/pypy-2.2.1.ebuild,v 1.3 
2014/03/30 21:00:58 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/pypy/pypy-2.2.1.ebuild,v 1.4 
2014/05/09 06:14:41 mgorny Exp $
 
 EAPI=5
 
@@ -13,10 +13,10 @@
 LICENSE=
 SLOT=0/$(get_version_component_range 1-2 ${PV})
 KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
-IUSE=bzip2 ncurses sqlite
+IUSE=bzip2 ncurses sqlite tk
 
 RDEPEND=
|| (
-   =dev-python/pypy-${PV}:${SLOT}[bzip2?,ncurses?,sqlite?,ssl(+)]
-   =dev-python/pypy-bin-${PV}:${SLOT}[sqlite?]
+   =dev-python/pypy-${PV}:${SLOT}[bzip2?,ncurses?,sqlite?,tk?]
+   =dev-python/pypy-bin-${PV}:${SLOT}[sqlite?,tk?]
)



1.8  virtual/pypy/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/pypy/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/pypy/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/pypy/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/pypy/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   30 Mar 2014 21:00:59 -  1.7
+++ ChangeLog   9 May 2014 06:14:41 -   1.8
@@ -1,6 +1,9 @@
 # ChangeLog for virtual/pypy
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/pypy/ChangeLog,v 1.7 2014/03/30 
21:00:59 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/pypy/ChangeLog,v 1.8 2014/05/09 
06:14:41 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org pypy-2.2.1.ebuild:
+  Add USE=tk for tkinter modules. Bug #509794.
 
 *pypy-2.0.2-r1 (30 Mar 2014)
 






[gentoo-commits] gentoo-x86 commit in app-editors/emacs: emacs-23.4-r10.ebuild ChangeLog emacs-24.3-r6.ebuild emacs-23.4-r9.ebuild emacs-24.3-r5.ebuild

2014-05-09 Thread Ulrich Mueller (ulm)
ulm 14/05/09 06:17:32

  Modified: ChangeLog
  Added:emacs-23.4-r10.ebuild emacs-24.3-r6.ebuild
  Removed:  emacs-23.4-r9.ebuild emacs-24.3-r5.ebuild
  Log:
  Use upstream patch for browse-url, CVE-2014-3423, bug 509830.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.616app-editors/emacs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.616view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.616content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.615r2=1.616

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.615
retrieving revision 1.616
diff -u -r1.615 -r1.616
--- ChangeLog   8 May 2014 18:21:03 -   1.615
+++ ChangeLog   9 May 2014 06:17:32 -   1.616
@@ -1,6 +1,13 @@
 # ChangeLog for app-editors/emacs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.615 
2014/05/08 18:21:03 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.616 
2014/05/09 06:17:32 ulm Exp $
+
+*emacs-24.3-r6 (09 May 2014)
+*emacs-23.4-r10 (09 May 2014)
+
+  09 May 2014; Ulrich Müller u...@gentoo.org -emacs-23.4-r9.ebuild,
+  +emacs-23.4-r10.ebuild, -emacs-24.3-r5.ebuild, +emacs-24.3-r6.ebuild:
+  Use upstream patch for browse-url, CVE-2014-3423, bug 509830.
 
 *emacs-24.3-r5 (08 May 2014)
 *emacs-23.4-r9 (08 May 2014)



1.1  app-editors/emacs/emacs-23.4-r10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs/emacs-23.4-r10.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs/emacs-23.4-r10.ebuild?rev=1.1content-type=text/plain

Index: emacs-23.4-r10.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-23.4-r10.ebuild,v 
1.1 2014/05/09 06:17:32 ulm Exp $

EAPI=5
WANT_AUTOMAKE=none

inherit autotools elisp-common eutils flag-o-matic multilib readme.gentoo

DESCRIPTION=The extensible, customizable, self-documenting real-time display 
editor
HOMEPAGE=http://www.gnu.org/software/emacs/;
SRC_URI=mirror://gnu/emacs/${P}.tar.bz2
http://dev.gentoo.org/~ulm/emacs/${P}-patches-12.tar.xz;

LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2
SLOT=23
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos
IUSE=alsa aqua athena dbus games gconf gif gpm gtk gzip-el hesiod jpeg 
kerberos livecd m17n-lib motif pax_kernel png sound source svg tiff 
toolkit-scroll-bars X Xaw3d xft +xpm
REQUIRED_USE=?? ( aqua X )

RDEPEND=sys-libs/ncurses
=app-admin/eselect-emacs-1.16
=app-emacs/emacs-common-gentoo-1.4-r1[games?,X?]
net-libs/liblockfile
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )
alsa? ( media-libs/alsa-lib )
gpm? ( sys-libs/gpm )
dbus? ( sys-apps/dbus )
X? (
x11-libs/libXmu
x11-libs/libXt
x11-misc/xbitmaps
gconf? ( =gnome-base/gconf-2.26.2 )
gif? ( media-libs/giflib )
jpeg? ( virtual/jpeg:0= )
png? ( =media-libs/libpng-1.4:0= )
svg? ( =gnome-base/librsvg-2.0 )
tiff? ( media-libs/tiff )
xpm? ( x11-libs/libXpm )
xft? (
media-libs/fontconfig
media-libs/freetype
x11-libs/libXft
m17n-lib? (
=dev-libs/libotf-0.9.4
=dev-libs/m17n-lib-1.5.1
)
)
gtk? ( x11-libs/gtk+:2 )
!gtk? (
motif? ( =x11-libs/motif-2.3:0 )
!motif? (
Xaw3d? ( x11-libs/libXaw3d )
!Xaw3d? ( athena? ( x11-libs/libXaw ) )
)
)
)

DEPEND=${RDEPEND}
alsa? ( virtual/pkgconfig )
dbus? ( virtual/pkgconfig )
X? ( virtual/pkgconfig )
gzip-el? ( app-arch/gzip )
pax_kernel? (
sys-apps/attr
sys-apps/paxctl
)

RDEPEND=${RDEPEND}
!app-editors/emacs-vcs-${PV}

EMACS_SUFFIX=${PN/emacs/emacs-${SLOT}}
SITEFILE=20${PN}-${SLOT}-gentoo.el
# FULL_VERSION 

[gentoo-commits] proj/emacs-tools:patchsets commit in: emacs/24.3/, emacs/23.4/

2014-05-09 Thread Ulrich Müller
commit: 07eb79ff7ef6b0637f89ed0cb9c69579e57878d1
Author: Ulrich Müller ulm AT gentoo DOT org
AuthorDate: Fri May  9 06:04:09 2014 +
Commit: Ulrich Müller ulm AT gentoo DOT org
CommitDate: Fri May  9 06:04:09 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=07eb79ff

Upstream patch for browse-url, bug 509830.

---
 emacs/23.4/18_all_browse-url-no-mosaic.patch | 124 ---
 emacs/23.4/18_all_browse-url-tmpfile.patch   |  59 +
 emacs/24.3/07_all_browse-url-no-mosaic.patch | 124 ---
 emacs/24.3/07_all_browse-url-tmpfile.patch   |  59 +
 4 files changed, 118 insertions(+), 248 deletions(-)

diff --git a/emacs/23.4/18_all_browse-url-no-mosaic.patch 
b/emacs/23.4/18_all_browse-url-no-mosaic.patch
deleted file mode 100644
index b6a8152..000
--- a/emacs/23.4/18_all_browse-url-no-mosaic.patch
+++ /dev/null
@@ -1,124 +0,0 @@
-Fix insecure use of temporary files.
-Gentoo patch: Remove obsolete browse-url-mosaic function completely.
-https://bugs.gentoo.org/509830
-CVE-2014-3423
-
 emacs-23.4-orig/lisp/net/browse-url.el
-+++ emacs-23.4/lisp/net/browse-url.el
-@@ -40,7 +40,6 @@
- ;; browse-url-galeon  Galeon  Don't know
- ;; browse-url-epiphanyEpiphanyDon't know
- ;; browse-url-netscapeNetscape1.1b1
--;; browse-url-mosaic  XMosaic/mMosaic = 2.4
- ;; browse-url-cci XMosaic 2.5
- ;; browse-url-w3  w3  0
- ;; browse-url-w3-gnudoit  w3 remotely
-@@ -82,11 +81,7 @@
- ;; include Chimera URL:ftp://ftp.cs.unlv.edu/pub/chimera and
- ;; URL:http://www.unlv.edu/chimera/, Arena
- ;; URL:ftp://ftp.yggdrasil.com/pub/dist/web/arena and Amaya
--;; URL:ftp://ftp.w3.org/pub/amaya.  mMosaic
--;; URL:ftp://ftp.enst.fr/pub/mbone/mMosaic/,
--;; URL:http://www.enst.fr/~dauphin/mMosaic/ (with development
--;; support for Java applets and multicast) can be used like Mosaic by
--;; setting `browse-url-mosaic-program' appropriately.
-+;; URL:ftp://ftp.w3.org/pub/amaya.
- 
- ;; I [Denis Howe, not Dave Love] recommend Nelson Minar
- ;; nel...@santafe.edu's excellent html-helper-mode.el for editing
-@@ -242,7 +237,6 @@
- (function-item :tag Galeon :value  browse-url-galeon)
- (function-item :tag Epiphany :value  browse-url-epiphany)
- (function-item :tag Netscape :value  browse-url-netscape)
--(function-item :tag Mosaic :value  browse-url-mosaic)
- (function-item :tag Mosaic using CCI :value  browse-url-cci)
- (function-item :tag Text browser in an xterm window
-:value browse-url-text-xterm)
-@@ -421,22 +415,6 @@
-   :type 'boolean
-   :group 'browse-url)
- 
--(defcustom browse-url-mosaic-program xmosaic
--  The name by which to invoke Mosaic (or mMosaic).
--  :type 'string
--  :version 20.3
--  :group 'browse-url)
--
--(defcustom browse-url-mosaic-arguments nil
--  A list of strings to pass to Mosaic as arguments.
--  :type '(repeat (string :tag Argument))
--  :group 'browse-url)
--
--(defcustom browse-url-mosaic-pidfile ~/.mosaicpid
--  The name of the pidfile created by Mosaic.
--  :type 'string
--  :group 'browse-url)
--
- (defcustom browse-url-filename-alist
-   `((^/\\(ftp@\\|anonymous@\\)?\\([^:]+\\):/* . ftp://\\2/;)
- ;; The above loses the username to avoid the browser prompting for
-@@ -895,7 +873,6 @@
- ((executable-find browse-url-galeon-program) 'browse-url-galeon)
- ((executable-find browse-url-kde-program) 'browse-url-kde)
- ((executable-find browse-url-netscape-program) 'browse-url-netscape)
--((executable-find browse-url-mosaic-program) 'browse-url-mosaic)
- ((executable-find browse-url-xterm-program) 'browse-url-text-xterm)
- ((locate-library w3) 'browse-url-w3)
- (t
-@@ -1212,56 +1189,6 @@
- '(--newwin))
- (list --raise url
- 
--;; --- Mosaic ---
--
--;;;###autoload
--(defun browse-url-mosaic (url optional new-window)
--  Ask the XMosaic WWW browser to load URL.
--
--Default to the URL around or before point.  The strings in variable
--`browse-url-mosaic-arguments' are also passed to Mosaic and the
--program is invoked according to the variable
--`browse-url-mosaic-program'.
--
--When called interactively, if variable `browse-url-new-window-flag' is
--non-nil, load the document in a new Mosaic window, otherwise use a
--random existing one.  A non-nil interactive prefix argument reverses
--the effect of `browse-url-new-window-flag'.
--
--When called non-interactively, optional second argument NEW-WINDOW is
--used instead of `browse-url-new-window-flag'.
--  (interactive (browse-url-interactive-arg Mosaic URL: ))
--  (let ((pidfile (expand-file-name browse-url-mosaic-pidfile))
--  pid)
--(if (file-readable-p pidfile)
--  (save-excursion
--(find-file pidfile)
--(goto-char (point-min))
--(setq 

[gentoo-commits] proj/emacs-tools: New tag: emacs-23.4-patches-12

2014-05-09 Thread Ulrich Müller
commit: 
Commit: Ulrich Müller ulm AT gentoo DOT org
CommitDate: Fri May 09 06:24:16 2014 +

New tag: emacs-23.4-patches-12




[gentoo-commits] gentoo-x86 commit in dev-ruby/eventmachine: ChangeLog eventmachine-1.0.3-r1.ebuild

2014-05-09 Thread Hans de Graaff (graaff)
graaff  14/05/09 06:26:56

  Modified: ChangeLog eventmachine-1.0.3-r1.ebuild
  Log:
  Add ruby21.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.25 dev-ruby/eventmachine/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/eventmachine/ChangeLog?rev=1.25view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/eventmachine/ChangeLog?rev=1.25content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/eventmachine/ChangeLog?r1=1.24r2=1.25

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/eventmachine/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   5 Apr 2014 14:48:25 -   1.24
+++ ChangeLog   9 May 2014 06:26:56 -   1.25
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/eventmachine
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/eventmachine/ChangeLog,v 1.24 
2014/04/05 14:48:25 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/eventmachine/ChangeLog,v 1.25 
2014/05/09 06:26:56 graaff Exp $
+
+  09 May 2014; Hans de Graaff gra...@gentoo.org eventmachine-1.0.3-r1.ebuild:
+  Add ruby21.
 
   05 Apr 2014; Manuel Rüger mr...@gentoo.org eventmachine-0.12.10-r2.ebuild,
   eventmachine-1.0.3-r1.ebuild:



1.4  dev-ruby/eventmachine/eventmachine-1.0.3-r1.ebuild

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

Index: eventmachine-1.0.3-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/eventmachine/eventmachine-1.0.3-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- eventmachine-1.0.3-r1.ebuild5 Apr 2014 14:48:25 -   1.3
+++ eventmachine-1.0.3-r1.ebuild9 May 2014 06:26:56 -   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/dev-ruby/eventmachine/eventmachine-1.0.3-r1.ebuild,v 
1.3 2014/04/05 14:48:25 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/eventmachine/eventmachine-1.0.3-r1.ebuild,v 
1.4 2014/05/09 06:26:56 graaff Exp $
 
 EAPI=5
 # jruby → has shims for Java handling but tests fail badly, remaining
 # stuck; avoid that for now.
-USE_RUBY=ruby19 ruby20
+USE_RUBY=ruby19 ruby20 ruby21
 
 RUBY_FAKEGEM_TASK_DOC=yard
 RUBY_FAKEGEM_DOCDIR=rdoc






[gentoo-commits] gentoo-x86 commit in dev-ruby/amqp: ChangeLog amqp-1.3.0.ebuild

2014-05-09 Thread Hans de Graaff (graaff)
graaff  14/05/09 06:31:23

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

Revision  ChangesPath
1.13 dev-ruby/amqp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/amqp/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   10 Mar 2014 15:51:04 -  1.12
+++ ChangeLog   9 May 2014 06:31:23 -   1.13
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/amqp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amqp/ChangeLog,v 1.12 2014/03/10 
15:51:04 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amqp/ChangeLog,v 1.13 2014/05/09 
06:31:23 graaff Exp $
+
+*amqp-1.3.0 (09 May 2014)
+
+  09 May 2014; Hans de Graaff gra...@gentoo.org +amqp-1.3.0.ebuild:
+  Version bump.
 
   10 Mar 2014; Manuel Rüger mr...@gentoo.org -amqp-1.1.6.ebuild,
   amqp-0.6.7-r1.ebuild:



1.1  dev-ruby/amqp/amqp-1.3.0.ebuild

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

Index: amqp-1.3.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amqp/amqp-1.3.0.ebuild,v 1.1 
2014/05/09 06:31:23 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=ChangeLog.md README.md

RUBY_FAKEGEM_RECIPE_TEST=rspec

RUBY_FAKEGEM_BINWRAP=

inherit versionator ruby-fakegem

DESCRIPTION=AMQP client implementation in Ruby/EventMachine
HOMEPAGE=http://amqp.rubyforge.org/;

LICENSE=Ruby
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~amd64 ~x86
IUSE=

ruby_add_bdepend test? ( dev-ruby/multi_json dev-ruby/evented-spec )
ruby_add_rdepend =dev-ruby/eventmachine-0.12.4
=dev-ruby/amq-protocol-1.9.2

all_ruby_prepare() {
#rm Gemfile || die
sed -i -e '/[Bb]undler/ s:^:#:' -e '/effin_utf8/ s:^:#:' 
spec/spec_helper.rb || die

# Many specs require a live rabbit server, but only root can start
# an instance. Skip these specs for now.
rm -rf spec/integration spec/unit/amqp/connection_spec.rb || die
}

all_ruby_install() {
dodoc -r docs examples
}






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

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 06:51:21

  Modified: ChangeLog emul-linux-x86.eclass
  Log:
  Remove wrapped headers with USE=abi_x86_32.

Revision  ChangesPath
1.1246   eclass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1245
retrieving revision 1.1246
diff -u -r1.1245 -r1.1246
--- ChangeLog   8 May 2014 21:39:34 -   1.1245
+++ ChangeLog   9 May 2014 06:51:21 -   1.1246
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1245 2014/05/08 
21:39:34 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1246 2014/05/09 
06:51:21 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org emul-linux-x86.eclass:
+  Remove wrapped headers with USE=abi_x86_32.
 
   08 May 2014; Pacho Ramos pa...@gentoo.org emul-linux-x86.eclass:
   Previous approach was wrong



1.23 eclass/emul-linux-x86.eclass

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

Index: emul-linux-x86.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- emul-linux-x86.eclass   8 May 2014 21:39:34 -   1.22
+++ emul-linux-x86.eclass   9 May 2014 06:51:21 -   1.23
@@ -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/eclass/emul-linux-x86.eclass,v 1.22 
2014/05/08 21:39:34 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v 1.23 
2014/05/09 06:51:21 mgorny Exp $
 
 #
 # Original Author: Mike Doty kingt...@gentoo.org
@@ -82,4 +82,11 @@
 
popd /dev/null
fi
+
+   # Since header wrapping is added as part of gx86-multilib support,
+   # all packages involved install their own copies of i686* headers
+   # when built with abi_x86_32.
+   if [[ -d ${D}/usr/include ]]  use abi_x86_32; then
+   rm -r ${D}/usr/include || die
+   fi
 }






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

2014-05-09 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/09 06:51:33

  Modified: ChangeLog
  Added:lmms-1.0.2.ebuild
  Removed:  lmms-1.0.0.ebuild
  Log:
  Version bump. Removed old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.35 media-sound/lmms/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   5 May 2014 07:47:38 -   1.34
+++ ChangeLog   9 May 2014 06:51:32 -   1.35
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/lmms
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v 1.34 
2014/05/05 07:47:38 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v 1.35 
2014/05/09 06:51:32 polynomial-c Exp $
+
+*lmms-1.0.2 (09 May 2014)
+
+  06 May 2014; Lars Wendler polynomia...@gentoo.org -lmms-1.0.0.ebuild,
+  +lmms-1.0.2.ebuild:
+  Version bump. Removed old.
 
 *lmms-1.0.1 (05 May 2014)
 



1.1  media-sound/lmms/lmms-1.0.2.ebuild

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

Index: lmms-1.0.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/lmms-1.0.2.ebuild,v 1.1 
2014/05/09 06:51:32 polynomial-c Exp $

EAPI=5

inherit eutils cmake-utils

DESCRIPTION=Free alternative to popular programs such as Fruityloops, Cubase 
and Logic
HOMEPAGE=http://lmms.sourceforge.net/;
SRC_URI=mirror://sourceforge/${PN}/${P}-src.tar.bz2

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

IUSE=alsa debug fluidsynth jack ogg portaudio pulseaudio sdl stk vst

RDEPEND=dev-qt/qtcore:4
dev-qt/qtgui:4[accessibility]
=media-libs/libsamplerate-0.1.8
=media-libs/libsndfile-1.0.11
sci-libs/fftw:3.0
sys-libs/zlib
=x11-libs/fltk-1.3.0_rc3:1
alsa? ( media-libs/alsa-lib )
fluidsynth? ( media-sound/fluidsynth )
jack? ( =media-sound/jack-audio-connection-kit-0.99.0 )
ogg? ( media-libs/libvorbis
media-libs/libogg )
portaudio? ( =media-libs/portaudio-19_pre )
pulseaudio? ( media-sound/pulseaudio )
sdl? ( media-libs/libsdl
=media-libs/sdl-sound-1.0.1 )
stk? ( media-libs/stk )
vst? ( app-emulation/wine )
DEPEND=${RDEPEND}
=dev-util/cmake-2.4.5
RDEPEND=${RDEPEND}
media-plugins/swh-plugins
media-plugins/caps-plugins
media-plugins/tap-plugins
media-libs/ladspa-cmt

DOCS=README AUTHORS TODO

src_configure() {
mycmakeargs=${mycmakeargs}
-DWANT_SYSTEM_SR=TRUE
-DWANT_CAPS=FALSE
-DWANT_TAP=FALSE
-DWANT_SWH=FALSE
-DWANT_CMT=FALSE
-DWANT_CALF=TRUE
-DCMAKE_INSTALL_LIBDIR=$(get_libdir)
$(cmake-utils_use_want alsa ALSA)
$(cmake-utils_use_want jack JACK)
$(cmake-utils_use_want ogg OGGVORBIS)
$(cmake-utils_use_want portaudio PORTAUDIO)
$(cmake-utils_use_want pulseaudio PULSEAUDIO)
$(cmake-utils_use_want sdl SDL)
$(cmake-utils_use_want stk STK)
$(cmake-utils_use_want vst VST)
$(cmake-utils_use_want fluidsynth SF2)
cmake-utils_src_configure
}






[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-baselibs: ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 06:57:31

  Modified: ChangeLog
  Log:
  Update remove-native wrt libpng version change.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.204app-emulation/emul-linux-x86-baselibs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog?rev=1.204view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog?rev=1.204content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog?r1=1.203r2=1.204

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog,v
retrieving revision 1.203
retrieving revision 1.204
diff -u -r1.203 -r1.204
--- ChangeLog   8 May 2014 21:41:11 -   1.203
+++ ChangeLog   9 May 2014 06:57:30 -   1.204
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/emul-linux-x86-baselibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog,v 1.203 
2014/05/08 21:41:11 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog,v 1.204 
2014/05/09 06:57:30 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org files/remove-native-20140508:
+  Update remove-native wrt libpng version change.
 
 *emul-linux-x86-baselibs-20140508 (08 May 2014)
 






[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-baselibs/files: remove-native-20140508

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 06:57:30

  Modified: remove-native-20140508
  Log:
  Update remove-native wrt libpng version change.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  
app-emulation/emul-linux-x86-baselibs/files/remove-native-20140508

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-baselibs/files/remove-native-20140508?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-baselibs/files/remove-native-20140508?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-baselibs/files/remove-native-20140508?r1=1.1r2=1.2

Index: remove-native-20140508
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-baselibs/files/remove-native-20140508,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- remove-native-20140508  8 May 2014 21:41:11 -   1.1
+++ remove-native-20140508  9 May 2014 06:57:30 -   1.2
@@ -13,7 +13,7 @@
 usr/lib32/libpng.so
 usr/lib32/libpng16.so
 usr/lib32/libpng16.so.16
-usr/lib32/libpng16.so.16.8.0
+usr/lib32/libpng16.so.16.10.0
 usr/lib32/pkgconfig/libpng.pc
 usr/lib32/pkgconfig/libpng16.pc
 usr/lib32/libudis86.so






[gentoo-commits] gentoo-x86 commit in sys-devel/gdb: gdb-7.7.1.ebuild ChangeLog

2014-05-09 Thread Fabian Groffen (grobian)
grobian 14/05/09 07:02:46

  Modified: gdb-7.7.1.ebuild ChangeLog
  Log:
  Reapply python-config fix for Darwin
  
  (Portage version: HEAD/cvs/Darwin i386, signed Manifest commit with key 
0x5F75F607C5C74E89)

Revision  ChangesPath
1.2  sys-devel/gdb/gdb-7.7.1.ebuild

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

Index: gdb-7.7.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.7.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gdb-7.7.1.ebuild8 May 2014 19:58:57 -   1.1
+++ gdb-7.7.1.ebuild9 May 2014 07:02:46 -   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-devel/gdb/gdb-7.7.1.ebuild,v 1.1 
2014/05/08 19:58:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.7.1.ebuild,v 1.2 
2014/05/09 07:02:46 grobian Exp $
 
 EAPI=4
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -80,6 +80,16 @@
use vanilla || [[ -n ${PATCH_VER} ]]  EPATCH_SUFFIX=patch epatch 
${WORKDIR}/patch
epatch_user
strip-linguas -u bfd/po opcodes/po
+   if [[ ${CHOST} == *-darwin* ]] ; then
+   # make sure we have a python-config that matches our install,
+   # such that the python check doesn't fail just because the
+   # gdb-provided copy isn't quite what our python installed
+   # version is
+   rm -f ${S}/gdb/python/python-config.py || die
+   pushd ${S}/gdb/python  /dev/null || die
+   ln -s ${T}/${EPYTHON}/bin/python-config python-config.py || 
die
+   popd  /dev/null || die
+   fi
 }
 
 gdb_branding() {



1.269sys-devel/gdb/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/ChangeLog?rev=1.269view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/ChangeLog?rev=1.269content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/ChangeLog?r1=1.268r2=1.269

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -r1.268 -r1.269
--- ChangeLog   8 May 2014 19:58:57 -   1.268
+++ ChangeLog   9 May 2014 07:02:46 -   1.269
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/gdb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v 1.268 2014/05/08 
19:58:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v 1.269 2014/05/09 
07:02:46 grobian Exp $
+
+  09 May 2014; Fabian Groffen grob...@gentoo.org gdb-7.7.1.ebuild:
+  Reapply python-config fix for Darwin
 
 *gdb-7.7.1 (08 May 2014)
 






[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-gtklibs: ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 07:11:25

  Modified: ChangeLog
  Log:
  Update remove-native wrt library name changes.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.126app-emulation/emul-linux-x86-gtklibs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/ChangeLog?rev=1.126view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/ChangeLog?rev=1.126content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/ChangeLog?r1=1.125r2=1.126

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- ChangeLog   8 May 2014 21:44:20 -   1.125
+++ ChangeLog   9 May 2014 07:11:25 -   1.126
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/emul-linux-x86-gtklibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/ChangeLog,v 1.125 
2014/05/08 21:44:20 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/ChangeLog,v 1.126 
2014/05/09 07:11:25 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org files/remove-native-20140508:
+  Update remove-native wrt library name changes.
 
 *emul-linux-x86-gtklibs-20140508 (08 May 2014)
 






[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-gtklibs/files: remove-native-20140508

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 07:11:25

  Modified: remove-native-20140508
  Log:
  Update remove-native wrt library name changes.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  
app-emulation/emul-linux-x86-gtklibs/files/remove-native-20140508

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/files/remove-native-20140508?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/files/remove-native-20140508?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/files/remove-native-20140508?r1=1.1r2=1.2

Index: remove-native-20140508
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/files/remove-native-20140508,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- remove-native-20140508  8 May 2014 21:44:20 -   1.1
+++ remove-native-20140508  9 May 2014 07:11:25 -   1.2
@@ -13,13 +13,13 @@
 usr/lib32/cairo/libcairo-trace.so.0.0.0
 usr/lib32/libcairo-gobject.so
 usr/lib32/libcairo-gobject.so.2
-usr/lib32/libcairo-gobject.so.2.11200.14
+usr/lib32/libcairo-gobject.so.2.11200.16
 usr/lib32/libcairo-script-interpreter.so
 usr/lib32/libcairo-script-interpreter.so.2
-usr/lib32/libcairo-script-interpreter.so.2.11200.14
+usr/lib32/libcairo-script-interpreter.so.2.11200.16
 usr/lib32/libcairo.so
 usr/lib32/libcairo.so.2
-usr/lib32/libcairo.so.2.11200.14
+usr/lib32/libcairo.so.2.11200.16
 usr/lib32/pkgconfig/cairo-egl.pc
 usr/lib32/pkgconfig/cairo-fc.pc
 usr/lib32/pkgconfig/cairo-ft.pc
@@ -36,12 +36,12 @@
 usr/lib32/pkgconfig/cairo-xlib.pc
 usr/lib32/pkgconfig/cairo.pc
 usr/bin/gdk-pixbuf-query-loaders32
-usr/lib32/libgdk_pixbuf_xlib-2.0.so.0.2600.4
+usr/lib32/libgdk_pixbuf_xlib-2.0.so.0.3000.7
 usr/lib32/libgdk_pixbuf-2.0.so
 usr/lib32/libgdk_pixbuf_xlib-2.0.so
 usr/lib32/pkgconfig/gdk-pixbuf-2.0.pc
 usr/lib32/pkgconfig/gdk-pixbuf-xlib-2.0.pc
-usr/lib32/libgdk_pixbuf-2.0.so.0.2600.4
+usr/lib32/libgdk_pixbuf-2.0.so.0.3000.7
 usr/lib32/libgdk_pixbuf_xlib-2.0.so.0
 usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ras.so
 usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ani.so
@@ -63,19 +63,19 @@
 usr/bin/pango-querymodules32
 usr/lib32/libpango-1.0.so
 usr/lib32/libpango-1.0.so.0
-usr/lib32/libpango-1.0.so.0.3000.1
+usr/lib32/libpango-1.0.so.0.3600.3
 usr/lib32/libpangocairo-1.0.so
 usr/lib32/libpangocairo-1.0.so.0
-usr/lib32/libpangocairo-1.0.so.0.3000.1
+usr/lib32/libpangocairo-1.0.so.0.3600.3
 usr/lib32/libpangoft2-1.0.so
 usr/lib32/libpangoft2-1.0.so.0
-usr/lib32/libpangoft2-1.0.so.0.3000.1
+usr/lib32/libpangoft2-1.0.so.0.3600.3
 usr/lib32/libpangox-1.0.so
 usr/lib32/libpangox-1.0.so.0
 usr/lib32/libpangox-1.0.so.0.0.0
 usr/lib32/libpangoxft-1.0.so
 usr/lib32/libpangoxft-1.0.so.0
-usr/lib32/libpangoxft-1.0.so.0.3000.1
+usr/lib32/libpangoxft-1.0.so.0.3600.3
 usr/lib32/pango/1.8.0/modules/pango-arabic-lang.so
 usr/lib32/pango/1.8.0/modules/pango-indic-lang.so
 usr/lib32/pango/1.8.0/modules/pango-basic-fc.so






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

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 07:13:47

  Modified: ChangeLog emul-linux-x86.eclass
  Log:
  Remove i686-* renamed tools as well with USE=abi_x86_32.

Revision  ChangesPath
1.1247   eclass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1246
retrieving revision 1.1247
diff -u -r1.1246 -r1.1247
--- ChangeLog   9 May 2014 06:51:21 -   1.1246
+++ ChangeLog   9 May 2014 07:13:47 -   1.1247
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1246 2014/05/09 
06:51:21 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1247 2014/05/09 
07:13:47 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org emul-linux-x86.eclass:
+  Remove i686-* renamed tools as well with USE=abi_x86_32.
 
   09 May 2014; Michał Górny mgo...@gentoo.org emul-linux-x86.eclass:
   Remove wrapped headers with USE=abi_x86_32.



1.24 eclass/emul-linux-x86.eclass

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

Index: emul-linux-x86.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- emul-linux-x86.eclass   9 May 2014 06:51:21 -   1.23
+++ emul-linux-x86.eclass   9 May 2014 07:13:47 -   1.24
@@ -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/eclass/emul-linux-x86.eclass,v 1.23 
2014/05/09 06:51:21 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v 1.24 
2014/05/09 07:13:47 mgorny Exp $
 
 #
 # Original Author: Mike Doty kingt...@gentoo.org
@@ -8,7 +8,7 @@
 # Purpose: Providing a template for the app-emulation/emul-linux-* packages
 #
 
-inherit multilib
+inherit eutils multilib
 
 case ${EAPI:-0} in
3|4|5)
@@ -89,4 +89,8 @@
if [[ -d ${D}/usr/include ]]  use abi_x86_32; then
rm -r ${D}/usr/include || die
fi
+   # The same goes for ${CHOST}- multilib tool prefixing.
+   if path_exists ${D}/usr/bin/i686-pc-linux-gnu-*  use abi_x86_32; 
then
+   rm ${D}/usr/bin/i686-pc-linux-gnu-* || die
+   fi
 }






[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-medialibs: emul-linux-x86-medialibs-20140508.ebuild ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 07:52:56

  Modified: emul-linux-x86-medialibs-20140508.ebuild ChangeLog
  Log:
  Update remove-native wrt library soname changes.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  
app-emulation/emul-linux-x86-medialibs/emul-linux-x86-medialibs-20140508.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-medialibs/emul-linux-x86-medialibs-20140508.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-medialibs/emul-linux-x86-medialibs-20140508.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-medialibs/emul-linux-x86-medialibs-20140508.ebuild?r1=1.1r2=1.2

Index: emul-linux-x86-medialibs-20140508.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-medialibs/emul-linux-x86-medialibs-20140508.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- emul-linux-x86-medialibs-20140508.ebuild8 May 2014 21:46:11 -   
1.1
+++ emul-linux-x86-medialibs-20140508.ebuild9 May 2014 07:52: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/app-emulation/emul-linux-x86-medialibs/emul-linux-x86-medialibs-20140508.ebuild,v
 1.1 2014/05/08 21:46:11 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-medialibs/emul-linux-x86-medialibs-20140508.ebuild,v
 1.2 2014/05/09 07:52:56 mgorny Exp $
 
 EAPI=5
 inherit emul-linux-x86
@@ -58,5 +58,5 @@
emul-linux-x86_src_prepare
 
# Remove migrated stuff.
-   use abi_x86_32  rm -f $(cat ${FILESDIR}/remove-native)
+   use abi_x86_32  rm -f $(sed ${FILESDIR}/remove-native-${PVR} -e 
'/^#/d')
 }



1.94 app-emulation/emul-linux-x86-medialibs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-medialibs/ChangeLog?rev=1.94view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-medialibs/ChangeLog?rev=1.94content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-medialibs/ChangeLog?r1=1.93r2=1.94

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-medialibs/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog   8 May 2014 21:46:11 -   1.93
+++ ChangeLog   9 May 2014 07:52:56 -   1.94
@@ -1,6 +1,10 @@
 # ChangeLog for app-emulation/emul-linux-x86-medialibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-medialibs/ChangeLog,v 1.93 
2014/05/08 21:46:11 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-medialibs/ChangeLog,v 1.94 
2014/05/09 07:52:56 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org +files/remove-native-20140508,
+  emul-linux-x86-medialibs-20140508.ebuild:
+  Update remove-native wrt library soname changes.
 
 *emul-linux-x86-medialibs-20140508 (08 May 2014)
 






[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-medialibs/files: remove-native-20140508

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 07:52:56

  Added:remove-native-20140508
  Log:
  Update remove-native wrt library soname changes.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  
app-emulation/emul-linux-x86-medialibs/files/remove-native-20140508

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-medialibs/files/remove-native-20140508?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-medialibs/files/remove-native-20140508?rev=1.1content-type=text/plain

Index: remove-native-20140508
===
usr/lib32/libxvidcore.so
usr/lib32/libxvidcore.so.4
usr/lib32/libxvidcore.so.4.3
usr/lib32/libmp3lame.so
usr/lib32/libmp3lame.so.0
usr/lib32/libmp3lame.so.0.0.0
usr/lib32/libvpx.so
usr/lib32/libvpx.so.1*
usr/lib32/pkgconfig/vpx.pc
usr/lib32/libfaac.so
usr/lib32/libfaac.so.0
usr/lib32/libfaac.so.0.0.0
usr/lib32/libfaad.so
usr/lib32/libfaad.so.2
usr/lib32/libfaad.so.2.0.0
usr/lib32/libmp4ff.so
usr/lib32/libmp4ff.so.0
usr/lib32/libmp4ff.so.0.0.0
usr/lib32/libtheora.so
usr/lib32/libtheora.so.0
usr/lib32/libtheora.so.0.3.10
usr/lib32/libtheoradec.so
usr/lib32/libtheoradec.so.1
usr/lib32/libtheoradec.so.1.1.4
usr/lib32/libtheoraenc.so
usr/lib32/libtheoraenc.so.1
usr/lib32/libtheoraenc.so.1.1.2
usr/lib32/pkgconfig/theora.pc
usr/lib32/pkgconfig/theoradec.pc
usr/lib32/pkgconfig/theoraenc.pc
usr/lib32/libcuefile.so
usr/lib32/libcuefile.so.0
usr/lib32/libcuefile.so.0.0.0
usr/lib32/libreplaygain.so
usr/lib32/libreplaygain.so.1
usr/lib32/libreplaygain.so.1.0.0
usr/lib32/libmad.so
usr/lib32/libmad.so.0
usr/lib32/libmad.so.0.2.1
usr/lib32/pkgconfig/mad.pc
usr/lib32/libdca.so
usr/lib32/libdca.so.0
usr/lib32/libdca.so.0.0.0
usr/lib32/pkgconfig/libdca.pc
usr/lib32/pkgconfig/libdts.pc
usr/lib32/libspeex.so
usr/lib32/libspeex.so.1
usr/lib32/libspeex.so.1.5.0
usr/lib32/libspeexdsp.so
usr/lib32/libspeexdsp.so.1
usr/lib32/libspeexdsp.so.1.5.0
usr/lib32/pkgconfig/speex.pc
usr/lib32/pkgconfig/speexdsp.pc
usr/lib32/libdvdread.so
usr/lib32/libdvdread.so.4
usr/lib32/libdvdread.so.4.1.2
usr/lib32/pkgconfig/dvdread.pc
usr/lib32/libdvdnav.so
usr/lib32/libdvdnav.so.4
usr/lib32/libdvdnav.so.4.1.2
usr/lib32/libdvdnavmini.so
usr/lib32/libdvdnavmini.so.4
usr/lib32/libdvdnavmini.so.4.1.2
usr/lib32/pkgconfig/dvdnav.pc
usr/lib32/pkgconfig/dvdnavmini.pc
usr/lib32/libv4l/ov511-decomp
usr/lib32/libv4l/ov518-decomp
usr/lib32/libv4l/v4l1compat.so
usr/lib32/libv4l/v4l2convert.so
usr/lib32/libv4l1.so
usr/lib32/libv4l1.so.0
usr/lib32/libv4l2.so
usr/lib32/libv4l2.so.0
usr/lib32/libv4lconvert.so
usr/lib32/libv4lconvert.so.0
usr/lib32/pkgconfig/libv4l1.pc
usr/lib32/pkgconfig/libv4l2.pc
usr/lib32/pkgconfig/libv4lconvert.pc
usr/lib32/libid3tag.so
usr/lib32/libid3tag.so.0
usr/lib32/libid3tag.so.0.3.0
usr/lib32/pkgconfig/id3tag.pc
usr/lib32/libshout.so
usr/lib32/libshout.so.3
usr/lib32/libshout.so.3.2.0
usr/lib32/pkgconfig/shout.pc
usr/lib32/sidplay/builders/libhardsid-builder.so
usr/lib32/sidplay/builders/libhardsid-builder.so.0
usr/lib32/sidplay/builders/libhardsid-builder.so.0.0.1
usr/lib32/sidplay/builders/libresid-builder.so
usr/lib32/sidplay/builders/libresid-builder.so.0
usr/lib32/sidplay/builders/libresid-builder.so.0.0.1
usr/lib32/libsidplay2.so
usr/lib32/libsidplay2.so.1
usr/lib32/libsidplay2.so.1.0.1
usr/lib32/pkgconfig/libsidplay2.pc
usr/lib32/libsidutils.so
usr/lib32/libsidutils.so.0
usr/lib32/libsidutils.so.0.0.4
usr/lib32/pkgconfig/libsidutils.pc
usr/lib32/libsidplay.so
usr/lib32/libsidplay.so.1
usr/lib32/libsidplay.so.1.0.3
usr/lib32/libx264.so
usr/lib32/pkgconfig/x264.pc
usr/lib32/libiec61883.so
usr/lib32/libiec61883.so.0*
usr/lib32/pkgconfig/libiec61883.pc
usr/lib32/liba52.so
usr/lib32/liba52.so.0
usr/lib32/liba52.so.0.0.0
usr/lib32/libmimic.so
usr/lib32/libmimic.so.0
usr/lib32/libmimic.so.0.0.1
usr/lib32/pkgconfig/libmimic.pc
usr/lib32/libmms.so
usr/lib32/libmms.so.0
usr/lib32/libmms.so.0.0.2
usr/lib32/pkgconfig/libmms.pc
usr/lib32/libvisual-0.4.so
usr/lib32/libvisual-0.4.so.0
usr/lib32/libvisual-0.4.so.0.0.0
usr/lib32/pkgconfig/libvisual-0.4.pc
usr/lib32/libmpeg2.so
usr/lib32/libmpeg2.so.0
usr/lib32/libmpeg2.so.0.1.0
usr/lib32/pkgconfig/libmpeg2.pc
usr/lib32/libmpeg2convert.so
usr/lib32/libmpeg2convert.so.0
usr/lib32/libmpeg2convert.so.0.0.0
usr/lib32/pkgconfig/libmpeg2convert.pc
usr/lib32/liboil-0.3.so
usr/lib32/liboil-0.3.so.0
usr/lib32/liboil-0.3.so.0.3.0
usr/lib32/pkgconfig/liboil-0.3.pc
usr/lib32/libieee1284.so
usr/lib32/libieee1284.so.3
usr/lib32/libieee1284.so.3.2.2
usr/lib32/libfribidi.so
usr/lib32/libfribidi.so.0
usr/lib32/libfribidi.so.0.3.4
usr/lib32/pkgconfig/fribidi.pc
usr/lib32/libiso9660++.so
usr/lib32/libiso9660++.so.0
usr/lib32/libiso9660++.so.0.0.0
usr/lib32/libiso9660.so
usr/lib32/libiso9660.so.9
usr/lib32/libiso9660.so.9.0.0
usr/lib32/pkgconfig/libiso9660++.pc

[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-soundlibs: ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 07:53:45

  Modified: ChangeLog
  Log:
  Update remove-native wrt library soname changes.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.118app-emulation/emul-linux-x86-soundlibs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog?rev=1.118view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog?rev=1.118content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog?r1=1.117r2=1.118

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog   8 May 2014 21:49:00 -   1.117
+++ ChangeLog   9 May 2014 07:53:45 -   1.118
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/emul-linux-x86-soundlibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 
1.117 2014/05/08 21:49:00 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 
1.118 2014/05/09 07:53:45 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org files/remove-native-20140508:
+  Update remove-native wrt library soname changes.
 
 *emul-linux-x86-soundlibs-20140508 (08 May 2014)
 






[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-soundlibs/files: remove-native-20140508

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 07:53:45

  Modified: remove-native-20140508
  Log:
  Update remove-native wrt library soname changes.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  
app-emulation/emul-linux-x86-soundlibs/files/remove-native-20140508

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/files/remove-native-20140508?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/files/remove-native-20140508?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/files/remove-native-20140508?r1=1.1r2=1.2

Index: remove-native-20140508
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/files/remove-native-20140508,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- remove-native-20140508  8 May 2014 21:49:00 -   1.1
+++ remove-native-20140508  9 May 2014 07:53:44 -   1.2
@@ -34,10 +34,10 @@
 usr/lib32/alsa-lib/smixer/smixer-sbase.so
 usr/lib32/libFLAC++.so
 usr/lib32/libFLAC++.so.6
-usr/lib32/libFLAC++.so.6.2.0
+usr/lib32/libFLAC++.so.6.3.0
 usr/lib32/libFLAC.so
 usr/lib32/libFLAC.so.8
-usr/lib32/libFLAC.so.8.2.0
+usr/lib32/libFLAC.so.8.3.0
 usr/lib32/pkgconfig/flac++.pc
 usr/lib32/pkgconfig/flac.pc
 usr/lib32/libaudiofile.so
@@ -172,7 +172,7 @@
 usr/lib32/libcdda_paranoia.so.0.10.2
 usr/lib32/libwavpack.so
 usr/lib32/libwavpack.so.1
-usr/lib32/libwavpack.so.1.1.4
+usr/lib32/libwavpack.so.1.1.5
 usr/lib32/pkgconfig/wavpack.pc
 usr/lib32/libmpcdec.so
 usr/lib32/libmpcdec.so.7






[gentoo-commits] gentoo-x86 commit in app-admin/sudo: sudo-1.8.10_p3.ebuild ChangeLog

2014-05-09 Thread Diego Petteno (flameeyes)
flameeyes14/05/09 10:08:23

  Modified: ChangeLog
  Added:sudo-1.8.10_p3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
1CD13C8AD4301342)

Revision  ChangesPath
1.364app-admin/sudo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/ChangeLog?rev=1.364view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/ChangeLog?rev=1.364content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/ChangeLog?r1=1.363r2=1.364

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v
retrieving revision 1.363
retrieving revision 1.364
diff -u -r1.363 -r1.364
--- ChangeLog   25 Apr 2014 18:21:54 -  1.363
+++ ChangeLog   9 May 2014 10:08:23 -   1.364
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/sudo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v 1.363 2014/04/25 
18:21:54 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v 1.364 2014/05/09 
10:08:23 flameeyes Exp $
+
+*sudo-1.8.10_p3 (09 May 2014)
+
+  09 May 2014; Diego E. Pettenò flamee...@gentoo.org +sudo-1.8.10_p3.ebuild:
+  Version bump.
 
   25 Apr 2014; Lars Wendler polynomia...@gentoo.org sudo-1.8.10_p2.ebuild:
   Removed unused versionator eclass.



1.1  app-admin/sudo/sudo-1.8.10_p3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/sudo-1.8.10_p3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/sudo-1.8.10_p3.ebuild?rev=1.1content-type=text/plain

Index: sudo-1.8.10_p3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.10_p3.ebuild,v 1.1 
2014/05/09 10:08:23 flameeyes Exp $

EAPI=5

inherit eutils pam multilib libtool

MY_P=${P/_/}
MY_P=${MY_P/beta/b}

uri_prefix=
case ${P} in
*_beta*|*_rc*) uri_prefix=beta/ ;;
esac

DESCRIPTION=Allows users or groups to run commands as other users
HOMEPAGE=http://www.sudo.ws/;
SRC_URI=http://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz
ftp://ftp.sudo.ws/pub/sudo/${uri_prefix}${MY_P}.tar.gz;

# Basic license is ISC-style as-is, some files are released under
# 3-clause BSD license
LICENSE=ISC BSD
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris
IUSE=ldap nls pam offensive selinux skey +sendmail

DEPEND=pam? ( virtual/pam )
skey? ( =sys-auth/skey-1.1.5-r1 )
ldap? (
=net-nds/openldap-2.1.30-r1
dev-libs/cyrus-sasl
)
sys-libs/zlib
RDEPEND=${DEPEND}
selinux? ( sec-policy/selinux-sudo )
ldap? ( dev-lang/perl )
pam? ( sys-auth/pambase )
=app-misc/editor-wrapper-3
virtual/editor
sendmail? ( virtual/mta )
DEPEND=${DEPEND}
sys-devel/bison

S=${WORKDIR}/${MY_P}

REQUIRED_USE=pam? ( !skey ) skey? ( !pam )

MAKEOPTS+= SAMPLES=

src_prepare() {
elibtoolize
}

set_rootpath() {
# FIXME: secure_path is a compile time setting. using ROOTPATH
# is not perfect, env-update may invalidate this, but until it
# is available as a sudoers setting this will have to do.
einfo Setting secure_path ...

# first extract the default ROOTPATH from build env
ROOTPATH=$(unset ROOTPATH; . ${EPREFIX}/etc/profile.env; echo 
${ROOTPATH})
if [[ -z ${ROOTPATH} ]] ; then
ewarn  Failed to find ROOTPATH, please report this
fi

# then remove duplicate path entries
cleanpath() {
local newpath thisp IFS=:
for thisp in $1 ; do
if [[ :${newpath}: != *:${thisp}:* ]] ; then
newpath+=:$thisp
else
einfoDuplicate entry ${thisp} removed...
fi
done
ROOTPATH=${newpath#:}
}
cleanpath 
/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin${ROOTPATH:+:${ROOTPATH}}

# finally, strip gcc paths #136027
rmpath() {
local e newpath thisp IFS=:
for thisp in ${ROOTPATH} ; do
for e ; do [[ $thisp == $e ]]  continue 2 ; done
newpath+=:$thisp
done
ROOTPATH=${newpath#:}
}
rmpath '*/gcc-bin/*' '*/gnat-gcc-bin/*' '*/gnat-gcc/*'

einfo ... done
}

src_configure() {
local ROOTPATH
  

[gentoo-commits] gentoo-x86 commit in sys-apps/hwids: hwids-20140509.ebuild ChangeLog hwids-20140228.ebuild hwids-20140304.ebuild

2014-05-09 Thread Diego Petteno (flameeyes)
flameeyes14/05/09 10:16:47

  Modified: ChangeLog
  Added:hwids-20140509.ebuild
  Removed:  hwids-20140228.ebuild hwids-20140304.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
1CD13C8AD4301342)

Revision  ChangesPath
1.140sys-apps/hwids/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog   28 Mar 2014 04:33:56 -  1.139
+++ ChangeLog   9 May 2014 10:16:47 -   1.140
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/hwids
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.139 2014/03/28 
04:33:56 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.140 2014/05/09 
10:16:47 flameeyes Exp $
+
+*hwids-20140509 (09 May 2014)
+
+  09 May 2014; Diego E. Pettenò flamee...@gentoo.org +hwids-20140509.ebuild,
+  -hwids-20140228.ebuild, -hwids-20140304.ebuild:
+  Version bump.
 
   28 Mar 2014; Samuli Suominen ssuomi...@gentoo.org hwids-20140317.ebuild:
   amd64/arm/x86 stable wrt #506026



1.1  sys-apps/hwids/hwids-20140509.ebuild

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

Index: hwids-20140509.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20140509.ebuild,v 1.1 
2014/05/09 10:16:47 flameeyes Exp $

EAPI=5
inherit udev eutils

DESCRIPTION=Hardware (PCI, USB, OUI, IAB) IDs databases
HOMEPAGE=https://github.com/gentoo/hwids;
SRC_URI=https://github.com/gentoo/hwids/archive/${P}.tar.gz;

LICENSE=|| ( GPL-2 BSD ) public-domain
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux 
~x86-linux
IUSE=+udev

DEPEND=udev? (
dev-lang/perl
=virtual/udev-206
)
RDEPEND=!sys-apps/pciutils-3.1.9-r2
!sys-apps/usbutils-005-r1

S=${WORKDIR}/hwids-${P}

src_prepare() {
sed -i -e '/udevadm hwdb/d' Makefile || die
}

src_compile() {
emake UDEV=$(usex udev)
}

src_install() {
emake UDEV=$(usex udev) install \
DOCDIR=${EPREFIX}/usr/share/doc/${PF} \
MISCDIR=${EPREFIX}/usr/share/misc \
HWDBDIR=${EPREFIX}$(get_udevdir)/hwdb.d \
DESTDIR=${D}
}

pkg_postinst() {
if use udev; then
udevadm hwdb --update --root=${ROOT%/}
# 
http://cgit.freedesktop.org/systemd/systemd/commit/?id=1fab57c209035f7e66198343074e9cee06718bda
if [[ ${ROOT} !=  ]]  [[ ${ROOT} != / ]]; then
return 0
fi
udevadm control --reload
fi
}






[gentoo-commits] gentoo-x86 commit in sys-apps/etckeeper: ChangeLog etckeeper-1.11-r1.ebuild

2014-05-09 Thread JosA MarAa Alonso (nimiux)
nimiux  14/05/09 10:34:42

  Modified: ChangeLog etckeeper-1.11-r1.ebuild
  Log:
  Stable for amd64 wrt bug #506070
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
D628E536)

Revision  ChangesPath
1.40 sys-apps/etckeeper/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/etckeeper/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   24 Apr 2014 00:41:39 -  1.39
+++ ChangeLog   9 May 2014 10:34:42 -   1.40
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/etckeeper
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/etckeeper/ChangeLog,v 1.39 
2014/04/24 00:41:39 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/etckeeper/ChangeLog,v 1.40 
2014/05/09 10:34:42 nimiux Exp $
+
+  09 May 2014; Chema Alonso nim...@gentoo.org etckeeper-1.11-r1.ebuild:
+  Stable for amd64 wrt bug #506070
 
   24 Apr 2014; Manuel Rüger mr...@gentoo.org -etckeeper-1.11.ebuild:
   Cleanup old.



1.2  sys-apps/etckeeper/etckeeper-1.11-r1.ebuild

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

Index: etckeeper-1.11-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/etckeeper/etckeeper-1.11-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- etckeeper-1.11-r1.ebuild6 Mar 2014 20:30:07 -   1.1
+++ etckeeper-1.11-r1.ebuild9 May 2014 10:34:42 -   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/etckeeper/etckeeper-1.11-r1.ebuild,v 1.1 
2014/03/06 20:30:07 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/etckeeper/etckeeper-1.11-r1.ebuild,v 1.2 
2014/05/09 10:34:42 nimiux Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 SRC_URI=https://github.com/joeyh/etckeeper/archive/${PV}.tar.gz - 
${P}.tar.gz
 
 LICENSE=GPL-2
-KEYWORDS=~amd64 ~x86
+KEYWORDS=amd64 ~x86
 SLOT=0
 IUSE=bazaar cron
 REQUIRED_USE=bazaar? ( ${PYTHON_REQUIRED_USE} )






[gentoo-commits] gentoo-x86 commit in dev-games/simgear: simgear-3.0.0.ebuild ChangeLog

2014-05-09 Thread JosA MarAa Alonso (nimiux)
nimiux  14/05/09 10:45:51

  Modified: simgear-3.0.0.ebuild ChangeLog
  Log:
  Stable for amd64 wrt bug #505912
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
D628E536)

Revision  ChangesPath
1.2  dev-games/simgear/simgear-3.0.0.ebuild

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

Index: simgear-3.0.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- simgear-3.0.0.ebuild27 Mar 2014 02:37:08 -  1.1
+++ simgear-3.0.0.ebuild9 May 2014 10:45:51 -   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/dev-games/simgear/simgear-3.0.0.ebuild,v 
1.1 2014/03/27 02:37:08 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-3.0.0.ebuild,v 
1.2 2014/05/09 10:45:51 nimiux Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 
SRC_URI=http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/${P}.tar.bz2;
 
 LICENSE=GPL-2
-KEYWORDS=~amd64 ~ppc ~x86
+KEYWORDS=amd64 ~ppc ~x86
 SLOT=0
 IUSE=debug jpeg subversion test
 



1.64 dev-games/simgear/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog   27 Mar 2014 02:37:08 -  1.63
+++ ChangeLog   9 May 2014 10:45:51 -   1.64
@@ -1,6 +1,9 @@
 # ChangeLog for dev-games/simgear
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.63 
2014/03/27 02:37:08 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.64 
2014/05/09 10:45:51 nimiux Exp $
+
+  09 May 2014; Chema Alonso nim...@gentoo.org simgear-3.0.0.ebuild:
+  Stable for amd64 wrt bug #505912
 
 *simgear-3.0.0 (27 Mar 2014)
 






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear-data: ChangeLog flightgear-data-3.0.0.ebuild

2014-05-09 Thread JosA MarAa Alonso (nimiux)
nimiux  14/05/09 10:47:17

  Modified: ChangeLog flightgear-data-3.0.0.ebuild
  Log:
  Stable for amd64 wrt bug #505912
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
D628E536)

Revision  ChangesPath
1.7  games-simulation/flightgear-data/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   27 Mar 2014 02:39:09 -  1.6
+++ ChangeLog   9 May 2014 10:47:17 -   1.7
@@ -1,6 +1,9 @@
 # ChangeLog for games-simulation/flightgear-data
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.6 
2014/03/27 02:39:09 reavertm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.7 
2014/05/09 10:47:17 nimiux Exp $
+
+  09 May 2014; Chema Alonso nim...@gentoo.org flightgear-data-3.0.0.ebuild:
+  Stable for amd64 wrt bug #505912
 
 *flightgear-data-3.0.0 (27 Mar 2014)
 



1.2  
games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild?r1=1.1r2=1.2

Index: flightgear-data-3.0.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- flightgear-data-3.0.0.ebuild27 Mar 2014 02:39:09 -  1.1
+++ flightgear-data-3.0.0.ebuild9 May 2014 10:47:17 -   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/games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild,v
 1.1 2014/03/27 02:39:09 reavertm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.0.0.ebuild,v
 1.2 2014/05/09 10:47:17 nimiux Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~x86
+KEYWORDS=amd64 ~ppc ~x86
 IUSE=
 
 # data files split to separate package since 2.10.0






[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: ChangeLog flightgear-3.0.0.ebuild

2014-05-09 Thread JosA MarAa Alonso (nimiux)
nimiux  14/05/09 10:48:15

  Modified: ChangeLog flightgear-3.0.0.ebuild
  Log:
  Stable for amd64 wrt bug #505912
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
D628E536)

Revision  ChangesPath
1.69 games-simulation/flightgear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.69view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.69content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.68r2=1.69

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   27 Mar 2014 02:40:48 -  1.68
+++ ChangeLog   9 May 2014 10:48:15 -   1.69
@@ -1,6 +1,9 @@
 # ChangeLog for games-simulation/flightgear
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.68 2014/03/27 02:40:48 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 
1.69 2014/05/09 10:48:15 nimiux Exp $
+
+  09 May 2014; Chema Alonso nim...@gentoo.org flightgear-3.0.0.ebuild:
+  Stable for amd64 wrt bug #505912
 
 *flightgear-3.0.0 (27 Mar 2014)
 



1.2  games-simulation/flightgear/flightgear-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild?r1=1.1r2=1.2

Index: flightgear-3.0.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- flightgear-3.0.0.ebuild 27 Mar 2014 02:40:48 -  1.1
+++ flightgear-3.0.0.ebuild 9 May 2014 10:48: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/games-simulation/flightgear/flightgear-3.0.0.ebuild,v 
1.1 2014/03/27 02:40:48 reavertm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.0.0.ebuild,v 
1.2 2014/05/09 10:48:15 nimiux Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~x86
+KEYWORDS=amd64 ~ppc ~x86
 IUSE=dbus debug jpeg +jsbsim oldfdm test +udev +utils +yasim
 
 COMMON_DEPEND=






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

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 10:48:59

  Modified: ChangeLog cmake-multilib.eclass
  Log:
  Use multilib-minimal for phase functions.

Revision  ChangesPath
1.1248   eclass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1247
retrieving revision 1.1248
diff -u -r1.1247 -r1.1248
--- ChangeLog   9 May 2014 07:13:47 -   1.1247
+++ ChangeLog   9 May 2014 10:48:59 -   1.1248
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1247 2014/05/09 
07:13:47 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1248 2014/05/09 
10:48:59 mgorny Exp $
+
+  09 May 2014; Michał Górny mgo...@gentoo.org cmake-multilib.eclass:
+  Use multilib-minimal for phase functions.
 
   09 May 2014; Michał Górny mgo...@gentoo.org emul-linux-x86.eclass:
   Remove i686-* renamed tools as well with USE=abi_x86_32.



1.7  eclass/cmake-multilib.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?r1=1.6r2=1.7

Index: cmake-multilib.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- cmake-multilib.eclass   29 Apr 2014 20:54:54 -  1.6
+++ cmake-multilib.eclass   9 May 2014 10:48:59 -   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/eclass/cmake-multilib.eclass,v 1.6 
2014/04/29 20:54:54 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.7 
2014/05/09 10:48:59 mgorny Exp $
 
 # @ECLASS: cmake-multilib.eclass
 # @MAINTAINER:
@@ -9,16 +9,15 @@
 # Author: Michał Górny mgo...@gentoo.org
 # @BLURB: cmake-utils wrapper for multilib builds
 # @DESCRIPTION:
-# The cmake-multilib.eclass is a cmake-utils.eclass(5) wrapper
-# introducing support for building for more than one ABI (multilib).
+# The cmake-multilib.eclass provides a glue between cmake-utils.eclass(5)
+# and multilib-minimal.eclass(5), aiming to provide a convenient way
+# to build packages using cmake for multiple ABIs.
 #
-# Inheriting this eclass sets IUSE and exports cmake-utils phase
-# function wrappers which build the package for each supported ABI
-# if the appropriate flag is enabled.
-#
-# Note that the multilib support requires out-of-source builds to be
-# enabled. Thus, it is impossible to use CMAKE_IN_SOURCE_BUILD with
-# it.
+# Inheriting this eclass sets IUSE and exports default multilib_src_*()
+# sub-phases that call cmake-utils phase functions for each ABI enabled.
+# The multilib_src_*() functions can be defined in ebuild just like
+# in multilib-minimal, yet they ought to call appropriate cmake-utils
+# phase rather than 'default'.
 
 # EAPI=5 is required for meaningful MULTILIB_USEDEP.
 case ${EAPI:-0} in
@@ -30,31 +29,46 @@
die ${ECLASS}: multilib support requires out-of-source builds.
 fi
 
-inherit cmake-utils multilib-build
+inherit cmake-utils multilib-minimal
 
 EXPORT_FUNCTIONS src_configure src_compile src_test src_install
 
 cmake-multilib_src_configure() {
-   multilib_parallel_foreach_abi cmake-utils_src_configure ${@}
+   local _cmake_args=( ${@} )
+
+   multilib-minimal_src_configure
+}
+
+multilib_src_configure() {
+   cmake-utils_src_configure ${_cmake_args[@]}
 }
 
 cmake-multilib_src_compile() {
-   multilib_foreach_abi cmake-utils_src_compile ${@}
+   local _cmake_args=( ${@} )
+
+   multilib-minimal_src_compile
+}
+
+multilib_src_compile() {
+   cmake-utils_src_compile ${_cmake_args[@]}
 }
 
 cmake-multilib_src_test() {
-   multilib_foreach_abi cmake-utils_src_test ${@}
+   local _cmake_args=( ${@} )
+
+   multilib-minimal_src_test
+}
+
+multilib_src_test() {
+   cmake-utils_src_test ${_cmake_args[@]}
 }
 
 cmake-multilib_src_install() {
-   cmake-multilib_secure_install() {
-   cmake-utils_src_install ${@}
+   local _cmake_args=( ${@} )
 
-   multilib_prepare_wrappers
-   # Make sure all headers are the same for each ABI.
-   multilib_check_headers
-  

[gentoo-commits] gentoo-x86 commit in app-admin/pass/files: - New directory

2014-05-09 Thread Jason Donenfeld (zx2c4)
zx2c4   14/05/09 11:16:23

  Log:
  Directory /var/cvsroot/gentoo-x86/app-admin/pass/files added to the repository



[gentoo-commits] gentoo-x86 commit in app-editors/pluma: pluma-1.8.1.ebuild ChangeLog

2014-05-09 Thread Tom Wijsman (tomwij)
tomwij  14/05/09 11:47:16

  Modified: ChangeLog
  Added:pluma-1.8.1.ebuild
  Log:
  Version bump to 1.8.1.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.2  app-editors/pluma/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/pluma/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   27 Apr 2014 16:31:57 -  1.1
+++ ChangeLog   9 May 2014 11:47:16 -   1.2
@@ -1,6 +1,11 @@
 # ChangeLog for app-editors/pluma
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/pluma/ChangeLog,v 1.1 
2014/04/27 16:31:57 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/pluma/ChangeLog,v 1.2 
2014/05/09 11:47:16 tomwij Exp $
+
+*pluma-1.8.1 (09 May 2014)
+
+  09 May 2014; Tom Wijsman tom...@gentoo.org +pluma-1.8.1.ebuild:
+  Version bump to 1.8.1.
 
 *pluma-1.8.0 (27 Apr 2014)
 



1.1  app-editors/pluma/pluma-1.8.1.ebuild

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

Index: pluma-1.8.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/pluma/pluma-1.8.1.ebuild,v 1.1 
2014/05/09 11:47:16 tomwij Exp $

EAPI=5

GCONF_DEBUG=yes
GNOME2_LA_PUNT=yes

PYTHON_COMPAT=( python2_{6,7} )

inherit gnome2 multilib python-single-r1 versionator virtualx

MATE_BRANCH=$(get_version_component_range 1-2)

SRC_URI=http://pub.mate-desktop.org/releases/${MATE_BRANCH}/${P}.tar.xz;
DESCRIPTION=Pluma text editor for the MATE desktop
HOMEPAGE=http://mate-desktop.org;

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

IUSE=python spell

REQUIRED_USE=python? ( ${PYTHON_REQUIRED_USE} )

# Tests require gvfs sftp fs mounted and schema's installed. Disable tests.
# https://github.com/mate-desktop/mate-text-editor/issues/33
RESTRICT=test

RDEPEND=app-text/rarian:0
dev-libs/atk:0
=dev-libs/glib-2.32:2
=dev-libs/libxml2-2.5:2
x11-libs/cairo:0
x11-libs/gdk-pixbuf:2
=x11-libs/gtk+-2.19:2
=x11-libs/gtksourceview-2.9.7:2.0
x11-libs/libICE:0
x11-libs/libX11:0
=x11-libs/libSM-1.0
x11-libs/pango:0
virtual/libintl:0
spell? (
=app-text/enchant-1.2:0
=app-text/iso-codes-0.35:0
)
python? (
${PYTHON_DEPS}
=dev-python/pygobject-2.15.4:2[${PYTHON_USEDEP}]
=dev-python/pygtk-2.12:2[${PYTHON_USEDEP}]
=dev-python/pygtksourceview-2.9.2:2
)
!!app-editors/mate-text-editor

DEPEND=${RDEPEND}
~app-text/docbook-xml-dtd-4.1.2
=app-text/scrollkeeper-dtd-1:1.0
app-text/yelp-tools:0
=dev-util/intltool-0.40:*
=sys-devel/libtool-2.2.6:2
=mate-base/mate-common-1.6:0
=sys-devel/gettext-0.17:*
virtual/pkgconfig:*

src_configure() {
gnome2_src_configure \
--disable-updater \
$(use_enable python) \
$(use_enable spell)
}

DOCS=AUTHORS ChangeLog NEWS README

src_test() {
# FIXME: This should be handled at eclass level.
${EROOT}${GLIB_COMPILE_SCHEMAS} --allow-any-name ${S}/data || die

unset DBUS_SESSION_BUS_ADDRESS

GSETTINGS_SCHEMA_DIR=${S}/data Xemake check
}






[gentoo-commits] gentoo-x86 commit in app-admin/pass/files: 50pass-gentoo.el

2014-05-09 Thread Jason Donenfeld (zx2c4)
zx2c4   14/05/09 11:48:09

  Added:50pass-gentoo.el
  Log:
  Add initial emacs support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A5DE03AE)

Revision  ChangesPath
1.1  app-admin/pass/files/50pass-gentoo.el

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/files/50pass-gentoo.el?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/files/50pass-gentoo.el?rev=1.1content-type=text/plain

Index: 50pass-gentoo.el
===
(add-to-list 'load-path @SITELISP@)
(autoload 'password-store-edit password-store nil t)
(autoload 'password-store-copy password-store nil t)
(autoload 'password-store-init password-store nil t)
(autoload 'password-store-insert password-store nil t)
(autoload 'password-store-generate password-store nil t)
(autoload 'password-store-remove password-store nil t)
(autoload 'password-store-rename password-store nil t)
(autoload 'password-store-version password-store nil t)






[gentoo-commits] gentoo-x86 commit in app-admin/pass: pass-1.6.1-r1.ebuild pass-9999.ebuild ChangeLog

2014-05-09 Thread Jason Donenfeld (zx2c4)
zx2c4   14/05/09 11:48:09

  Modified: pass-1.6.1-r1.ebuild pass-.ebuild ChangeLog
  Log:
  Add initial emacs support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A5DE03AE)

Revision  ChangesPath
1.3  app-admin/pass/pass-1.6.1-r1.ebuild

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

Index: pass-1.6.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/pass/pass-1.6.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pass-1.6.1-r1.ebuild8 May 2014 03:03:15 -   1.2
+++ pass-1.6.1-r1.ebuild9 May 2014 11:48:09 -   1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/pass-1.6.1-r1.ebuild,v 1.2 
2014/05/08 03:03:15 zx2c4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/pass-1.6.1-r1.ebuild,v 1.3 
2014/05/09 11:48:09 zx2c4 Exp $
 
 EAPI=4
 
-inherit bash-completion-r1
+inherit bash-completion-r1 elisp-common
 
 DESCRIPTION=Stores, retrieves, generates, and synchronizes passwords securely 
using gpg, pwgen, and git
 HOMEPAGE=http://zx2c4.com/projects/password-store/;
@@ -13,7 +13,7 @@
 SLOT=0
 LICENSE=GPL-2
 KEYWORDS=~amd64 ~x86 ~x86-macos
-IUSE=+git X zsh-completion fish-completion dmenu elibc_Darwin
+IUSE=+git X zsh-completion fish-completion emacs dmenu elibc_Darwin
 
 RDEPEND=
app-crypt/gnupg
@@ -25,6 +25,7 @@
zsh-completion? ( app-shells/zsh-completion )
fish-completion? ( app-shells/fish )
dmenu? ( x11-misc/dmenu )
+   emacs? ( virtual/emacs )
 
 
 S=${WORKDIR}/password-store-${PV}
@@ -49,4 +50,16 @@
default
use dmenu  dobin contrib/dmenu/passmenu
newbashcomp src/completion/pass.bash-completion pass
+   if use emacs; then
+   elisp-install ${PN} contrib/emacs/*.el || die
+   elisp-site-file-install ${FILESDIR}/50${PN}-gentoo.el || die
+   fi
+}
+
+pkg_postinst() {
+   use emacs  elisp-site-regen
+}
+
+pkg_postrm() {
+   use emacs  elisp-site-regen
 }



1.14 app-admin/pass/pass-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/pass-.ebuild?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/pass-.ebuild?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/pass-.ebuild?r1=1.13r2=1.14

Index: pass-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/pass/pass-.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- pass-.ebuild8 May 2014 03:03:15 -   1.13
+++ pass-.ebuild9 May 2014 11:48:09 -   1.14
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/pass-.ebuild,v 1.13 
2014/05/08 03:03:15 zx2c4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/pass-.ebuild,v 1.14 
2014/05/09 11:48:09 zx2c4 Exp $
 
 EAPI=4
 
-inherit bash-completion-r1 git-2
+inherit bash-completion-r1 git-2 elisp-common
 
 DESCRIPTION=Stores, retrieves, generates, and synchronizes passwords securely 
using gpg, pwgen, and git
 HOMEPAGE=http://zx2c4.com/projects/password-store/;
@@ -13,7 +13,7 @@
 SLOT=0
 LICENSE=GPL-2
 KEYWORDS=
-IUSE=+git X zsh-completion fish-completion dmenu elibc_Darwin
+IUSE=+git X zsh-completion fish-completion emacs dmenu elibc_Darwin
 
 RDEPEND=
app-crypt/gnupg
@@ -25,6 +25,7 @@
zsh-completion? ( app-shells/zsh-completion )
fish-completion? ( app-shells/fish )
dmenu? ( x11-misc/dmenu )
+   emacs? ( virtual/emacs )
 
 
 S=${WORKDIR}/password-store-${PV}
@@ -49,4 +50,16 @@
default
use dmenu  dobin contrib/dmenu/passmenu
newbashcomp src/completion/pass.bash-completion pass
+   if use emacs; then
+   elisp-install ${PN} contrib/emacs/*.el || die
+   elisp-site-file-install ${FILESDIR}/50${PN}-gentoo.el || die
+   fi
+}
+
+pkg_postinst() {
+   use emacs  elisp-site-regen
+}
+
+pkg_postrm() {
+   use emacs  elisp-site-regen
 }



1.21 app-admin/pass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/ChangeLog?rev=1.21view=markup
plain: 

[gentoo-commits] gentoo-x86 commit in mate-base/mate-desktop: mate-desktop-1.8.1.ebuild ChangeLog

2014-05-09 Thread Tom Wijsman (tomwij)
tomwij  14/05/09 11:51:36

  Modified: ChangeLog
  Added:mate-desktop-1.8.1.ebuild
  Log:
  Version bump to 1.8.1.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.9  mate-base/mate-desktop/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-desktop/ChangeLog?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-desktop/ChangeLog?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-desktop/ChangeLog?r1=1.8r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mate-base/mate-desktop/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   7 May 2014 12:31:58 -   1.8
+++ ChangeLog   9 May 2014 11:51:36 -   1.9
@@ -1,6 +1,11 @@
 # ChangeLog for mate-base/mate-desktop
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mate-base/mate-desktop/ChangeLog,v 1.8 
2014/05/07 12:31:58 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/mate-base/mate-desktop/ChangeLog,v 1.9 
2014/05/09 11:51:36 tomwij Exp $
+
+*mate-desktop-1.8.1 (09 May 2014)
+
+  09 May 2014; Tom Wijsman tom...@gentoo.org +mate-desktop-1.8.1.ebuild:
+  Version bump to 1.8.1.
 
 *mate-desktop-1.8.0-r1 (07 May 2014)
 



1.1  mate-base/mate-desktop/mate-desktop-1.8.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-desktop/mate-desktop-1.8.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-desktop/mate-desktop-1.8.1.ebuild?rev=1.1content-type=text/plain

Index: mate-desktop-1.8.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/mate-base/mate-desktop/mate-desktop-1.8.1.ebuild,v 1.1 
2014/05/09 11:51:36 tomwij Exp $

EAPI=5

GCONF_DEBUG=yes
GNOME2_LA_PUNT=yes

PYTHON_COMPAT=( python2_6 python2_7 )

inherit gnome2 multilib python-r1 versionator

MATE_BRANCH=$(get_version_component_range 1-2)

SRC_URI=http://pub.mate-desktop.org/releases/${MATE_BRANCH}/${P}.tar.xz;
DESCRIPTION=Libraries for the MATE desktop that are not part of the UI
HOMEPAGE=http://mate-desktop.org;

LICENSE=GPL-2 FDL-1.1 LGPL-2
SLOT=0
KEYWORDS=~amd64

IUSE=X startup-notification

RDEPEND=${PYTHON_DEPS}
=dev-libs/glib-2.34:2
=dev-libs/libunique-1:1
x11-libs/cairo:0
=x11-libs/gdk-pixbuf-2.4:2
=x11-libs/gtk+-2.24:2
x11-libs/libX11:0
=x11-libs/libXrandr-1.2:0
virtual/libintl:0
startup-notification? ( =x11-libs/startup-notification-0.5:0 )

DEPEND=${RDEPEND}
app-text/docbook-xml-dtd:4.1.2
app-text/yelp-tools:0
=dev-util/intltool-0.40:*
=gnome-base/dconf-0.10:0
sys-devel/gettext:*
=x11-proto/randrproto-1.2:0
x11-proto/xproto:0
virtual/pkgconfig:*

src_configure() {
gnome2_src_configure \
--enable-mate-conf-import \
--with-gtk=2.0 \
$(use_with X x) \
$(use_enable startup-notification)
}

DOCS=AUTHORS ChangeLog HACKING NEWS README

src_install() {
gnome2_src_install

python_replicate_script ${ED}/usr/bin/mate-conf-import

# Remove installed files that cause collissions.
rm -rf ${ED}/usr/share/help/C/{lgpl,gpl,fdl}
}






[gentoo-commits] gentoo-x86 commit in mate-base/caja: caja-1.8.1.ebuild ChangeLog

2014-05-09 Thread Tom Wijsman (tomwij)
tomwij  14/05/09 11:54:56

  Modified: ChangeLog
  Added:caja-1.8.1.ebuild
  Log:
  Version bump to 1.8.1.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.2  mate-base/caja/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mate-base/caja/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   10 Apr 2014 12:23:00 -  1.1
+++ ChangeLog   9 May 2014 11:54:56 -   1.2
@@ -1,6 +1,11 @@
 # ChangeLog for mate-base/caja
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mate-base/caja/ChangeLog,v 1.1 2014/04/10 
12:23:00 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/mate-base/caja/ChangeLog,v 1.2 2014/05/09 
11:54:56 tomwij Exp $
+
+*caja-1.8.1 (09 May 2014)
+
+  09 May 2014; Tom Wijsman tom...@gentoo.org +caja-1.8.1.ebuild:
+  Version bump to 1.8.1.
 
 *caja-1.8.0 (10 Apr 2014)
 



1.1  mate-base/caja/caja-1.8.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/caja/caja-1.8.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/caja/caja-1.8.1.ebuild?rev=1.1content-type=text/plain

Index: caja-1.8.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mate-base/caja/caja-1.8.1.ebuild,v 1.1 
2014/05/09 11:54:56 tomwij Exp $

EAPI=5

GCONF_DEBUG=yes
GNOME2_LA_PUNT=yes

inherit eutils gnome2 versionator virtualx

MATE_BRANCH=$(get_version_component_range 1-2)

SRC_URI=http://pub.mate-desktop.org/releases/${MATE_BRANCH}/${P}.tar.xz;
DESCRIPTION=Caja file manager for the MATE desktop
HOMEPAGE=http://mate-desktop.org;

LICENSE=GPL-2 LGPL-2 FDL-1.1
SLOT=0
KEYWORDS=~amd64

IUSE=X +mate +introspection +unique xmp

RDEPEND=dev-libs/atk:0
=dev-libs/glib-2.28:2
=dev-libs/libxml2-2.4.7:2
|| (
=gnome-base/gvfs-1.10.1:0[gdu]
=gnome-base/gvfs-1.10.1:0[udisks]
)
=mate-base/mate-desktop-1.8:0
=media-libs/libexif-0.5.12:0
=x11-libs/gtk+-2.24:2[introspection?]
x11-libs/cairo:0
x11-libs/gdk-pixbuf:2
x11-libs/libICE:0
x11-libs/libSM:0
x11-libs/libX11:0
x11-libs/libXext:0
x11-libs/libXft:0
x11-libs/libXrender:0
=x11-libs/pango-1.1.2:0
virtual/libintl:0
introspection? ( =dev-libs/gobject-introspection-0.6.4:0 )
unique? ( =dev-libs/libunique-1:1 )
xmp? ( =media-libs/exempi-1.99.2:2 )

DEPEND=${RDEPEND}
!!mate-base/mate-file-manager
=dev-lang/perl-5:0=
dev-util/gdbus-codegen:0
=dev-util/intltool-0.40.1:*
=mate-base/mate-common-1.6:0
sys-devel/gettext:*
virtual/pkgconfig:*

PDEPEND=mate? ( =x11-themes/mate-icon-theme-1.6:0 )

# TODO: Test fails because Caja is not merged yet:
# GLib-GIO-ERROR **: Settings schema 'org.mate.caja.preferences' is not 
installed
RESTRICT=test

src_prepare() {
# Remove unnecessary CFLAGS.
sed -i -e 's:-DG.*DISABLE_DEPRECATED::g' \
configure{,.ac} eel/Makefile.{am,in} || die

gnome2_src_prepare
}

src_configure() {
gnome2_src_configure \
--enable-unique \
--disable-packagekit \
--disable-update-mimedb \
--with-gtk=2.0 \
$(use_enable introspection) \
$(use_enable unique) \
$(use_enable xmp) \
$(use_with X x)
}

DOCS=AUTHORS ChangeLog* HACKING MAINTAINERS NEWS README THANKS TODO

src_test() {
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS

Xemake check || die Test phase failed
}

pkg_postinst() {
gnome2_pkg_postinst

elog Caja can use gstreamer to preview audio files. Just make sure
elog to have the necessary plugins available to play the media type 
you
elog want to preview.
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/vanilla-sources: vanilla-sources-3.12.19.ebuild ChangeLog vanilla-sources-3.12.18.ebuild

2014-05-09 Thread Mike Pagano (mpagano)
mpagano 14/05/09 12:04:43

  Modified: ChangeLog
  Added:vanilla-sources-3.12.19.ebuild
  Removed:  vanilla-sources-3.12.18.ebuild
  Log:
  Version bump. Remove old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
B576E4E3)

Revision  ChangesPath
1.1287   sys-kernel/vanilla-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/ChangeLog,v
retrieving revision 1.1286
retrieving revision 1.1287
diff -u -r1.1286 -r1.1287
--- ChangeLog   6 May 2014 18:19:50 -   1.1286
+++ ChangeLog   9 May 2014 12:04:43 -   1.1287
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/vanilla-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/ChangeLog,v 
1.1286 2014/05/06 18:19:50 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/ChangeLog,v 
1.1287 2014/05/09 12:04:43 mpagano Exp $
+
+*vanilla-sources-3.12.19 (09 May 2014)
+
+  09 May 2014; Mike Pagano mpag...@gentoo.org
+  -vanilla-sources-3.12.18.ebuild, +vanilla-sources-3.12.19.ebuild:
+  Version bump. Remove old.
 
 *vanilla-sources-3.14.3 (06 May 2014)
 *vanilla-sources-3.10.39 (06 May 2014)



1.1  sys-kernel/vanilla-sources/vanilla-sources-3.12.19.ebuild

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

Index: vanilla-sources-3.12.19.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.12.19.ebuild,v
 1.1 2014/05/09 12:04:43 mpagano Exp $

EAPI=5
K_NOUSENAME=yes
K_NOSETEXTRAVERSION=yes
K_SECURITY_UNSUPPORTED=1
K_DEBLOB_AVAILABLE=1
ETYPE=sources
inherit kernel-2
detect_version

DESCRIPTION=Full sources for the Linux kernel
HOMEPAGE=http://www.kernel.org;
SRC_URI=${KERNEL_URI}

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86
IUSE=deblob






[gentoo-commits] gentoo-x86 commit in mate-base/caja: ChangeLog caja-1.8.0.ebuild

2014-05-09 Thread Tom Wijsman (tomwij)
tomwij  14/05/09 12:05:50

  Modified: ChangeLog
  Removed:  caja-1.8.0.ebuild
  Log:
  Remove broken 1.8.0 release that spawned endless windows.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.3  mate-base/caja/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mate-base/caja/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   9 May 2014 11:54:56 -   1.2
+++ ChangeLog   9 May 2014 12:05:50 -   1.3
@@ -1,6 +1,9 @@
 # ChangeLog for mate-base/caja
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mate-base/caja/ChangeLog,v 1.2 2014/05/09 
11:54:56 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/mate-base/caja/ChangeLog,v 1.3 2014/05/09 
12:05:50 tomwij Exp $
+
+  09 May 2014; Tom Wijsman tom...@gentoo.org -caja-1.8.0.ebuild:
+  Remove broken 1.8.0 release that spawned endless windows.
 
 *caja-1.8.1 (09 May 2014)
 






[gentoo-commits] gentoo-x86 commit in app-admin/pass: pass-9999.ebuild metadata.xml pass-1.6.1-r1.ebuild ChangeLog

2014-05-09 Thread Jason Donenfeld (zx2c4)
zx2c4   14/05/09 12:10:53

  Modified: pass-.ebuild metadata.xml pass-1.6.1-r1.ebuild
ChangeLog
  Log:
  Install importers behind USE flag.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A5DE03AE)

Revision  ChangesPath
1.15 app-admin/pass/pass-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/pass-.ebuild?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/pass-.ebuild?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/pass-.ebuild?r1=1.14r2=1.15

Index: pass-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/pass/pass-.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- pass-.ebuild9 May 2014 11:48:09 -   1.14
+++ pass-.ebuild9 May 2014 12:10:53 -   1.15
@@ -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-admin/pass/pass-.ebuild,v 1.14 
2014/05/09 11:48:09 zx2c4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/pass-.ebuild,v 1.15 
2014/05/09 12:10:53 zx2c4 Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 SLOT=0
 LICENSE=GPL-2
 KEYWORDS=
-IUSE=+git X zsh-completion fish-completion emacs dmenu elibc_Darwin
+IUSE=+git X zsh-completion fish-completion emacs dmenu importers elibc_Darwin
 
 RDEPEND=
app-crypt/gnupg
@@ -54,10 +54,19 @@
elisp-install ${PN} contrib/emacs/*.el || die
elisp-site-file-install ${FILESDIR}/50${PN}-gentoo.el || die
fi
+   if use importers; then
+   exeinto /usr/share/${PN}/importers
+   doexe contrib/importers/*
+   fi
 }
 
 pkg_postinst() {
use emacs  elisp-site-regen
+   if use importers; then
+   einfo To import passwords from other password managers, you 
may use the
+   einfo various importer scripts found in:
+   einfo ${ROOT}usr/share/${PN}/importers/
+   fi
 }
 
 pkg_postrm() {



1.4  app-admin/pass/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/metadata.xml?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/metadata.xml?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/metadata.xml?r1=1.3r2=1.4

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/pass/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml24 Apr 2014 09:21:50 -  1.3
+++ metadata.xml9 May 2014 12:10:53 -   1.4
@@ -1,25 +1,28 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-  maintainer
-emailzx...@gentoo.org/email
-nameJason A. Donenfeld/name
-  /maintainer
-  longdescription
+   maintainer
+   emailzx...@gentoo.org/email
+   nameJason A. Donenfeld/name
+   /maintainer
+   longdescription
Stores, retrieves, generates, and synchronizes passwords 
securely using gpg, pwgen, and git.
-  /longdescription
-  use
-flag name=X
+   /longdescription
+   use
+   flag name=X
Use pkgx11-misc/xclip/pkg to copy passwords to the 
clipboard.
-   /flag
-flag name=git
+   /flag
+   flag name=git
Use pkgdev-vcs/git/pkg for password revisions.
-   /flag
-flag name=fish-completion
+   /flag
+   flag name=fish-completion
Enable fish completion support.
-   /flag
-   flag name=dmenu
-   Add support for x11-misc/dmenu with the 'passmenu' program.
-   /flag
-  /use
+   /flag
+   flag name=dmenu
+   Add support for x11-misc/dmenu with the 'passmenu' 
program.
+   /flag
+   flag name=importers
+   Allow importing passwords from other password managers 
using various contributed scripts.
+   /flag
+   /use
 /pkgmetadata



1.4  app-admin/pass/pass-1.6.1-r1.ebuild

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

Index: pass-1.6.1-r1.ebuild
===
RCS 

[gentoo-commits] gentoo-x86 commit in mate-base/mate-settings-daemon: mate-settings-daemon-1.8.1.ebuild ChangeLog

2014-05-09 Thread Tom Wijsman (tomwij)
tomwij  14/05/09 12:11:51

  Modified: ChangeLog
  Added:mate-settings-daemon-1.8.1.ebuild
  Log:
  Version bump to 1.8.1.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.6  mate-base/mate-settings-daemon/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-settings-daemon/ChangeLog?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-settings-daemon/ChangeLog?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-settings-daemon/ChangeLog?r1=1.5r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mate-base/mate-settings-daemon/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   4 May 2014 14:54:11 -   1.5
+++ ChangeLog   9 May 2014 12:11:51 -   1.6
@@ -1,6 +1,12 @@
 # ChangeLog for mate-base/mate-settings-daemon
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mate-base/mate-settings-daemon/ChangeLog,v 
1.5 2014/05/04 14:54:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mate-base/mate-settings-daemon/ChangeLog,v 
1.6 2014/05/09 12:11:51 tomwij Exp $
+
+*mate-settings-daemon-1.8.1 (09 May 2014)
+
+  09 May 2014; Tom Wijsman tom...@gentoo.org
+  +mate-settings-daemon-1.8.1.ebuild:
+  Version bump to 1.8.1.
 
   04 May 2014; Agostino Sarubbo a...@gentoo.org
   mate-settings-daemon-1.6.2.ebuild:



1.1  
mate-base/mate-settings-daemon/mate-settings-daemon-1.8.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-settings-daemon/mate-settings-daemon-1.8.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mate-base/mate-settings-daemon/mate-settings-daemon-1.8.1.ebuild?rev=1.1content-type=text/plain

Index: mate-settings-daemon-1.8.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/mate-base/mate-settings-daemon/mate-settings-daemon-1.8.1.ebuild,v
 1.1 2014/05/09 12:11:51 tomwij Exp $

EAPI=5

GCONF_DEBUG=yes
GNOME2_LA_PUNT=yes

inherit eutils gnome2 versionator

MATE_BRANCH=$(get_version_component_range 1-2)

SRC_URI=http://pub.mate-desktop.org/releases/${MATE_BRANCH}/${P}.tar.xz;
DESCRIPTION=MATE Settings Daemon
HOMEPAGE=http://mate-desktop.org;

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

IUSE=X debug libnotify policykit pulseaudio smartcard

RDEPEND==dev-libs/dbus-glib-0.74:0
=dev-libs/glib-2.17.3:2
=mate-base/libmatekbd-1.6.1:0
=mate-base/mate-desktop-1.8.1:0
media-libs/fontconfig:1.0
=gnome-base/dconf-0.13.4:0
x11-libs/cairo:0
x11-libs/gdk-pixbuf:2
=x11-libs/gtk+-2.24:2
x11-libs/libX11:0
x11-libs/libXi:0
x11-libs/libXext:0
x11-libs/libXxf86misc:0
=x11-libs/libxklavier-5:0
virtual/libintl:0
libnotify? ( =x11-libs/libnotify-0.7:0 )
policykit? (
=dev-libs/dbus-glib-0.71:0
=sys-apps/dbus-1.1.2:0
=sys-auth/polkit-0.97:0
)
pulseaudio? (
media-libs/libcanberra:0[gtk]
=media-sound/pulseaudio-0.9.15:0
)
!pulseaudio? (
=media-libs/gstreamer-0.10.1.2:0.10
=media-libs/gst-plugins-base-0.10.1.2:0.10
)
smartcard? ( =dev-libs/nss-3.11.2:0 )

DEPEND=${RDEPEND}
=dev-util/intltool-0.37.1:0
sys-devel/gettext:0
virtual/pkgconfig:0
x11-proto/inputproto:0
x11-proto/xproto:0

src_prepare() {
# More network filesystems not to monitor, upstream bug #606421
epatch ${FILESDIR}/${PN}-1.4.0-netfs-monitor.patch

# mouse: Use event driven mode for syndaemon
epatch ${FILESDIR}/${PN}-1.2.0-syndaemon-mode.patch

gnome2_src_prepare
}

src_configure() {
gnome2_src_configure \
$(use_with libnotify) \
$(use_enable debug) \
$(use_enable policykit polkit) \
$(use_enable pulseaudio pulse) \
$(use_enable !pulseaudio gstreamer) \
$(use_enable smartcard smartcard-support) \
$(use_with X x)

if use pulseaudio; then
elog Building volume media keys using Pulseaudio
else
elog Building volume media keys using GStreamer
fi
}

DOCS=AUTHORS NEWS ChangeLog






[gentoo-commits] gentoo-x86 commit in mail-mta/postfix: postfix-2.12_pre20140508.ebuild postfix-2.11.1.ebuild ChangeLog postfix-2.10.1.ebuild postfix-2.10.0.ebuild postfix-2.12_pre20140406.ebuild

2014-05-09 Thread Eray Aslan (eras)
eras14/05/09 12:12:13

  Modified: ChangeLog
  Added:postfix-2.12_pre20140508.ebuild
postfix-2.11.1.ebuild
  Removed:  postfix-2.10.1.ebuild postfix-2.10.0.ebuild
postfix-2.12_pre20140406.ebuild
  Log:
  Version bump and remove old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x77F1F175586A3B1F)

Revision  ChangesPath
1.503mail-mta/postfix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/ChangeLog?rev=1.503view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/ChangeLog?rev=1.503content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/ChangeLog?r1=1.502r2=1.503

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-mta/postfix/ChangeLog,v
retrieving revision 1.502
retrieving revision 1.503
diff -u -r1.502 -r1.503
--- ChangeLog   7 Apr 2014 05:55:50 -   1.502
+++ ChangeLog   9 May 2014 12:12:13 -   1.503
@@ -1,6 +1,14 @@
 # ChangeLog for mail-mta/postfix
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/ChangeLog,v 1.502 
2014/04/07 05:55:50 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/ChangeLog,v 1.503 
2014/05/09 12:12:13 eras Exp $
+
+*postfix-2.12_pre20140508 (09 May 2014)
+*postfix-2.11.1 (09 May 2014)
+
+  09 May 2014; Eray Aslan e...@gentoo.org +postfix-2.11.1.ebuild,
+  +postfix-2.12_pre20140508.ebuild, -postfix-2.10.0.ebuild,
+  -postfix-2.10.1.ebuild, -postfix-2.12_pre20140406.ebuild:
+  Version bump and remove old
 
 *postfix-2.12_pre20140406 (07 Apr 2014)
 



1.1  mail-mta/postfix/postfix-2.12_pre20140508.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/postfix-2.12_pre20140508.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/postfix-2.12_pre20140508.ebuild?rev=1.1content-type=text/plain

Index: postfix-2.12_pre20140508.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.12_pre20140508.ebuild,v 1.1 
2014/05/09 12:12:13 eras Exp $

EAPI=5
inherit eutils flag-o-matic multilib pam ssl-cert systemd toolchain-funcs user 
versionator

MY_PV=${PV/_pre/-}
MY_SRC=${PN}-${MY_PV}
MY_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/experimental;
VDA_PV=2.10.0
VDA_P=${PN}-vda-v13-${VDA_PV}
RC_VER=2.7

DESCRIPTION=A fast and secure drop-in replacement for sendmail.
HOMEPAGE=http://www.postfix.org/;
SRC_URI=${MY_URI}/${MY_SRC}.tar.gz
vda? ( http://vda.sourceforge.net/VDA/${VDA_P}.patch ) 

LICENSE=IBM
SLOT=0
KEYWORDS=~amd64 ~arm ~hppa ~x86
IUSE=+berkdb cdb doc dovecot-sasl hardened ldap ldap-bind lmdb memcached mbox 
mysql nis pam postgres sasl selinux sqlite ssl vda

DEPEND==dev-libs/libpcre-3.4
dev-lang/perl
berkdb? ( =sys-libs/db-3.2 )
cdb? ( || ( =dev-db/tinycdb-0.76 =dev-db/cdb-0.75-r1 ) )
ldap? ( net-nds/openldap )
ldap-bind? ( net-nds/openldap[sasl] )
lmdb? ( =dev-db/lmdb-0.9.11 )
mysql? ( virtual/mysql )
pam? ( virtual/pam )
postgres? ( dev-db/postgresql-base )
sasl? (  =dev-libs/cyrus-sasl-2 )
sqlite? ( dev-db/sqlite:3 )
ssl? ( =dev-libs/openssl-0.9.6g )

RDEPEND=${DEPEND}
dovecot-sasl? ( net-mail/dovecot )
memcached? ( net-misc/memcached )
net-mail/mailbase
selinux? ( sec-policy/selinux-postfix )
!mail-mta/courier
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp[mta]
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/qmail-ldap
!mail-mta/sendmail
!mail-mta/opensmtpd
!mail-mta/ssmtp-2.64-r2
!=mail-mta/ssmtp-2.64-r2[mta]
!net-mail/fastforward

REQUIRED_USE=ldap-bind? ( ldap sasl )

S=${WORKDIR}/${MY_SRC}

pkg_setup() {
# Add postfix, postdrop user/group (bug #77565)
enewgroup postfix 207
enewgroup postdrop 208
enewuser postfix 207 -1 /var/spool/postfix postfix,mail
}

src_prepare() {
if use vda; then
epatch ${DISTDIR}/${VDA_P}.patch
fi

sed -i -e /^#define ALIAS_DB_MAP/s|:/etc/aliases|:/etc/mail/aliases| \
src/util/sys_defs.h || die sed failed

# change default paths to better comply with portage standard paths
sed -i -e s:/usr/local/:/usr/:g conf/master.cf || die sed failed
}

src_configure() {
# Make sure LDFLAGS get passed down to the executables.
local mycc=-DHAS_PCRE mylibs=${LDFLAGS} -lpcre -lcrypt -lpthread

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

2014-05-09 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/09 12:19:42

  Modified: ChangeLog package.use.mask
  Log:
  Masked kde USE flag for dev-vcs/subversion until bug #509892 is fixed

Revision  ChangesPath
1.52 profiles/arch/amd64-fbsd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64-fbsd/ChangeLog?rev=1.52view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64-fbsd/ChangeLog?rev=1.52content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64-fbsd/ChangeLog?r1=1.51r2=1.52

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/amd64-fbsd/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   16 Apr 2014 23:39:20 -  1.51
+++ ChangeLog   9 May 2014 12:19:41 -   1.52
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/x86-fbsd profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64-fbsd/ChangeLog,v 1.51 
2014/04/16 23:39:20 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64-fbsd/ChangeLog,v 1.52 
2014/05/09 12:19:41 polynomial-c Exp $
+
+  09 May 2014; Lars Wendler polynomia...@gentoo.org package.use.mask:
+  Masked kde USE flag for dev-vcs/subversion until bug #509892 is fixed.
 
   16 Apr 2014; Johannes Huber j...@gentoo.org package.use.mask:
   Mask kde-base/nepomuk-core[migrator], because of unkeyworded dep.



1.19 profiles/arch/amd64-fbsd/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/amd64-fbsd/package.use.mask,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- package.use.mask16 Apr 2014 23:39:20 -  1.18
+++ package.use.mask9 May 2014 12:19:41 -   1.19
@@ -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/amd64-fbsd/package.use.mask,v 
1.18 2014/04/16 23:39:20 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64-fbsd/package.use.mask,v 
1.19 2014/05/09 12:19:41 polynomial-c Exp $
+
+# Lars Wendler polynomia...@gentoo.org (09 May 2014)
+# Masked kde USE flag until bug #509892 is fixed
+dev-vcs/subversion kde
 
 # Johannes Huber j...@gentoo.org (16 Apr 2014)
 # unkeyworded deps






[gentoo-commits] linux-patches r2780 - genpatches-2.6/tags

2014-05-09 Thread Mike Pagano (mpagano)
Author: mpagano
Date: 2014-05-09 12:44:49 + (Fri, 09 May 2014)
New Revision: 2780

Added:
   genpatches-2.6/tags/3.12-20/
Log:
3.12-20 release




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

2014-05-09 Thread Mike Pagano (mpagano)
mpagano 14/05/09 12:55:37

  Modified: ChangeLog
  Added:gentoo-sources-3.12.19.ebuild
  Log:
  Linux patch 3.12.19
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
B576E4E3)

Revision  ChangesPath
1.1313   sys-kernel/gentoo-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v
retrieving revision 1.1312
retrieving revision 1.1313
diff -u -r1.1312 -r1.1313
--- ChangeLog   7 May 2014 18:50:49 -   1.1312
+++ ChangeLog   9 May 2014 12:55:36 -   1.1313
@@ -1,6 +1,11 @@
 # ChangeLog for sys-kernel/gentoo-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1312 2014/05/07 18:50:49 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1313 2014/05/09 12:55:36 mpagano Exp $
+
+*gentoo-sources-3.12.19 (09 May 2014)
+
+  09 May 2014; Mike Pagano mpag...@gentoo.org +gentoo-sources-3.12.19.ebuild:
+  Linux patch 3.12.19
 
   07 May 2014; Mike Pagano mpag...@gentoo.org -gentoo-sources-3.2.55.ebuild,
   -gentoo-sources-3.2.57.ebuild, -gentoo-sources-3.4.85.ebuild,



1.1  sys-kernel/gentoo-sources/gentoo-sources-3.12.19.ebuild

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

Index: gentoo-sources-3.12.19.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.12.19.ebuild,v
 1.1 2014/05/09 12:55:36 mpagano Exp $

EAPI=5
ETYPE=sources
K_WANT_GENPATCHES=base extras experimental
K_GENPATCHES_VER=20
K_DEBLOB_AVAILABLE=1
inherit kernel-2
detect_version
detect_arch

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86
HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches;
IUSE=deblob experimental

DESCRIPTION=Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree
SRC_URI=${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}

pkg_postinst() {
kernel-2_pkg_postinst
einfo For more info on this patchset, and how to report problems, see:
einfo ${HOMEPAGE}
}

pkg_postrm() {
kernel-2_pkg_postrm
}






[gentoo-commits] gentoo-x86 commit in net-libs/serf: ChangeLog serf-1.3.5.ebuild

2014-05-09 Thread Michael Haubenwallner (haubi)
haubi   14/05/09 13:10:17

  Modified: ChangeLog serf-1.3.5.ebuild
  Log:
  serf-1.3.5: add ~x86-linux prefix keyword
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
A630CCB8)

Revision  ChangesPath
1.129net-libs/serf/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/serf/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   30 Apr 2014 23:23:35 -  1.128
+++ ChangeLog   9 May 2014 13:10:17 -   1.129
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/serf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/serf/ChangeLog,v 1.128 2014/04/30 
23:23:35 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/serf/ChangeLog,v 1.129 2014/05/09 
13:10:17 haubi Exp $
+
+  09 May 2014; Michael Haubenwallner ha...@gentoo.org serf-1.3.5.ebuild:
+  add ~x86-linux prefix keyword
 
 *serf-1.3.5 (30 Apr 2014)
 



1.2  net-libs/serf/serf-1.3.5.ebuild

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

Index: serf-1.3.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/serf/serf-1.3.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- serf-1.3.5.ebuild   30 Apr 2014 23:23:35 -  1.1
+++ serf-1.3.5.ebuild   9 May 2014 13:10:17 -   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-libs/serf/serf-1.3.5.ebuild,v 1.1 
2014/04/30 23:23:35 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/serf/serf-1.3.5.ebuild,v 1.2 
2014/05/09 13:10:17 haubi Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=Apache-2.0
 SLOT=1
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos
+KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
 IUSE=kerberos
 
 RDEPEND=dev-libs/apr:1=






[gentoo-commits] gentoo-x86 commit in sys-fs/udev: udev-212-r1.ebuild ChangeLog

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 13:35:01

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

Revision  ChangesPath
1.10 sys-fs/udev/udev-212-r1.ebuild

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

Index: udev-212-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-212-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- udev-212-r1.ebuild  7 May 2014 18:05:23 -   1.9
+++ udev-212-r1.ebuild  9 May 2014 13:35:01 -   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/sys-fs/udev/udev-212-r1.ebuild,v 1.9 
2014/05/07 18:05:23 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-212-r1.ebuild,v 1.10 
2014/05/09 13:35:01 ssuominen Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@

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

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



1.1027   sys-fs/udev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/ChangeLog?rev=1.1027view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/ChangeLog?rev=1.1027content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/ChangeLog?r1=1.1026r2=1.1027

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v
retrieving revision 1.1026
retrieving revision 1.1027
diff -u -r1.1026 -r1.1027
--- ChangeLog   7 May 2014 18:05:23 -   1.1026
+++ ChangeLog   9 May 2014 13:35:01 -   1.1027
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/udev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.1026 2014/05/07 
18:05:23 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.1027 2014/05/09 
13:35:01 ssuominen Exp $
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org udev-212-r1.ebuild:
+  amd64/x86 stable wrt #505952
 
   07 May 2014; Markus Meier mae...@gentoo.org udev-212-r1.ebuild:
   arm stable, bug #505962






[gentoo-commits] gentoo-x86 commit in sci-mathematics/normaliz: normaliz-2.11.ebuild ChangeLog

2014-05-09 Thread Thomas Kahle (tomka)
tomka   14/05/09 13:36:16

  Modified: ChangeLog
  Added:normaliz-2.11.ebuild
  Log:
  Bump to 2.11
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
565C32BC)

Revision  ChangesPath
1.16 sci-mathematics/normaliz/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/normaliz/ChangeLog?rev=1.16view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/normaliz/ChangeLog?rev=1.16content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/normaliz/ChangeLog?r1=1.15r2=1.16

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   27 Jul 2013 14:59:12 -  1.15
+++ ChangeLog   9 May 2014 13:36:16 -   1.16
@@ -1,6 +1,12 @@
 # ChangeLog for sci-mathematics/normaliz
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.15 
2013/07/27 14:59:12 tomka Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.16 
2014/05/09 13:36:16 tomka Exp $
+
+*normaliz-2.11 (09 May 2014)
+
+  09 May 2014; Thomas Kahle to...@gentoo.org
+  +files/normaliz-2.11-respect-flags.patch, +normaliz-2.11.ebuild:
+  Bump to 2.11
 
 *normaliz-2.10.1 (27 Jul 2013)
 



1.1  sci-mathematics/normaliz/normaliz-2.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/normaliz/normaliz-2.11.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/normaliz/normaliz-2.11.ebuild?rev=1.1content-type=text/plain

Index: normaliz-2.11.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sci-mathematics/normaliz/normaliz-2.11.ebuild,v 1.1 
2014/05/09 13:36:16 tomka Exp $

EAPI=5

inherit eutils toolchain-funcs versionator

MYPV=$(get_version_component_range 1-2)
MYP=Normaliz${MYPV}

DESCRIPTION=Tool for computations in affine monoids and more
HOMEPAGE=http://www.mathematik.uni-osnabrueck.de/normaliz/;
SRC_URI=http://www.mathematik.uni-osnabrueck.de/${PN}/${MYP}/${MYP}.zip;

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

RDEPEND=dev-libs/gmp[cxx]
DEPEND=${RDEPEND}
app-arch/unzip
dev-libs/boost
# Only a boost header is needed - not RDEPEND

S=${WORKDIR}/${MYP}

src_prepare () {
epatch ${FILESDIR}/${PN}-${MYPV}-respect-flags.patch

# Respect users AR tool (Bug 474532)
sed -e s:ar -cr:$(tc-getAR) -cr: -i source/libnormaliz/Makefile

if use openmp  tc-has-openmp; then
export OPENMP=yes
else
export OPENMP=no
fi
}

src_compile(){
emake CXX=$(tc-getCXX) OPENMP=${OPENMP} -C source
}

src_install() {
dobin source/normaliz
dodoc doc/Normaliz_${MYPV}.pdf
dodoc doc/NmzIntegrate_1.2.pdf
if use extras; then
elog You have selected to install extras which consist of 
Macaulay2
elog and Singular packages. These have been installed into 
elog /usr/share/${PN}, and cannot be used without additional 
setup. Please refer
elog to the homepages of the respective projects for 
additional information.
elog Note however, Gentoo's versions of Singular and Macaulay2 
bring their own
elog copies of these interface packages. Usually you don't 
need normaliz's versions.
insinto /usr/share/${PN}
doins Singular/normaliz.lib
doins Macaulay2/Normaliz.m2
fi
}






[gentoo-commits] gentoo-x86 commit in sci-mathematics/normaliz/files: normaliz-2.11-respect-flags.patch

2014-05-09 Thread Thomas Kahle (tomka)
tomka   14/05/09 13:36:16

  Added:normaliz-2.11-respect-flags.patch
  Log:
  Bump to 2.11
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
565C32BC)

Revision  ChangesPath
1.1  
sci-mathematics/normaliz/files/normaliz-2.11-respect-flags.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/normaliz/files/normaliz-2.11-respect-flags.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/normaliz/files/normaliz-2.11-respect-flags.patch?rev=1.1content-type=text/plain

Index: normaliz-2.11-respect-flags.patch
===
diff -U 3 -dHrN Normaliz2.11/source/Makefile Normaliz2.11.new/source/Makefile
--- Normaliz2.11/source/Makefile2014-02-24 12:44:10.0 +0100
+++ Normaliz2.11.new/source/Makefile2014-05-09 15:26:52.885085512 +0200
@@ -20,7 +20,7 @@
$(CXX) $(CXXFLAGS) $(NORMFLAGS) -c Normaliz.cpp -o normaliz.o
 
 normaliz: $(SOURCES) $(HEADERS) normaliz.o libnormaliz/libnormaliz.a
-   $(CXX) $(CXXFLAGS) $(NORMFLAGS) normaliz.o libnormaliz/libnormaliz.a 
$(GMPFLAGS) -o normaliz
+   $(CXX) $(CXXFLAGS) $(LDFLAGS) normaliz.o libnormaliz/libnormaliz.a 
$(GMPFLAGS) -o normaliz
 
 normaliz1: $(SOURCES) $(HEADERS) $(LIBHEADERS) $(LIBSOURCES)
$(CXX) $(CXXFLAGS) $(NORMFLAGS) Normaliz-impl.cpp $(GMPFLAGS) -o 
normaliz1
diff -U 3 -dHrN Normaliz2.11/source/Makefile.configuration 
Normaliz2.11.new/source/Makefile.configuration
--- Normaliz2.11/source/Makefile.configuration  2014-04-29 11:06:24.0 
+0200
+++ Normaliz2.11.new/source/Makefile.configuration  2014-05-09 
15:26:52.875085512 +0200
@@ -1,11 +1,9 @@
 ##
 ## Makefile configuration for normaliz
 ##
-CXX = g++ 
 #CXX = linux32 g++ -m32 -march=i686  #compile it for linux32
 CXXFLAGS += -std=c++0x
 CXXFLAGS += -Wall -pedantic
-CXXFLAGS += -O3 -funroll-loops
 #CXXFLAGS += -I /usr/local/boost_1_45_0
 #CXXFLAGS += -g   ## debugging
 #CXXFLAGS += -pg  ## profiling
@@ -19,7 +17,6 @@
 endif
 
 ## for distributing the executables link static (does not work for mac)
-CXXFLAGS += -static
 ## for almost static compilation on Mac use
 #CXXFLAGS += -static-libgcc
 ## make it compatible with older Mac versions






[gentoo-commits] proj/sci:master commit in: sci-mathematics/singular/files/, sci-mathematics/singular/

2014-05-09 Thread Thomas Kahle
commit: 357e0091b086345a6fab8062cf0e1f1a58fad1cc
Author: Thomas Kahle thomas.kahle AT ovgu DOT de
AuthorDate: Fri May  9 13:57:28 2014 +
Commit: Thomas Kahle tom111 AT gmx DOT de
CommitDate: Fri May  9 13:57:28 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=357e0091

Experimental bump to 4.0.0

Package-Manager: portage-2.2.8-r1

---
 sci-mathematics/singular/ChangeLog |  10 ++
 .../singular/files/60singular-gentoo.el|  10 ++
 .../singular-4.0.0-fix-omalloc-ar-detection.patch  |  12 ++
 .../singular/files/singular-4.0.0-gentoo.patch |  65 +
 sci-mathematics/singular/metadata.xml  |  12 ++
 sci-mathematics/singular/singular-4.0.0_p2.ebuild  | 147 +
 6 files changed, 256 insertions(+)

diff --git a/sci-mathematics/singular/ChangeLog 
b/sci-mathematics/singular/ChangeLog
new file mode 100644
index 000..e275fd8
--- /dev/null
+++ b/sci-mathematics/singular/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-mathematics/singular
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*singular-4.0.0_p2 (09 May 2014)
+
+  09 May 2014; Thomas Kahle to...@gentoo.org +files/60singular-gentoo.el,
+  +files/singular-4.0.0-fix-omalloc-ar-detection.patch,
+  +files/singular-4.0.0-gentoo.patch, +metadata.xml, +singular-4.0.0_p2.ebuild:
+  Experimental bump to 4.0.0

diff --git a/sci-mathematics/singular/files/60singular-gentoo.el 
b/sci-mathematics/singular/files/60singular-gentoo.el
new file mode 100644
index 000..7be8c08
--- /dev/null
+++ b/sci-mathematics/singular/files/60singular-gentoo.el
@@ -0,0 +1,10 @@
+
+;; site-file for sci-mathematics/singular
+
+(add-to-list 'load-path @SITELISP@)
+(autoload 'singular singular
+  Start Singular using default values. t)
+(autoload 'singular-other singular
+  Ask for arguments and start Singular. t)
+
+(add-to-list 'auto-mode-alist '(\\.sing\\' . c++-mode))

diff --git 
a/sci-mathematics/singular/files/singular-4.0.0-fix-omalloc-ar-detection.patch 
b/sci-mathematics/singular/files/singular-4.0.0-fix-omalloc-ar-detection.patch
new file mode 100644
index 000..87b4423
--- /dev/null
+++ 
b/sci-mathematics/singular/files/singular-4.0.0-fix-omalloc-ar-detection.patch
@@ -0,0 +1,12 @@
+diff -U 3 -dHrN singular-4.0.0.orig/omalloc/configure.ac 
singular-4.0.0/omalloc/configure.ac
+--- singular-4.0.0.orig/omalloc/configure.ac   2014-03-06 18:07:49.0 
+0100
 singular-4.0.0/omalloc/configure.ac2014-05-09 15:41:19.755097185 
+0200
+@@ -117,7 +117,7 @@
+ dnl check for programs
+ dnl
+ AC_CHECK_PROG(AR, ar, ar, :)
+-if test $ac_cv_prog_AR != ar; then
++if test $ac_cv_prog_AR = no; then
+   AC_MSG_ERROR(*** ar program not found)
+ fi
+ AC_CHECK_PROGS(PERL, perl, no)

diff --git a/sci-mathematics/singular/files/singular-4.0.0-gentoo.patch 
b/sci-mathematics/singular/files/singular-4.0.0-gentoo.patch
new file mode 100644
index 000..ba7b841
--- /dev/null
+++ b/sci-mathematics/singular/files/singular-4.0.0-gentoo.patch
@@ -0,0 +1,65 @@
+--- resources/feResource.cc.orig   2010-04-30 10:20:14.0 +
 resources/feResource.cc2010-10-11 09:19:01.431179334 +
+@@ -41,7 +41,7 @@
+ #define SINGULAR_DEFAULT_DIR /usr/local/Singular/S_VERSION1
+ #endif
+ #else // ! defined(MAKE_DISTRIBUTION)
+-#define SINGULAR_DEFAULT_DIR S_ROOT_DIR
++#define SINGULAR_DEFAULT_DIR @GENTOO_PORTAGE_EPREFIX@/usr
+ #endif // defined(MAKE_DISTRIBUTION)
+ 
+ /*
+@@ -73,33 +73,31 @@
+ {
+   {SearchPath,'s', feResPath,  NULL,
+$SINGULARPATH;
+-   %b/LIB;
+-   %b/MOD;
++   %r/share/singular/MOD;
+%r/LIB;
+-   %r/../LIB;
++   %r/share/singular/LIB;
+%d/LIB;
+-   %d/../LIB
+},
+-  {Singular,  'S',feResBinary,SINGULAR_EXECUTABLE,  
%d/S_UNAME/Singular,(char *)},
+-  {BinDir,'b',feResDir,   SINGULAR_BIN_DIR, %d/S_UNAME, 
  (char *)},
+-  {RootDir,   'r',feResDir,   SINGULAR_ROOT_DIR,%b/..,  
  (char *)},
++  {Singular,  'S',feResBinary,SINGULAR_EXECUTABLE,  
%d/bin/Singular,(char *)},
++  {BinDir,'b',feResDir,   SINGULAR_BIN_DIR, %d/bin, 
  (char *)},
++  {RootDir,   'r',feResDir,   SINGULAR_ROOT_DIR,%d, 
   (char *)},
+   {DefaultDir,'d',feResDir,   SINGULAR_DEFAULT_DIR,  
SINGULAR_DEFAULT_DIR,  (char *)},
+-  {InfoFile,  'i',feResFile,  SINGULAR_INFO_FILE,   
%r/info/singular.hlp, (char *)},
+-  {IdxFile,   'x',feResFile,  SINGULAR_IDX_FILE,
%r/doc/singular.idx,  (char *)},
+-  {HtmlDir,   'h',feResDir,   SINGULAR_HTML_DIR,%r/html,
  (char *)},
++  {InfoFile,  'i',feResFile,  SINGULAR_INFO_FILE,   
%r/share/info/singular.info.bz2, (char *)},
++  {IdxFile,   'x',feResFile,  SINGULAR_IDX_FILE,
%r/share/singular/singular.idx,  (char *)},
++  {HtmlDir,   'h',feResDir,   SINGULAR_HTML_DIR,

[gentoo-commits] gentoo-x86 commit in net-wireless/bluez: bluez-4.101-r9.ebuild bluez-5.18-r1.ebuild ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 13:59:20

  Modified: ChangeLog
  Added:bluez-4.101-r9.ebuild bluez-5.18-r1.ebuild
  Log:
  Introduce multilib support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.203net-wireless/bluez/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/ChangeLog?rev=1.203view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/ChangeLog?rev=1.203content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/ChangeLog?r1=1.202r2=1.203

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/bluez/ChangeLog,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -r1.202 -r1.203
--- ChangeLog   4 May 2014 12:13:02 -   1.202
+++ ChangeLog   9 May 2014 13:59:20 -   1.203
@@ -1,6 +1,13 @@
 # ChangeLog for net-wireless/bluez
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/ChangeLog,v 1.202 
2014/05/04 12:13:02 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/ChangeLog,v 1.203 
2014/05/09 13:59:20 mgorny Exp $
+
+*bluez-5.18-r1 (09 May 2014)
+*bluez-4.101-r9 (09 May 2014)
+
+  09 May 2014; Michał Górny mgo...@gentoo.org +bluez-4.101-r9.ebuild,
+  +bluez-5.18-r1.ebuild:
+  Introduce multilib support.
 
   04 May 2014; Pacho Ramos pa...@gentoo.org bluez-5.18.ebuild:
   x86 stable, bug 508862



1.1  net-wireless/bluez/bluez-4.101-r9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/bluez-4.101-r9.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/bluez-4.101-r9.ebuild?rev=1.1content-type=text/plain

Index: bluez-4.101-r9.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/bluez-4.101-r9.ebuild,v 
1.1 2014/05/09 13:59:20 mgorny Exp $

EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit autotools eutils multilib python-single-r1 readme.gentoo \
systemd user multilib-minimal

DESCRIPTION=Bluetooth Tools and System Daemons for Linux
HOMEPAGE=http://www.bluez.org/;
SRC_URI=mirror://kernel/linux/bluetooth/${P}.tar.xz
http://dev.gentoo.org/~pacho/bluez/${P}-patches.tar.xz;

LICENSE=GPL-2 LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
IUSE=alsa cups debug gstreamer hid2hci pcmcia readline selinux test-programs 
usb

REQUIRED_USE=test-programs? ( ${PYTHON_REQUIRED_USE} )

# TODO: revisit USE=gstreamer once gstreamer is ported to multilib

CDEPEND=
=dev-libs/glib-2.28:2
=sys-apps/dbus-1.6:=
=sys-apps/hwids-20121202.2
=virtual/udev-171
alsa? (

media-libs/alsa-lib:=[${MULTILIB_USEDEP},alsa_pcm_plugins_extplug(+),alsa_pcm_plugins_ioplug(+)]
media-libs/libsndfile:=
)
cups? ( net-print/cups:= )
gstreamer? (
=media-libs/gstreamer-0.10:0.10
=media-libs/gst-plugins-base-0.10:0.10
)
readline? ( sys-libs/readline:= )
selinux? ( sec-policy/selinux-bluetooth )
usb? ( virtual/libusb:0 )

DEPEND=${CDEPEND}
sys-devel/flex
virtual/pkgconfig[${MULTILIB_USEDEP}]
test-programs? ( =dev-libs/check-0.9.6 )

RDEPEND=${CDEPEND}
test-programs? (
=dev-python/dbus-python-1
dev-python/pygobject:2
dev-python/pygobject:3
${PYTHON_DEPS}
)
abi_x86_32? (
!app-emulation/emul-linux-x86-soundlibs-20140406-r1
!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32]
)


DOCS=( AUTHORS ChangeLog README )

DOC_CONTENTS=
If you want to use rfcomm as a normal user, you need to add the user
to the uucp group.


pkg_setup() {
enewgroup plugdev
use test-programs  python-single-r1_pkg_setup
}

src_prepare() {
# Fedora patches
epatch ${WORKDIR}/${P}-patches/*.patch

# Use static group plugdev if there is no ConsoleKit (or systemd 
logind)
epatch ${FILESDIR}/bluez-plugdev.patch

sed -e s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/ -i configure.ac || die

eautoreconf

if use cups; then
sed -i \
-e s:cupsdir = \$(libdir)/cups:cupsdir = `cups-config 
--serverbin`: \
Makefile.{in,tools} || die
fi

multilib_copy_sources
}

multilib_src_configure() {
local myconf=(
ac_cv_header_readline_readline_h=$(multilib_native_usex 
readline)
)

if ! multilib_is_native_abi; 

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

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 13:59:34

  Modified: ChangeLog package.mask
  Log:
  Mask multilib bluez.

Revision  ChangesPath
1.8935   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8934
retrieving revision 1.8935
diff -u -r1.8934 -r1.8935
--- ChangeLog   8 May 2014 12:54:48 -   1.8934
+++ ChangeLog   9 May 2014 13:59:33 -   1.8935
@@ -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.8934 2014/05/08 
12:54:48 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8935 2014/05/09 
13:59:33 mgorny 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!
 
+  09 May 2014; Michał Górny mgo...@gentoo.org package.mask:
+  Mask multilib bluez.
+
   08 May 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
   targets/desktop/package.use:
   Enable x11-libs/libxcb[xkb] by default in the desktop profile.



1.15662  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15661
retrieving revision 1.15662
diff -u -r1.15661 -r1.15662
--- package.mask8 May 2014 11:54:26 -   1.15661
+++ package.mask9 May 2014 13:59:33 -   1.15662
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15661 2014/05/08 
11:54:26 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15662 2014/05/09 
13:59:33 mgorny 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
@@ -592,6 +592,9 @@
 =media-libs/sdl-mixer-1.2.12-r4
 =media-libs/sdl2-mixer-2.0.0-r1
 =app-emulation/emul-linux-x86-sdl-20140406-r2
+=net-wireless/bluez-4.101-r9
+=net-wireless/bluez-5.18-r1
+=app-emulation/emul-linux-x86-soundlibs-20140406-r1
 
 # Luca Barbato lu_z...@gentoo.org (20 Feb 2014)
 # Beta ebuild, unmask to test the tree.






[gentoo-commits] gentoo-x86 commit in app-text/stardict: stardict-3.0.4.ebuild ChangeLog

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 14:17:37

  Modified: ChangeLog
  Added:stardict-3.0.4.ebuild
  Log:
  Version bump wrt #451730 by Agostino Sarubbo
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.34 app-text/stardict/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/stardict/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   5 Jan 2014 11:34:39 -   1.33
+++ ChangeLog   9 May 2014 14:17:37 -   1.34
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/stardict
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/stardict/ChangeLog,v 1.33 
2014/01/05 11:34:39 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/stardict/ChangeLog,v 1.34 
2014/05/09 14:17:37 ssuominen Exp $
+
+*stardict-3.0.4 (09 May 2014)
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org +stardict-3.0.4.ebuild:
+  Version bump wrt #451730 by Agostino Sarubbo
 
   05 Jan 2014; Pacho Ramos pa...@gentoo.org metadata.xml:
   Cleanup due http://gentoo.2317880.n4.nabble.com/app-dicts-herd-is-empty-



1.1  app-text/stardict/stardict-3.0.4.ebuild

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

Index: stardict-3.0.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/stardict/stardict-3.0.4.ebuild,v 
1.1 2014/05/09 14:17:36 ssuominen Exp $

EAPI=5

# NOTE: Even though the *.dict.dz are the same as dictd/freedict's files,
#   their indexes seem to be in a different format. So we'll keep them
#   seperate for now.

# NOTE: Festival plugin crashes, bug 188684. Disable for now.

GNOME2_LA_PUNT=yes
GCONF_DEBUG=no

inherit eutils gnome2

DESCRIPTION=A international dictionary supporting fuzzy and glob style 
matching
HOMEPAGE=http://code.google.com/p/stardict-3/;
SRC_URI=http://${PN}-3.googlecode.com/files/${P}.tar.bz2
pronounce? ( 
http://${PN}-3.googlecode.com/files/WyabdcRealPeopleTTS.tar.bz2 )
qqwry? ( mirror://gentoo/QQWry.Dat.bz2 )

LICENSE=CPL-1.0 GPL-3 LGPL-2
SLOT=0
KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86
IUSE=espeak gnome gucharmap qqwry pronounce spell tools

RESTRICT=test

COMMON_DEPEND==dev-libs/glib-2.16
dev-libs/libsigc++:2
sys-libs/zlib
=x11-libs/gtk+-2.20:2
gnome? (
=gnome-base/libbonobo-2
=gnome-base/libgnome-2
=gnome-base/libgnomeui-2
=gnome-base/gconf-2
=gnome-base/orbit-2
)
gucharmap? ( =gnome-extra/gucharmap-2.22.1:0 )
spell? ( =app-text/enchant-1.2 )
tools? (
dev-libs/libpcre
dev-libs/libxml2
virtual/mysql
)
RDEPEND=${COMMON_DEPEND}
espeak? ( =app-accessibility/espeak-1.29 )
DEPEND=${COMMON_DEPEND}
app-text/docbook-xml-dtd:4.3
app-text/gnome-doc-utils
dev-libs/libxslt
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig

src_prepare() {
epatch ${FILESDIR}/${PN}-3.0.3-zlib-1.2.5.2.patch

# error: undefined reference to 'g_module_symbol' wrt #451730#c6
sed -i -e '/DEP_MODULES/s:glib-2.0:gmodule-2.0 :' dict/configure || die

gnome2_src_prepare
}

src_configure() {
gnome2_src_configure \
$(use_enable tools) \
--disable-scrollkeeper \
$(use_enable spell) \
$(use_enable gucharmap) \
--disable-festival \
$(use_enable espeak) \
$(use_enable qqwry) \
--disable-updateinfo \
$(use_enable gnome gnome-support) \
--disable-gpe-support \
--disable-schemas-install
}

src_install() {
gnome2_src_install

dodoc 
dict/doc/{Documentation,FAQ,HACKING,HowToCreateDictionary,Skins,StarDictFileFormat,Translation}

if use qqwry; then
insinto /usr/share/${PN}/data
doins ../QQWry.Dat
fi

if use pronounce; then
docinto WyabdcRealPeopleTTS
dodoc 

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

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 14:27:44

  Modified: ChangeLog package.mask
  Log:
  Mask multilib alsa-oss  alsa-plugins.

Revision  ChangesPath
1.8936   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8935
retrieving revision 1.8936
diff -u -r1.8935 -r1.8936
--- ChangeLog   9 May 2014 13:59:33 -   1.8935
+++ ChangeLog   9 May 2014 14:27:44 -   1.8936
@@ -1,12 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8935 2014/05/09 
13:59:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8936 2014/05/09 
14:27:44 mgorny 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!
 
   09 May 2014; Michał Górny mgo...@gentoo.org package.mask:
+  Mask multilib alsa-oss  alsa-plugins.
+
+  09 May 2014; Michał Górny mgo...@gentoo.org package.mask:
   Mask multilib bluez.
 
   08 May 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org



1.15663  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15662
retrieving revision 1.15663
diff -u -r1.15662 -r1.15663
--- package.mask9 May 2014 13:59:33 -   1.15662
+++ package.mask9 May 2014 14:27:44 -   1.15663
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15662 2014/05/09 
13:59:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15663 2014/05/09 
14:27:44 mgorny 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
@@ -592,6 +592,8 @@
 =media-libs/sdl-mixer-1.2.12-r4
 =media-libs/sdl2-mixer-2.0.0-r1
 =app-emulation/emul-linux-x86-sdl-20140406-r2
+=media-libs/alsa-oss-1.0.25-r1
+=media-plugins/alsa-plugins-1.0.27-r1
 =net-wireless/bluez-4.101-r9
 =net-wireless/bluez-5.18-r1
 =app-emulation/emul-linux-x86-soundlibs-20140406-r1






[gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: alsa-plugins-1.0.27-r2.ebuild ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 14:28:45

  Modified: ChangeLog
  Added:alsa-plugins-1.0.27-r2.ebuild
  Log:
  Introduce multilib support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.193media-plugins/alsa-plugins/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/alsa-plugins/ChangeLog?rev=1.193view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/alsa-plugins/ChangeLog?rev=1.193content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/alsa-plugins/ChangeLog?r1=1.192r2=1.193

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
retrieving revision 1.192
retrieving revision 1.193
diff -u -r1.192 -r1.193
--- ChangeLog   5 Apr 2014 19:20:01 -   1.192
+++ ChangeLog   9 May 2014 14:28:44 -   1.193
@@ -1,6 +1,11 @@
 # ChangeLog for media-plugins/alsa-plugins
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 
1.192 2014/04/05 19:20:01 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 
1.193 2014/05/09 14:28:44 mgorny Exp $
+
+*alsa-plugins-1.0.27-r2 (09 May 2014)
+
+  09 May 2014; Michał Górny mgo...@gentoo.org +alsa-plugins-1.0.27-r2.ebuild:
+  Introduce multilib support.
 
   05 Apr 2014; Samuli Suominen ssuomi...@gentoo.org
   -alsa-plugins-1.0.26.ebuild, -alsa-plugins-1.0.27.ebuild,



1.1  media-plugins/alsa-plugins/alsa-plugins-1.0.27-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.27-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.27-r2.ebuild?rev=1.1content-type=text/plain

Index: alsa-plugins-1.0.27-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.27-r2.ebuild,v
 1.1 2014/05/09 14:28:44 mgorny Exp $

EAPI=5
inherit autotools eutils flag-o-matic multilib multilib-minimal

DESCRIPTION=ALSA extra plugins
HOMEPAGE=http://www.alsa-project.org/;
SRC_URI=mirror://alsaproject/plugins/${P}.tar.bz2

LICENSE=GPL-2 LGPL-2.1
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-linux
IUSE=debug ffmpeg jack libsamplerate pulseaudio speex

# TODO: handle USE=ffmpeg once it is converted

RDEPEND==media-libs/alsa-lib-${PV}:=[${MULTILIB_USEDEP}]
ffmpeg? ( virtual/ffmpeg )
jack? ( 
=media-sound/jack-audio-connection-kit-0.98[${MULTILIB_USEDEP}] )
libsamplerate? ( media-libs/libsamplerate:=[${MULTILIB_USEDEP}] )
pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
speex? ( media-libs/speex:=[${MULTILIB_USEDEP}] )
abi_x86_32? (
!app-emulation/emul-linux-x86-soundlibs-20140406-r1
!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32]
)
DEPEND=${RDEPEND}
virtual/pkgconfig

src_prepare() {
epatch \
${FILESDIR}/${PN}-1.0.19-missing-avutil.patch \
${FILESDIR}/${PN}-1.0.23-automagic.patch \
${FILESDIR}/${P}-{ffmpeg,ffmpeg-version-check}.patch

epatch_user

# For some reasons the polyp/pulse plugin does fail with alsaplayer 
with a
# failed assert. As the code works just fine with asserts disabled, for 
now
# disable them waiting for a better solution.
sed -i \
-e '/AM_CFLAGS/s:-Wall:-DNDEBUG -Wall:' \
pulse/Makefile.am || die

eautoreconf
}

multilib_src_configure() {
use debug || append-cppflags -DNDEBUG

local myspeex=no
use speex  myspeex=lib

ECONF_SOURCE=${S} \
econf \
$(multilib_native_use_enable ffmpeg avcodec) \
$(use_enable jack) \
$(use_enable libsamplerate samplerate) \
$(use_enable pulseaudio) \
--with-speex=${myspeex}
}

src_install_all() {
einstalldocs

cd doc || die
dodoc upmix.txt vdownmix.txt README-pcm-oss
use jack  dodoc README-jack
use libsamplerate  dodoc samplerate.txt
use ffmpeg  dodoc lavcrate.txt a52.txt

if use pulseaudio; then
dodoc README-pulse
# install ALSA configuration files
# making PA to be used by alsa clients
insinto /usr/share/alsa
doins ${FILESDIR}/pulse-default.conf
insinto /usr/share/alsa/alsa.conf.d
doins 

[gentoo-commits] gentoo-x86 commit in media-libs/alsa-oss: alsa-oss-1.0.25-r1.ebuild ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 14:32:19

  Modified: ChangeLog
  Added:alsa-oss-1.0.25-r1.ebuild
  Log:
  Introduce multilib support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.129media-libs/alsa-oss/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-oss/ChangeLog?rev=1.129view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-oss/ChangeLog?rev=1.129content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-oss/ChangeLog?r1=1.128r2=1.129

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   14 Jul 2013 15:33:52 -  1.128
+++ ChangeLog   9 May 2014 14:32:19 -   1.129
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/alsa-oss
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/ChangeLog,v 1.128 
2013/07/14 15:33:52 ssuominen Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/ChangeLog,v 1.129 
2014/05/09 14:32:19 mgorny Exp $
+
+*alsa-oss-1.0.25-r1 (09 May 2014)
+
+  09 May 2014; Michał Górny mgo...@gentoo.org +alsa-oss-1.0.25-r1.ebuild:
+  Introduce multilib support.
 
   14 Jul 2013; Samuli Suominen ssuomi...@gentoo.org -alsa-oss-1.0.17.ebuild:
   old



1.1  media-libs/alsa-oss/alsa-oss-1.0.25-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-oss/alsa-oss-1.0.25-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-oss/alsa-oss-1.0.25-r1.ebuild?rev=1.1content-type=text/plain

Index: alsa-oss-1.0.25-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-libs/alsa-oss/alsa-oss-1.0.25-r1.ebuild,v 1.1 
2014/05/09 14:32:17 mgorny Exp $

EAPI=5

inherit autotools eutils multilib multilib-minimal

MY_P=${P/_rc/rc}
S=${WORKDIR}/${MY_P}

DESCRIPTION=Advanced Linux Sound Architecture OSS compatibility layer.
HOMEPAGE=http://www.alsa-project.org/;
SRC_URI=mirror://alsaproject/oss-lib/${MY_P}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=static-libs

RDEPEND==media-libs/alsa-lib-${PV}[${MULTILIB_USEDEP}]
abi_x86_32? (
!app-emulation/emul-linux-x86-soundlibs-20140406-r1
!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32]
)
DEPEND=${RDEPEND}
PATCHES=( ${FILESDIR}/${PN}-1.0.12-hardened.patch )

multilib_src_configure() {
ECONF_SOURCE=${S} \
econf \
$(use_enable static-libs static)
}

src_prepare() {
eautoreconf
}

multilib_src_install_all() {
einstalldocs
prune_libtool_files --all
sed -i -e 's:\${exec_prefix}/\\$LIB/::' ${D}/usr/bin/aoss || die
}






[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-soundlibs/files: remove-native-20140508

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 14:41:16

  Removed:  remove-native-20140508
  Log:
  Update. All packages are multilib now.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)



[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-soundlibs: emul-linux-x86-soundlibs-20140508.ebuild emul-linux-x86-soundlibs-20140406-r1.ebuild ChangeLog

2014-05-09 Thread Michal Gorny (mgorny)
mgorny  14/05/09 14:41:16

  Modified: emul-linux-x86-soundlibs-20140508.ebuild ChangeLog
  Added:emul-linux-x86-soundlibs-20140406-r1.ebuild
  Log:
  Update. All packages are multilib now.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  
app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild?r1=1.1r2=1.2

Index: emul-linux-x86-soundlibs-20140508.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- emul-linux-x86-soundlibs-20140508.ebuild8 May 2014 21:49:00 -   
1.1
+++ emul-linux-x86-soundlibs-20140508.ebuild9 May 2014 14:41:16 -   
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-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild,v
 1.1 2014/05/08 21:49:00 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild,v
 1.2 2014/05/09 14:41:16 mgorny Exp $
 
 EAPI=5
 inherit emul-linux-x86
@@ -38,6 +38,9 @@
=media-libs/portaudio-19_pre2021-r1[abi_x86_32(-)]
=media-sound/mpg123-1.15.4-r1[abi_x86_32(-)]
=media-libs/libao-1.1.0-r1[abi_x86_32(-)]
+   =media-libs/alsa-oss-1.0.25-r1[abi_x86_32(-)]
+   =media-plugins/alsa-plugins-1.0.27-r2[abi_x86_32(-)]
+   =net-wireless/bluez-5.18-r1[abi_x86_32(-)]
pulseaudio? ( =media-sound/pulseaudio-4.0-r1[abi_x86_32(-)] )
)
 
@@ -50,16 +53,9 @@
 }
 
 src_prepare() {
-   _ALLOWED=${S}/etc/env.d
-   use alsa  _ALLOWED=${_ALLOWED}|${S}/usr/bin/aoss
-   ALLOWED=(${_ALLOWED})
-
-   emul-linux-x86_src_prepare
-
-   if use alsa; then
-   mv -f ${S}/usr/bin/aoss{,32} || die
-   fi
+   use abi_x86_32 || emul-linux-x86_src_prepare
+}
 
-   # Remove migrated stuff.
-   use abi_x86_32  rm -f $(sed ${FILESDIR}/remove-native-${PVR} -e 
'/^#/d')
+src_install() {
+   use abi_x86_32 || emul-linux-x86_src_install
 }



1.119app-emulation/emul-linux-x86-soundlibs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog?rev=1.119view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog?rev=1.119content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog?r1=1.118r2=1.119

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog   9 May 2014 07:53:45 -   1.118
+++ ChangeLog   9 May 2014 14:41:16 -   1.119
@@ -1,6 +1,13 @@
 # ChangeLog for app-emulation/emul-linux-x86-soundlibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 
1.118 2014/05/09 07:53:45 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 
1.119 2014/05/09 14:41:16 mgorny Exp $
+
+*emul-linux-x86-soundlibs-20140406-r1 (09 May 2014)
+
+  09 May 2014; Michał Górny mgo...@gentoo.org
+  +emul-linux-x86-soundlibs-20140406-r1.ebuild, -files/remove-native-20140508,
+  emul-linux-x86-soundlibs-20140508.ebuild:
+  Update. All packages are multilib now.
 
   09 May 2014; Michał Górny mgo...@gentoo.org files/remove-native-20140508:
   Update remove-native wrt library soname changes.



1.1  
app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild?rev=1.1content-type=text/plain

Index: emul-linux-x86-soundlibs-20140406-r1.ebuild

[gentoo-commits] gentoo-x86 commit in sys-fs/udev-init-scripts: udev-init-scripts-26-r2.ebuild ChangeLog

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 15:35:27

  Modified: udev-init-scripts-26-r2.ebuild ChangeLog
  Log:
  amd64/x86 stable wrt #507070
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.5  sys-fs/udev-init-scripts/udev-init-scripts-26-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-26-r2.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-26-r2.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-26-r2.ebuild?r1=1.4r2=1.5

Index: udev-init-scripts-26-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-26-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- udev-init-scripts-26-r2.ebuild  18 Apr 2014 05:40:55 -  1.4
+++ udev-init-scripts-26-r2.ebuild  9 May 2014 15:35:27 -   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-fs/udev-init-scripts/udev-init-scripts-26-r2.ebuild,v
 1.4 2014/04/18 05:40:55 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-26-r2.ebuild,v
 1.5 2014/05/09 15:35:27 ssuominen Exp $
 
 EAPI=5
 
@@ -20,7 +20,7 @@
 
 if [ ${PV} !=  ]; then
SRC_URI=http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2;
-   KEYWORDS=~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86
+   KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86
 fi
 
 RESTRICT=test



1.96 sys-fs/udev-init-scripts/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?rev=1.96view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?rev=1.96content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?r1=1.95r2=1.96

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog   18 Apr 2014 05:40:55 -  1.95
+++ ChangeLog   9 May 2014 15:35:27 -   1.96
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/udev-init-scripts
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.95 
2014/04/18 05:40:55 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.96 
2014/05/09 15:35:27 ssuominen Exp $
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org
+  udev-init-scripts-26-r2.ebuild:
+  amd64/x86 stable wrt #507070
 
   18 Apr 2014; Markus Meier mae...@gentoo.org udev-init-scripts-26-r2.ebuild:
   arm stable, bug #507070






[gentoo-commits] gentoo-x86 commit in net-misc/netifrc: netifrc-0.2.2.ebuild ChangeLog

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 15:36:49

  Modified: netifrc-0.2.2.ebuild ChangeLog
  Log:
  amd64/x86 stable wrt #507070
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.4  net-misc/netifrc/netifrc-0.2.2.ebuild

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

Index: netifrc-0.2.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/netifrc/netifrc-0.2.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- netifrc-0.2.2.ebuild18 Apr 2014 05:40:32 -  1.3
+++ netifrc-0.2.2.ebuild9 May 2014 15:36:48 -   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-misc/netifrc/netifrc-0.2.2.ebuild,v 1.3 
2014/04/18 05:40:32 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/netifrc/netifrc-0.2.2.ebuild,v 1.4 
2014/05/09 15:36:48 ssuominen Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
inherit git-2
 else
SRC_URI=http://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS=~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
+   KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
 fi
 
 LICENSE=BSD-2



1.27 net-misc/netifrc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/netifrc/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   18 Apr 2014 05:40:32 -  1.26
+++ ChangeLog   9 May 2014 15:36:48 -   1.27
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/netifrc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/netifrc/ChangeLog,v 1.26 
2014/04/18 05:40:32 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/netifrc/ChangeLog,v 1.27 
2014/05/09 15:36:48 ssuominen Exp $
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org netifrc-0.2.2.ebuild:
+  amd64/x86 stable wrt #507070
 
   18 Apr 2014; Markus Meier mae...@gentoo.org netifrc-0.2.2.ebuild:
   arm stable, bug #507070






[gentoo-commits] gentoo-x86 commit in app-emacs/emacs-common-gentoo: emacs-common-gentoo-1.4-r1.ebuild ChangeLog

2014-05-09 Thread Jeroen Roovers (jer)
jer 14/05/09 15:54:28

  Modified: emacs-common-gentoo-1.4-r1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #509830).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  
app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.4-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.4-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.4-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.4-r1.ebuild?r1=1.1r2=1.2

Index: emacs-common-gentoo-1.4-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.4-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- emacs-common-gentoo-1.4-r1.ebuild   5 May 2014 07:03:21 -   1.1
+++ emacs-common-gentoo-1.4-r1.ebuild   9 May 2014 15:54:28 -   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-emacs/emacs-common-gentoo/emacs-common-gentoo-1.4-r1.ebuild,v
 1.1 2014/05/05 07:03:21 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.4-r1.ebuild,v
 1.2 2014/05/09 15:54:28 jer Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3+
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
 IUSE=games X
 
 PDEPEND=virtual/emacs



1.99 app-emacs/emacs-common-gentoo/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog   5 May 2014 07:03:22 -   1.98
+++ ChangeLog   9 May 2014 15:54:28 -   1.99
@@ -1,6 +1,10 @@
 # ChangeLog for app-emacs/emacs-common-gentoo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/ChangeLog,v 
1.98 2014/05/05 07:03:22 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/ChangeLog,v 
1.99 2014/05/09 15:54:28 jer Exp $
+
+  09 May 2014; Jeroen Roovers j...@gentoo.org
+  emacs-common-gentoo-1.4-r1.ebuild:
+  Stable for HPPA (bug #509830).
 
 *emacs-common-gentoo-1.4-r1 (05 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-util/android-ndk: android-ndk-9d.ebuild metadata.xml ChangeLog

2014-05-09 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/09 16:00:06

  Modified: metadata.xml ChangeLog
  Added:android-ndk-9d.ebuild
  Log:
  version bump / move myself from proxy-maintainers to maintainers
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.6  dev-util/android-ndk/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/android-ndk/metadata.xml?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/android-ndk/metadata.xml?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/android-ndk/metadata.xml?r1=1.5r2=1.6

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/android-ndk/metadata.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- metadata.xml27 Sep 2013 15:45:53 -  1.5
+++ metadata.xml9 May 2014 16:00:06 -   1.6
@@ -1,7 +1,6 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-   herdproxy-maintainers/herd
maintainer
emailcar...@gentoo.org/email
nameDoug Goldstein/name
@@ -11,7 +10,6 @@
maintainer
emailpiatli...@gmail.com/email
nameJauhien Piatlicki/name
-   descriptionProxy maintainer/description
/maintainer
 
use



1.12 dev-util/android-ndk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/android-ndk/ChangeLog?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/android-ndk/ChangeLog?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/android-ndk/ChangeLog?r1=1.11r2=1.12

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/android-ndk/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   3 Jan 2014 17:14:54 -   1.11
+++ ChangeLog   9 May 2014 16:00:06 -   1.12
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/android-ndk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/android-ndk/ChangeLog,v 1.11 
2014/01/03 17:14:54 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/android-ndk/ChangeLog,v 1.12 
2014/05/09 16:00:06 jauhien Exp $
+
+*android-ndk-9d (09 May 2014)
+
+  09 May 2014; Jauhien Piatlicki jauh...@gentoo.org +android-ndk-9d.ebuild,
+  metadata.xml:
+  version bump / move myself from proxy-maintainers to maintainers
 
 *android-ndk-9c (03 Jan 2014)
 



1.1  dev-util/android-ndk/android-ndk-9d.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/android-ndk/android-ndk-9d.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/android-ndk/android-ndk-9d.ebuild?rev=1.1content-type=text/plain

Index: android-ndk-9d.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/android-ndk/android-ndk-9d.ebuild,v 
1.1 2014/05/09 16:00:06 jauhien Exp $

EAPI=5

MY_P=${PN}-r${PV}

DESCRIPTION=Open Handset Alliance's Android NDK (Native Dev Kit)
HOMEPAGE=http://developer.android.com/sdk/ndk/;
SRC_URI=x86? ( http://dl.google.com/android/ndk/${MY_P}-linux-x86.tar.bz2 )
amd64? ( http://dl.google.com/android/ndk/${MY_P}-linux-x86_64.tar.bz2 
)

LICENSE=android
SLOT=0
KEYWORDS=~amd64 ~x86
RESTRICT=mirror strip installsources test

DEPEND=
RDEPEND==dev-util/android-sdk-update-manager-10
=sys-devel/make-3.81

S=${WORKDIR}/${MY_P}

ANDROID_NDK_DIR=opt/${PN}

QA_PREBUILT=*

src_configure() {
:
}

src_compile() {
:
}

src_install() {
dodir /${ANDROID_NDK_DIR}
cp -pPR * ${ED}/${ANDROID_NDK_DIR} || die

fowners -R root:android /${ANDROID_NDK_DIR}
fperms 0775 /${ANDROID_NDK_DIR}/{,build,docs,platforms,samples}
fperms 0775 /${ANDROID_NDK_DIR}/{sources,tests,toolchains}

dodir /${ANDROID_NDK_DIR}/out
fowners root:android /${ANDROID_NDK_DIR}/out
fperms 3775 /${ANDROID_NDK_DIR}/out

ANDROID_PREFIX=${EPREFIX}/${ANDROID_NDK_DIR}
ANDROID_PATH=${EPREFIX}/${ANDROID_NDK_DIR}

for i in toolchains/*/prebuilt/linux-*/bin
do
ANDROID_PATH=${ANDROID_PATH}:${ANDROID_PREFIX}/${i}
done

printf '%s' \
PATH=\${ANDROID_PATH}\ \
$'\n' \
 ${T}/80${PN}  || die

doenvd ${T}/80${PN}

echo SEARCH_DIRS_MASK=\${EPREFIX}/${ANDROID_NDK_DIR}\ \
 ${T}/80${PN} || 

[gentoo-commits] gentoo-x86 commit in media-libs/libmikmod: libmikmod-3.3.6.ebuild ChangeLog

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 16:02:16

  Modified: libmikmod-3.3.6.ebuild ChangeLog
  Log:
  Update REQUIRED_USE to match current IUSE wrt #508956 by Thomas
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  media-libs/libmikmod/libmikmod-3.3.6.ebuild

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

Index: libmikmod-3.3.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libmikmod-3.3.6.ebuild  21 Mar 2014 21:48:11 -  1.1
+++ libmikmod-3.3.6.ebuild  9 May 2014 16:02:16 -   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/libmikmod/libmikmod-3.3.6.ebuild,v 1.1 
2014/03/21 21:48:11 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.6.ebuild,v 1.2 
2014/05/09 16:02:16 ssuominen Exp $
 
 EAPI=5
 inherit eutils multilib-minimal
@@ -14,7 +14,7 @@
 KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
 IUSE=+alsa altivec coreaudio debug nas openal oss pulseaudio sse2 static-libs 
+threads
 
-REQUIRED_USE=|| ( alsa oss coreaudio )
+REQUIRED_USE=|| ( alsa coreaudio nas openal oss pulseaudio )
 
 RDEPEND=alsa? ( media-libs/alsa-lib:=[${MULTILIB_USEDEP}] )
nas? ( media-libs/nas:=[${MULTILIB_USEDEP}] )
@@ -35,7 +35,7 @@
mysimd=$(use_enable sse2 simd)
fi
 
-   # sdl, sdl2: missing multilib supported ebuilds, temporarily disabled
+   # sdl, sdl2: missing multilib supported ebuilds, temporarily disabled, 
remember to update REQUIRED_USE
ECONF_SOURCE=${S} \
econf \
$(use_enable alsa) \



1.119media-libs/libmikmod/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmikmod/ChangeLog?rev=1.119view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmikmod/ChangeLog?rev=1.119content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmikmod/ChangeLog?r1=1.118r2=1.119

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog   21 Apr 2014 16:06:44 -  1.118
+++ ChangeLog   9 May 2014 16:02:16 -   1.119
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libmikmod
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v 1.118 
2014/04/21 16:06:44 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v 1.119 
2014/05/09 16:02:16 ssuominen Exp $
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org libmikmod-3.3.6.ebuild:
+  Update REQUIRED_USE to match current IUSE wrt #508956 by Thomas
 
   21 Apr 2014; Chema Alonso nim...@gentoo.org libmikmod-3.3.5.ebuild:
   Stable for amd64 wrt bug #495798






[gentoo-commits] gentoo-x86 commit in media-libs/libmikmod: ChangeLog libmikmod-3.3.3.ebuild libmikmod-3.3.2.ebuild libmikmod-3.2.0-r1.ebuild libmikmod-3.3.4.ebuild

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 16:04:27

  Modified: ChangeLog
  Removed:  libmikmod-3.3.3.ebuild libmikmod-3.3.2.ebuild
libmikmod-3.2.0-r1.ebuild libmikmod-3.3.4.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.120media-libs/libmikmod/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmikmod/ChangeLog?rev=1.120view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmikmod/ChangeLog?rev=1.120content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmikmod/ChangeLog?r1=1.119r2=1.120

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog   9 May 2014 16:02:16 -   1.119
+++ ChangeLog   9 May 2014 16:04:27 -   1.120
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/libmikmod
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v 1.119 
2014/05/09 16:02:16 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v 1.120 
2014/05/09 16:04:27 ssuominen Exp $
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org
+  -libmikmod-3.2.0-r1.ebuild, -libmikmod-3.3.2.ebuild, -libmikmod-3.3.3.ebuild,
+  -libmikmod-3.3.4.ebuild:
+  old
 
   09 May 2014; Samuli Suominen ssuomi...@gentoo.org libmikmod-3.3.6.ebuild:
   Update REQUIRED_USE to match current IUSE wrt #508956 by Thomas






[gentoo-commits] gentoo-x86 commit in media-sound/mikmod: ChangeLog mikmod-3.2.4.ebuild mikmod-3.2.3.ebuild

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 16:05:46

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

Revision  ChangesPath
1.34 media-sound/mikmod/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mikmod/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   21 Apr 2014 16:08:34 -  1.33
+++ ChangeLog   9 May 2014 16:05:46 -   1.34
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/mikmod
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mikmod/ChangeLog,v 1.33 
2014/04/21 16:08:34 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mikmod/ChangeLog,v 1.34 
2014/05/09 16:05:46 ssuominen Exp $
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org -mikmod-3.2.3.ebuild,
+  -mikmod-3.2.4.ebuild:
+  old
 
   21 Apr 2014; Chema Alonso nim...@gentoo.org mikmod-3.2.5.ebuild:
   Stable for amd64 wrt bug #495798






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

2014-05-09 Thread Michael Palimaka
commit: 86f1b3e1d9dce62520463a73b7684bc3a19291c1
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:21:51 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:21:51 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=86f1b3e1

[metadata/layout.conf] Set profile-layouts.

---
 metadata/layout.conf | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/metadata/layout.conf b/metadata/layout.conf
index bd7df73..674efcd 100644
--- a/metadata/layout.conf
+++ b/metadata/layout.conf
@@ -24,3 +24,6 @@ eapis-banned = 0 1 2 3 4
 
 # indicate that ebuilds with the specified EAPIs are deprecated
 # eapis-deprecated = 5
+
+# Support package.* directories as well as files
+profile-formats = portage-2



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

2014-05-09 Thread Michael Palimaka
commit: cea8fdf7cdc7620fc1af57428ce1607a52bcdc80
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:18:35 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:18:35 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=cea8fdf7

[metadata/layout.conf] Whitespace.

---
 metadata/layout.conf | 8 
 1 file changed, 8 insertions(+)

diff --git a/metadata/layout.conf b/metadata/layout.conf
index 144587a..bd7df73 100644
--- a/metadata/layout.conf
+++ b/metadata/layout.conf
@@ -1,18 +1,26 @@
 masters = gentoo
+
 # Use new hashes
 manifest-hashes = SHA256 SHA512 WHIRLPOOL
+
 # Do not update changelogs
 update-changelog = false
+
 # Use thin manifests
 thin-manifests = true
+
 # Dont sign thin manifests. There is no current policy for git commit signing
 sign-manifests = false
+
 # sign commits using git mechanisms
 sign-commits = true
+
 # Make egencache generate newer (more reliable)
 # md5-dict cache format (see bug #409445).
 cache-formats = md5-dict
+
 # indicate that ebuilds with the specified EAPIs are banned
 eapis-banned = 0 1 2 3 4
+
 # indicate that ebuilds with the specified EAPIs are deprecated
 # eapis-deprecated = 5



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

2014-05-09 Thread Michael Palimaka
commit: b347c2108108cf0010002ed1038e34d71238abf6
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:23:50 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:23:50 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b347c210

[profiles/package.mask] Make package.mask a directory.

This allows us to avoid having to manually run regenerate-files
for every change.

---
 profiles/package.mask  | 149 -
 .../calligra-2.8.2 |   0
 .../{package.mask.d = package.mask}/kf5-beta-1|   0
 .../{package.mask.d = package.mask}/kf5-beta-2|   0
 .../{package.mask.d = package.mask}/kf5-extra |   0
 .../{package.mask.d = package.mask}/qt-gstreamer  |   0
 profiles/{package.mask.d = package.mask}/virtuoso |   0
 7 files changed, 149 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
deleted file mode 100644
index bd9486a..000
--- a/profiles/package.mask
+++ /dev/null
@@ -1,149 +0,0 @@
-# Autogenerated by regenerate-files, DO NOT EDIT.
-# Edit profiles/package.mask.d/ files instead.
-
-# Johannes Huber j...@gentoo.org (04 May 2014)
-# Upstream release is broken. Fails to build.
-# Needs further investigation.
-~app-office/calligra-2.8.2
-~app-office/calligra-l10n-2.8.2
-
-# Mask KF5 alpha 2 due to cross-overlay dependencies
-~kde-frameworks/attica-4.98.0
-~kde-frameworks/frameworkintegration-4.98.0
-~kde-frameworks/kactivities-4.98.0
-~kde-frameworks/kapidox-4.98.0
-~kde-frameworks/karchive-4.98.0
-~kde-frameworks/kauth-4.98.0
-~kde-frameworks/kbookmarks-4.98.0
-~kde-frameworks/kcmutils-4.98.0
-~kde-frameworks/kcodecs-4.98.0
-~kde-frameworks/kcompletion-4.98.0
-~kde-frameworks/kconfig-4.98.0
-~kde-frameworks/kconfigwidgets-4.98.0
-~kde-frameworks/kcoreaddons-4.98.0
-~kde-frameworks/kcrash-4.98.0
-~kde-frameworks/kdbusaddons-4.98.0
-~kde-frameworks/kdeclarative-4.98.0
-~kde-frameworks/kded-4.98.0
-~kde-frameworks/kdelibs4support-4.98.0
-~kde-frameworks/kdesignerplugin-4.98.0
-~kde-frameworks/kdesu-4.98.0
-~kde-frameworks/kdewebkit-4.98.0
-~kde-frameworks/kdnssd-4.98.0
-~kde-frameworks/kdoctools-4.98.0
-~kde-frameworks/kemoticons-4.98.0
-~kde-frameworks/kf5umbrella-4.98.0
-~kde-frameworks/kfileaudiopreview-4.98.0
-~kde-frameworks/kglobalaccel-4.98.0
-~kde-frameworks/kguiaddons-4.98.0
-~kde-frameworks/khtml-4.98.0
-~kde-frameworks/ki18n-4.98.0
-~kde-frameworks/kiconthemes-4.98.0
-~kde-frameworks/kidletime-4.98.0
-~kde-frameworks/kimageformats-4.98.0
-~kde-frameworks/kinit-4.98.0
-~kde-frameworks/kio-4.98.0
-~kde-frameworks/kitemmodels-4.98.0
-~kde-frameworks/kitemviews-4.98.0
-~kde-frameworks/kjobwidgets-4.98.0
-~kde-frameworks/kjs-4.98.0
-~kde-frameworks/kjsembed-4.98.0
-~kde-frameworks/kmediaplayer-4.98.0
-~kde-frameworks/knewstuff-4.98.0
-~kde-frameworks/knotifications-4.98.0
-~kde-frameworks/knotifyconfig-4.98.0
-~kde-frameworks/kparts-4.98.0
-~kde-frameworks/kplotting-4.98.0
-~kde-frameworks/kpty-4.98.0
-~kde-frameworks/kross-4.98.0
-~kde-frameworks/krunner-4.98.0
-~kde-frameworks/kservice-4.98.0
-~kde-frameworks/ktexteditor-4.98.0
-~kde-frameworks/ktextwidgets-4.98.0
-~kde-frameworks/kunitconversion-4.98.0
-~kde-frameworks/kwallet-4.98.0
-~kde-frameworks/kwidgetsaddons-4.98.0
-~kde-frameworks/kwindowsystem-4.98.0
-~kde-frameworks/kxmlgui-4.98.0
-~kde-frameworks/plasma-4.98.0
-~kde-frameworks/solid-4.98.0
-~kde-frameworks/sonnet-4.98.0
-~kde-frameworks/threadweaver-4.98.0
-
-# Mask KF5 beta 2 due to being unreleased
-~dev-libs/extra-cmake-modules-0.0.13
-~kde-frameworks/attica-4.99.0
-~kde-frameworks/frameworkintegration-4.99.0
-~kde-frameworks/kactivities-4.99.0
-~kde-frameworks/kapidox-4.99.0
-~kde-frameworks/karchive-4.99.0
-~kde-frameworks/kauth-4.99.0
-~kde-frameworks/kbookmarks-4.99.0
-~kde-frameworks/kcmutils-4.99.0
-~kde-frameworks/kcodecs-4.99.0
-~kde-frameworks/kcompletion-4.99.0
-~kde-frameworks/kconfig-4.99.0
-~kde-frameworks/kconfigwidgets-4.99.0
-~kde-frameworks/kcoreaddons-4.99.0
-~kde-frameworks/kcrash-4.99.0
-~kde-frameworks/kdbusaddons-4.99.0
-~kde-frameworks/kdeclarative-4.99.0
-~kde-frameworks/kded-4.99.0
-~kde-frameworks/kdelibs4support-4.99.0
-~kde-frameworks/kdesignerplugin-4.99.0
-~kde-frameworks/kdesu-4.99.0
-~kde-frameworks/kdewebkit-4.99.0
-~kde-frameworks/kdnssd-4.99.0
-~kde-frameworks/kdoctools-4.99.0
-~kde-frameworks/kemoticons-4.99.0
-~kde-frameworks/kf5umbrella-4.99.0
-~kde-frameworks/kfileaudiopreview-4.99.0
-~kde-frameworks/kglobalaccel-4.99.0
-~kde-frameworks/kguiaddons-4.99.0
-~kde-frameworks/khtml-4.99.0
-~kde-frameworks/ki18n-4.99.0
-~kde-frameworks/kiconthemes-4.99.0
-~kde-frameworks/kidletime-4.99.0
-~kde-frameworks/kimageformats-4.99.0
-~kde-frameworks/kinit-4.99.0
-~kde-frameworks/kio-4.99.0
-~kde-frameworks/kitemmodels-4.99.0
-~kde-frameworks/kitemviews-4.99.0
-~kde-frameworks/kjobwidgets-4.99.0
-~kde-frameworks/kjs-4.99.0

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

2014-05-09 Thread Michael Palimaka
commit: 22457d13383d6fcd8aa4f64f9009f8931e676584
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:25:54 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:25:54 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=22457d13

[Documentation] Stop generating package.mask

Since we set profile-formats = portage, we can use package.mask
as a directory so we don't need to regenerate it every time.

---
 Documentation/maintainers/regenerate-files | 13 -
 1 file changed, 13 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index eba9f57..d877373 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -113,19 +113,6 @@ for release in $KF_RELEASES live; do
 done
 popd  /dev/null
 
-# regenerate package mask
-pushd ../../profiles/  /dev/null
-echo -e \
-${HEADER}
-# Edit profiles/package.mask.d/ files instead.  package.mask
-if [[ -d package.mask.d ]]; then
-   for masks in package.mask.d/*; do
-   echo  package.mask
-   cat ${masks}  package.mask
-   done
-fi
-popd  /dev/null
-
 # regenerate unversioned sets
 pushd ../../sets/  /dev/null
 for set in *-${RELEASE}; do



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

2014-05-09 Thread Michael Palimaka
commit: 08f15d5e824966288bfe12e1495f74fba5185738
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:29:10 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:29:14 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=08f15d5e

[profiles/package.mask] Update mask message and remove package that no longer 
needs to be masked.

extra-cmake-modules doesn't have cross-overlay dependencies
so does not need to be unmasked since it is now released.

---
 profiles/package.mask/kf5-beta-2 | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/profiles/package.mask/kf5-beta-2 b/profiles/package.mask/kf5-beta-2
index 1fb37ae..1906384 100644
--- a/profiles/package.mask/kf5-beta-2
+++ b/profiles/package.mask/kf5-beta-2
@@ -1,5 +1,4 @@
-# Mask KF5 beta 2 due to being unreleased
-~dev-libs/extra-cmake-modules-0.0.13
+# Mask KF5 beta 2 due to cross-overlay dependencies.
 ~kde-frameworks/attica-4.99.0
 ~kde-frameworks/frameworkintegration-4.99.0
 ~kde-frameworks/kactivities-4.99.0



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

2014-05-09 Thread Michael Palimaka
commit: 39233f1f9a8ec9a70c001866d7b82b1e915f819d
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:27:27 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:27:27 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=39233f1f

[profiles/package.mask] Remove obsolete mask.

---
 profiles/package.mask/kf5-beta-1 | 62 
 1 file changed, 62 deletions(-)

diff --git a/profiles/package.mask/kf5-beta-1 b/profiles/package.mask/kf5-beta-1
deleted file mode 100644
index 412c1ec..000
--- a/profiles/package.mask/kf5-beta-1
+++ /dev/null
@@ -1,62 +0,0 @@
-# Mask KF5 alpha 2 due to cross-overlay dependencies
-~kde-frameworks/attica-4.98.0
-~kde-frameworks/frameworkintegration-4.98.0
-~kde-frameworks/kactivities-4.98.0
-~kde-frameworks/kapidox-4.98.0
-~kde-frameworks/karchive-4.98.0
-~kde-frameworks/kauth-4.98.0
-~kde-frameworks/kbookmarks-4.98.0
-~kde-frameworks/kcmutils-4.98.0
-~kde-frameworks/kcodecs-4.98.0
-~kde-frameworks/kcompletion-4.98.0
-~kde-frameworks/kconfig-4.98.0
-~kde-frameworks/kconfigwidgets-4.98.0
-~kde-frameworks/kcoreaddons-4.98.0
-~kde-frameworks/kcrash-4.98.0
-~kde-frameworks/kdbusaddons-4.98.0
-~kde-frameworks/kdeclarative-4.98.0
-~kde-frameworks/kded-4.98.0
-~kde-frameworks/kdelibs4support-4.98.0
-~kde-frameworks/kdesignerplugin-4.98.0
-~kde-frameworks/kdesu-4.98.0
-~kde-frameworks/kdewebkit-4.98.0
-~kde-frameworks/kdnssd-4.98.0
-~kde-frameworks/kdoctools-4.98.0
-~kde-frameworks/kemoticons-4.98.0
-~kde-frameworks/kf5umbrella-4.98.0
-~kde-frameworks/kfileaudiopreview-4.98.0
-~kde-frameworks/kglobalaccel-4.98.0
-~kde-frameworks/kguiaddons-4.98.0
-~kde-frameworks/khtml-4.98.0
-~kde-frameworks/ki18n-4.98.0
-~kde-frameworks/kiconthemes-4.98.0
-~kde-frameworks/kidletime-4.98.0
-~kde-frameworks/kimageformats-4.98.0
-~kde-frameworks/kinit-4.98.0
-~kde-frameworks/kio-4.98.0
-~kde-frameworks/kitemmodels-4.98.0
-~kde-frameworks/kitemviews-4.98.0
-~kde-frameworks/kjobwidgets-4.98.0
-~kde-frameworks/kjs-4.98.0
-~kde-frameworks/kjsembed-4.98.0
-~kde-frameworks/kmediaplayer-4.98.0
-~kde-frameworks/knewstuff-4.98.0
-~kde-frameworks/knotifications-4.98.0
-~kde-frameworks/knotifyconfig-4.98.0
-~kde-frameworks/kparts-4.98.0
-~kde-frameworks/kplotting-4.98.0
-~kde-frameworks/kpty-4.98.0
-~kde-frameworks/kross-4.98.0
-~kde-frameworks/krunner-4.98.0
-~kde-frameworks/kservice-4.98.0
-~kde-frameworks/ktexteditor-4.98.0
-~kde-frameworks/ktextwidgets-4.98.0
-~kde-frameworks/kunitconversion-4.98.0
-~kde-frameworks/kwallet-4.98.0
-~kde-frameworks/kwidgetsaddons-4.98.0
-~kde-frameworks/kwindowsystem-4.98.0
-~kde-frameworks/kxmlgui-4.98.0
-~kde-frameworks/plasma-4.98.0
-~kde-frameworks/solid-4.98.0
-~kde-frameworks/sonnet-4.98.0
-~kde-frameworks/threadweaver-4.98.0



[gentoo-commits] proj/kde:master commit in: media-fonts/oxygen-fonts/

2014-05-09 Thread Michael Palimaka
commit: 9b056c7a47a82ee8761026c91e4f433957bb7549
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:32:09 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:32:09 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9b056c7a

[media-fonts/oxygen-fonts] Fix version.

Package-Manager: portage-2.2.8-r1

---
 .../{oxygen-fonts-3.95.0.ebuild = oxygen-fonts-0.3.95.ebuild}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/oxygen-fonts/oxygen-fonts-3.95.0.ebuild 
b/media-fonts/oxygen-fonts/oxygen-fonts-0.3.95.ebuild
similarity index 91%
rename from media-fonts/oxygen-fonts/oxygen-fonts-3.95.0.ebuild
rename to media-fonts/oxygen-fonts/oxygen-fonts-0.3.95.ebuild
index fbeced7..caeb18b 100644
--- a/media-fonts/oxygen-fonts/oxygen-fonts-3.95.0.ebuild
+++ b/media-fonts/oxygen-fonts/oxygen-fonts-0.3.95.ebuild
@@ -8,7 +8,7 @@ inherit cmake-utils font
 
 DESCRIPTION=Desktop/GUI font family for integrated use with the KDE desktop
 HOMEPAGE=https://projects.kde.org/projects/playground/artwork/oxygen-fonts;
-SRC_URI=mirror://kde/unstable/plasma/${PV}/${P}.tar.xz
+SRC_URI=mirror://kde/unstable/plasma/4.95.0/${P}.tar.xz
 
 LICENSE=OFL-1.1
 SLOT=0



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

2014-05-09 Thread Michael Palimaka
commit: fa76d600546fe714d4de386a9b7b5952c9088d5a
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:33:00 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:33:04 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=fa76d600

[profiles/package.mask] Remove obsolete mask.

Package is released now.

---
 profiles/package.mask/kf5-extra | 2 --
 1 file changed, 2 deletions(-)

diff --git a/profiles/package.mask/kf5-extra b/profiles/package.mask/kf5-extra
deleted file mode 100644
index 1da7170..000
--- a/profiles/package.mask/kf5-extra
+++ /dev/null
@@ -1,2 +0,0 @@
-# Unreleased
-~media-fonts/oxygen-fonts-3.95.0



[gentoo-commits] proj/kde:master commit in: media-fonts/oxygen-fonts/

2014-05-09 Thread Michael Palimaka
commit: 6f0211a90bb64ff6ad79cbeedb217e1f2ee0fc41
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:53:47 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:53:47 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=6f0211a9

[media-fonts/oxygen-fonts] Version bump.

Package-Manager: portage-2.2.8-r1

---
 .../oxygen-fonts/oxygen-fonts-0.3.96.ebuild| 34 ++
 1 file changed, 34 insertions(+)

diff --git a/media-fonts/oxygen-fonts/oxygen-fonts-0.3.96.ebuild 
b/media-fonts/oxygen-fonts/oxygen-fonts-0.3.96.ebuild
new file mode 100644
index 000..33434c3
--- /dev/null
+++ b/media-fonts/oxygen-fonts/oxygen-fonts-0.3.96.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils font
+
+DESCRIPTION=Desktop/GUI font family for integrated use with the KDE desktop
+HOMEPAGE=https://projects.kde.org/projects/playground/artwork/oxygen-fonts;
+SRC_URI=mirror://kde/unstable/plasma/4.96.0/${P}.tar.xz
+
+LICENSE=OFL-1.1
+SLOT=0
+KEYWORDS=~amd64
+IUSE=
+
+DEPEND=
+   dev-libs/extra-cmake-modules
+   media-gfx/fontforge
+
+
+src_configure() {
+   local mycmakeargs=(
+   -DOXYGEN_FONT_INSTALL_DIR=${FONTDIR}
+   )
+
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   font_src_install
+}



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

2014-05-09 Thread Michael Palimaka
commit: 1def7dacfba135ed6b8459ef117df0aa1e0a4ede
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 17:53:03 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 17:53:03 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1def7dac

[profiles/package.mask] Mask unreleased Plasma Next 4.96.0

---
 profiles/package.mask/plasma-next | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/profiles/package.mask/plasma-next 
b/profiles/package.mask/plasma-next
new file mode 100644
index 000..8b71227
--- /dev/null
+++ b/profiles/package.mask/plasma-next
@@ -0,0 +1,19 @@
+# Michael Palimaka kensing...@gentoo.org (09 May 2014)
+# Unreleased.
+~media-fonts/oxygen-fonts-0.3.96
+~kde-base/baloo-4.96.0
+~kde-base/breeze-4.96.0
+~kde-base/kde-cli-tools-4.96.0
+~kde-base/khelpcenter-4.96.0
+~kde-base/khotkeys-4.96.0
+~kde-base/kinfocenter-4.96.0
+~kde-base/kio-extras-4.96.0
+~kde-base/kmenuedit-4.96.0
+~kde-base/ksysguard-4.96.0
+~kde-base/kwin-4.96.0
+~kde-base/kwrited-4.96.0
+~kde-base/libksysguard-4.96.0
+~kde-base/oxygen-4.96.0
+~kde-base/plasma-desktop-4.96.0
+~kde-base/plasma-workspace-4.96.0
+~kde-base/systemsettings-4.96.0



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

2014-05-09 Thread Michael Palimaka
commit: 7fd2628275c84c5987eb39a3fe5adf573f278695
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 18:11:02 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 18:11:53 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=7fd26282

[sets] Update kde-workspaces-live.

---
 sets/kde-workspaces-live | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sets/kde-workspaces-live b/sets/kde-workspaces-live
index 7c0724d..d5cd96b 100644
--- a/sets/kde-workspaces-live
+++ b/sets/kde-workspaces-live
@@ -1,9 +1,11 @@
+~kde-base/baloo-
 ~kde-base/breeze-
 ~kde-base/kde-cli-tools-
 ~kde-base/khelpcenter-
 ~kde-base/khotkeys-
 ~kde-base/kinfocenter-
 ~kde-base/kio-extras-
+~kde-base/kmenuedit-
 ~kde-base/ksysguard-
 ~kde-base/kwin-
 ~kde-base/kwrited-



[gentoo-commits] proj/kde:master commit in: kde-base/kwin/, kde-base/baloo/, kde-base/ksysguard/, kde-base/plasma-desktop/, ...

2014-05-09 Thread Michael Palimaka
commit: b5e469633f2598a02c77c80e59ac7eeb37b9d8d5
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 18:15:52 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 18:15:52 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b5e46963

[kde-base] Add Plasma Next 4.96.0

---
 kde-base/baloo/baloo-4.96.0.ebuild |  46 +
 kde-base/breeze/breeze-4.96.0.ebuild   |  13 +++
 kde-base/kde-cli-tools/kde-cli-tools-4.96.0.ebuild |  39 +++
 kde-base/khelpcenter/khelpcenter-4.96.0.ebuild |  40 
 kde-base/khotkeys/khotkeys-4.96.0.ebuild   |  41 
 kde-base/kinfocenter/kinfocenter-4.96.0.ebuild |  69 +
 kde-base/kio-extras/kio-extras-4.96.0.ebuild   |  65 
 kde-base/kmenuedit/kmenuedit-4.96.0.ebuild |  44 
 kde-base/ksysguard/ksysguard-4.96.0.ebuild |  47 +
 kde-base/kwin/kwin-4.96.0.ebuild   |  80 +++
 kde-base/kwrited/kwrited-4.96.0.ebuild |  23 +
 kde-base/libksysguard/libksysguard-4.96.0.ebuild   |  53 ++
 kde-base/oxygen/oxygen-4.96.0.ebuild   |  33 ++
 .../plasma-desktop/plasma-desktop-4.96.0.ebuild|  99 ++
 .../plasma-workspace-4.96.0.ebuild | 112 +
 .../systemsettings/systemsettings-4.96.0.ebuild|  39 +++
 16 files changed, 843 insertions(+)

diff --git a/kde-base/baloo/baloo-4.96.0.ebuild 
b/kde-base/baloo/baloo-4.96.0.ebuild
new file mode 100644
index 000..b1a2686
--- /dev/null
+++ b/kde-base/baloo/baloo-4.96.0.ebuild
@@ -0,0 +1,46 @@
+# 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=Framework for searching and managing metadata
+KEYWORDS= ~amd64 ~x86 ~amd64-linux ~x86-linux
+IUSE=
+
+# TODO re-enable kdepim integration
+DEPEND=
+   $(add_frameworks_dep kauth)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kidletime)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep krunner)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep solid)
+   $(add_kdebase_dep kfilemetadata)
+   dev-libs/qjson
+   =dev-libs/xapian-1.2*[chert]
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtsql:5
+   dev-qt/qtwidgets:5
+   sys-apps/attr
+   !kde-base/nepomuk-4.12.50
+
+RDEPEND=${DEPEND}
+   !kde-base/baloo:4
+
+
+src_configure() {
+   local mycmakeargs=( -DKDEPIM_SUPPORT_BUILD=OFF )
+
+   kde5_src_configure
+}

diff --git a/kde-base/breeze/breeze-4.96.0.ebuild 
b/kde-base/breeze/breeze-4.96.0.ebuild
new file mode 100644
index 000..c8448b1
--- /dev/null
+++ b/kde-base/breeze/breeze-4.96.0.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_DEBUG=false
+inherit kde5
+
+DESCRIPTION=Breeze visual style for the Plasma desktop
+HOMEPAGE=https://projects.kde.org/projects/kde/workspace/breeze;
+KEYWORDS= ~amd64 ~x86 ~amd64-linux ~x86-linux
+IUSE=

diff --git a/kde-base/kde-cli-tools/kde-cli-tools-4.96.0.ebuild 
b/kde-base/kde-cli-tools/kde-cli-tools-4.96.0.ebuild
new file mode 100644
index 000..f0ab4d6
--- /dev/null
+++ b/kde-base/kde-cli-tools/kde-cli-tools-4.96.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_TEST=true
+VIRTUALX_REQUIRED=test
+inherit kde5
+
+DESCRIPTION=Tools based on KDE Frameworks 5 to better interact with the 
system
+HOMEPAGE=https://projects.kde.org/projects/kde/workspace/kde-cli-tools;
+KEYWORDS= ~amd64 ~x86 ~amd64-linux ~x86-linux
+IUSE=
+
+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 kdesu)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+
+RDEPEND=${DEPEND}
+
+# requires running kde environment
+RESTRICT=test

diff --git a/kde-base/khelpcenter/khelpcenter-4.96.0.ebuild 

[gentoo-commits] gentoo-x86 commit in sys-apps/policycoreutils: ChangeLog policycoreutils-2.2.5-r4.ebuild policycoreutils-2.3_rc1-r1.ebuild

2014-05-09 Thread Sven Vermeulen (swift)
swift   14/05/09 18:39:16

  Modified: ChangeLog
  Added:policycoreutils-2.2.5-r4.ebuild
policycoreutils-2.3_rc1-r1.ebuild
  Log:
  Do not build seunshare/sesandbox anymore, we do not use it anyway. See also 
bug #509896
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2EDD52403B68AF47)

Revision  ChangesPath
1.134sys-apps/policycoreutils/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog   28 Apr 2014 19:44:09 -  1.133
+++ ChangeLog   9 May 2014 18:39:16 -   1.134
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/policycoreutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.133 
2014/04/28 19:44:09 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.134 
2014/05/09 18:39:16 swift Exp $
+
+*policycoreutils-2.3_rc1-r1 (09 May 2014)
+
+  09 May 2014; Sven Vermeulen sw...@gentoo.org
+  +policycoreutils-2.2.5-r4.ebuild, +policycoreutils-2.3_rc1-r1.ebuild:
+  Do not build seunshare/sesandbox, cfr bug #509896
 
 *policycoreutils-2.3_rc1 (28 Apr 2014)
 



1.1  sys-apps/policycoreutils/policycoreutils-2.2.5-r4.ebuild

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

Index: policycoreutils-2.2.5-r4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/policycoreutils/policycoreutils-2.2.5-r4.ebuild,v
 1.1 2014/05/09 18:39:16 swift Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=xml

inherit multilib python-r1 toolchain-funcs eutils

EXTRAS_VER=1.31
SEMNG_VER=2.2
SELNX_VER=2.2
SEPOL_VER=2.2

IUSE=audit pam dbus

DESCRIPTION=SELinux core utilities
HOMEPAGE=http://userspace.selinuxproject.org;
SRC_URI=http://userspace.selinuxproject.org/releases/20131030/${P}.tar.gz
http://dev.gentoo.org/~swift/patches/policycoreutils/patchbundle-${P}-gentoo-r1.tar.gz
mirror://gentoo/policycoreutils-extra-${EXTRAS_VER}.tar.bz2

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

COMMON_DEPS==sys-libs/libselinux-${SELNX_VER}[python]
=sys-libs/glibc-2.4
=sys-libs/libcap-1.10-r10
=sys-libs/libsemanage-${SEMNG_VER}[python]
sys-libs/libcap-ng
=sys-libs/libsepol-${SEPOL_VER}
sys-devel/gettext
dev-python/ipy
dbus? (
sys-apps/dbus
dev-libs/dbus-glib
)
audit? ( =sys-process/audit-1.5.1 )
pam? ( sys-libs/pam )
${PYTHON_DEPS}

### libcgroup - seunshare
### dbus - restorecond

# pax-utils for scanelf used by rlpkg
RDEPEND=${COMMON_DEPS}
dev-python/sepolgen
app-misc/pax-utils

DEPEND=${COMMON_DEPS}

S1=${WORKDIR}/${P}
S2=${WORKDIR}/policycoreutils-extra

src_prepare() {
# rlpkg is more useful than fixfiles
sed -i -e '/^all/s/fixfiles//' ${S}/scripts/Makefile \
|| die fixfiles sed 1 failed
sed -i -e '/fixfiles/d' ${S}/scripts/Makefile \
|| die fixfiles sed 2 failed

EPATCH_MULTI_MSG=Applying policycoreutils patches ...  \
EPATCH_SUFFIX=patch \
EPATCH_SOURCE=${WORKDIR}/gentoo-patches \
EPATCH_FORCE=yes \
epatch

epatch_user

python_copy_sources
# Our extra code is outside the regular directory, so set it to the 
extra
# directory. We really should optimize this as it is ugly, but the extra
# code is needed for Gentoo at the same time that policycoreutils is 
present
# (so we cannot use an additional package for now).
S=${S2}
python_copy_sources
}

src_compile() {
local use_audit=n;
local use_pam=n;
local use_dbus=n;
local use_sesandbox=n;

use audit  use_audit=y;
use pam  use_pam=y;
use dbus  use_dbus=y;

building() {
emake -C ${BUILD_DIR} AUDIT_LOG_PRIVS=y 
AUDITH=${use_audit} PAMH=${use_pam} INOTIFYH=${use_dbus} 
SESANDBOX=${use_sesandbox} CC=$(tc-getCC) 

[gentoo-commits] gentoo-x86 commit in dev-python/unidecode: ChangeLog unidecode-0.04.14.ebuild

2014-05-09 Thread Jeroen Roovers (jer)
jer 14/05/09 18:44:48

  Modified: ChangeLog unidecode-0.04.14.ebuild
  Log:
  Stable for HPPA (bug #509790).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.14 dev-python/unidecode/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/unidecode/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   7 May 2014 15:12:52 -   1.13
+++ ChangeLog   9 May 2014 18:44:48 -   1.14
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/unidecode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/unidecode/ChangeLog,v 1.13 
2014/05/07 15:12:52 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/unidecode/ChangeLog,v 1.14 
2014/05/09 18:44:48 jer Exp $
+
+  09 May 2014; Jeroen Roovers j...@gentoo.org unidecode-0.04.14.ebuild:
+  Stable for HPPA (bug #509790).
 
   07 May 2014; Jeroen Roovers j...@gentoo.org unidecode-0.04.14.ebuild,
   metadata.xml:



1.5  dev-python/unidecode/unidecode-0.04.14.ebuild

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

Index: unidecode-0.04.14.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/unidecode/unidecode-0.04.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- unidecode-0.04.14.ebuild7 May 2014 15:12:52 -   1.4
+++ unidecode-0.04.14.ebuild9 May 2014 18:44:48 -   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/dev-python/unidecode/unidecode-0.04.14.ebuild,v 1.4 
2014/05/07 15:12:52 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/unidecode/unidecode-0.04.14.ebuild,v 1.5 
2014/05/09 18:44:48 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 )
@@ -16,7 +16,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~hppa ~x86
+KEYWORDS=~amd64 hppa ~x86
 
 S=${WORKDIR}/${MY_P}
 






[gentoo-commits] gentoo-x86 commit in sci-calculators/units: units-2.11.ebuild ChangeLog

2014-05-09 Thread Jeroen Roovers (jer)
jer 14/05/09 18:45:26

  Modified: units-2.11.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #509790).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  sci-calculators/units/units-2.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/units/units-2.11.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/units/units-2.11.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/units/units-2.11.ebuild?r1=1.1r2=1.2

Index: units-2.11.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-calculators/units/units-2.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- units-2.11.ebuild   3 Apr 2014 00:56:47 -   1.1
+++ units-2.11.ebuild   9 May 2014 18:45:26 -   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/sci-calculators/units/units-2.11.ebuild,v 
1.1 2014/04/03 00:56:47 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-calculators/units/units-2.11.ebuild,v 
1.2 2014/05/09 18:45:26 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
 
 LICENSE=FDL-1.3 GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=~amd64 hppa ~x86 ~amd64-linux ~x86-linux
 IUSE=+units_cur
 
 DEPEND=



1.72 sci-calculators/units/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/units/ChangeLog?rev=1.72view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/units/ChangeLog?rev=1.72content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/units/ChangeLog?r1=1.71r2=1.72

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-calculators/units/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   4 Apr 2014 15:28:37 -   1.71
+++ ChangeLog   9 May 2014 18:45:26 -   1.72
@@ -1,6 +1,9 @@
 # ChangeLog for sci-calculators/units
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-calculators/units/ChangeLog,v 1.71 
2014/04/04 15:28:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-calculators/units/ChangeLog,v 1.72 
2014/05/09 18:45:26 jer Exp $
+
+  09 May 2014; Jeroen Roovers j...@gentoo.org units-2.11.ebuild:
+  Stable for HPPA (bug #509790).
 
   04 Apr 2014; Jeroen Roovers j...@gentoo.org 
-files/units-2.10-install.patch:
   Old.






[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-soundlibs: emul-linux-x86-soundlibs-20140406-r1.ebuild ChangeLog emul-linux-x86-soundlibs-20140508.ebuild

2014-05-09 Thread Ulrich Mueller (ulm)
ulm 14/05/09 19:03:35

  Modified: emul-linux-x86-soundlibs-20140406-r1.ebuild
ChangeLog emul-linux-x86-soundlibs-20140508.ebuild
  Log:
  Fix LICENSE, this is a metapackage with USE=abi_x86_32.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.2  
app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild?r1=1.1r2=1.2

Index: emul-linux-x86-soundlibs-20140406-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- emul-linux-x86-soundlibs-20140406-r1.ebuild 9 May 2014 14:41:16 -   
1.1
+++ emul-linux-x86-soundlibs-20140406-r1.ebuild 9 May 2014 19:03:35 -   
1.2
@@ -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/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild,v
 1.1 2014/05/09 14:41:16 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140406-r1.ebuild,v
 1.2 2014/05/09 19:03:35 ulm Exp $
 
 EAPI=5
 inherit emul-linux-x86
 
-LICENSE=BSD FDL-1.2 GPL-2 LGPL-2.1 LGPL-2 MIT gsm public-domain
+LICENSE=!abi_x86_32? ( BSD FDL-1.2 GPL-2 LGPL-2.1 LGPL-2 MIT gsm 
public-domain ) abi_x86_32? ( metapackage )
 KEYWORDS=-* ~amd64
 IUSE=abi_x86_32 alsa +pulseaudio
 



1.120app-emulation/emul-linux-x86-soundlibs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog?rev=1.120view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog?rev=1.120content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog?r1=1.119r2=1.120

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog   9 May 2014 14:41:16 -   1.119
+++ ChangeLog   9 May 2014 19:03:35 -   1.120
@@ -1,6 +1,11 @@
 # ChangeLog for app-emulation/emul-linux-x86-soundlibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 
1.119 2014/05/09 14:41:16 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 
1.120 2014/05/09 19:03:35 ulm Exp $
+
+  09 May 2014; Ulrich Müller u...@gentoo.org
+  emul-linux-x86-soundlibs-20140406-r1.ebuild,
+  emul-linux-x86-soundlibs-20140508.ebuild:
+  Fix LICENSE, this is a metapackage with USE=abi_x86_32.
 
 *emul-linux-x86-soundlibs-20140406-r1 (09 May 2014)
 



1.3  
app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild?r1=1.2r2=1.3

Index: emul-linux-x86-soundlibs-20140508.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- emul-linux-x86-soundlibs-20140508.ebuild9 May 2014 14:41:16 -   
1.2
+++ emul-linux-x86-soundlibs-20140508.ebuild9 May 2014 19:03:35 -   
1.3
@@ -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/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20140508.ebuild,v
 1.2 2014/05/09 14:41:16 mgorny Exp $
+# $Header: 

[gentoo-commits] gentoo-x86 commit in app-emulation/emul-linux-x86-sdl: ChangeLog emul-linux-x86-sdl-20140406-r2.ebuild emul-linux-x86-sdl-20140508.ebuild

2014-05-09 Thread Ulrich Mueller (ulm)
ulm 14/05/09 19:08:56

  Modified: ChangeLog emul-linux-x86-sdl-20140406-r2.ebuild
emul-linux-x86-sdl-20140508.ebuild
  Log:
  Fix LICENSE, this is a metapackage with USE=abi_x86_32.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.80 app-emulation/emul-linux-x86-sdl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-sdl/ChangeLog?rev=1.80view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-sdl/ChangeLog?rev=1.80content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-sdl/ChangeLog?r1=1.79r2=1.80

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-sdl/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog   8 May 2014 21:48:08 -   1.79
+++ ChangeLog   9 May 2014 19:08:55 -   1.80
@@ -1,6 +1,10 @@
 # ChangeLog for app-emulation/emul-linux-x86-sdl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-sdl/ChangeLog,v 1.79 
2014/05/08 21:48:08 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-sdl/ChangeLog,v 1.80 
2014/05/09 19:08:55 ulm Exp $
+
+  09 May 2014; Ulrich Müller u...@gentoo.org
+  emul-linux-x86-sdl-20140406-r2.ebuild, emul-linux-x86-sdl-20140508.ebuild:
+  Fix LICENSE, this is a metapackage with USE=abi_x86_32.
 
 *emul-linux-x86-sdl-20140508 (08 May 2014)
 



1.2  
app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140406-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140406-r2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140406-r2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140406-r2.ebuild?r1=1.1r2=1.2

Index: emul-linux-x86-sdl-20140406-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140406-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- emul-linux-x86-sdl-20140406-r2.ebuild   3 May 2014 10:49:38 -   
1.1
+++ emul-linux-x86-sdl-20140406-r2.ebuild   9 May 2014 19:08:55 -   
1.2
@@ -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/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140406-r2.ebuild,v
 1.1 2014/05/03 10:49:38 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140406-r2.ebuild,v
 1.2 2014/05/09 19:08:55 ulm Exp $
 
 EAPI=5
 inherit emul-linux-x86
 
-LICENSE=LGPL-2 LGPL-2.1 ZLIB
+LICENSE=!abi_x86_32? ( LGPL-2 LGPL-2.1 ZLIB ) abi_x86_32? ( metapackage )
 KEYWORDS=-* ~amd64
 IUSE=abi_x86_32
 



1.2  
app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140508.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140508.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140508.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140508.ebuild?r1=1.1r2=1.2

Index: emul-linux-x86-sdl-20140508.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140508.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- emul-linux-x86-sdl-20140508.ebuild  8 May 2014 21:48:08 -   1.1
+++ emul-linux-x86-sdl-20140508.ebuild  9 May 2014 19:08:55 -   1.2
@@ -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/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140508.ebuild,v
 1.1 2014/05/08 21:48:08 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20140508.ebuild,v
 1.2 2014/05/09 19:08:55 ulm Exp $
 
 EAPI=5
 inherit emul-linux-x86
 
-LICENSE=LGPL-2 LGPL-2.1 ZLIB
+LICENSE=!abi_x86_32? ( LGPL-2 LGPL-2.1 ZLIB ) abi_x86_32? ( metapackage )
 KEYWORDS=-* ~amd64
 IUSE=abi_x86_32
 






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

2014-05-09 Thread Sven Wegener (swegener)
swegener14/05/09 19:10:23

  Modified: systemtap-2.4-r1.ebuild ChangeLog
  Log:
  Use PYTHON_REQUIRED_USE, bug #506540.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x64D4CF24)

Revision  ChangesPath
1.3  dev-util/systemtap/systemtap-2.4-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/systemtap/systemtap-2.4-r1.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/systemtap/systemtap-2.4-r1.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/systemtap/systemtap-2.4-r1.ebuild?r1=1.2r2=1.3

Index: systemtap-2.4-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/systemtap/systemtap-2.4-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- systemtap-2.4-r1.ebuild 10 Mar 2014 21:45:58 -  1.2
+++ systemtap-2.4-r1.ebuild 9 May 2014 19:10:23 -   1.3
@@ -1,10 +1,11 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/systemtap/systemtap-2.4-r1.ebuild,v 1.2 
2014/03/10 21:45:58 swegener Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/systemtap/systemtap-2.4-r1.ebuild,v 1.3 
2014/05/09 19:10:23 swegener Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 )
+
 inherit linux-info autotools eutils python-single-r1
 
 DESCRIPTION=A linux trace/probe tool
@@ -23,6 +24,8 @@
 DEPEND=${RDEPEND}
=sys-devel/gettext-0.18.2
 
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
 CONFIG_CHECK=~KPROBES ~RELAY ~DEBUG_FS
 ERROR_KPROBES=${PN} requires support for KProbes Instrumentation (KPROBES) - 
this can be enabled in 'Instrumentation Support - Kprobes'.
 ERROR_RELAY=${PN} works with support for user space relay support (RELAY) - 
this can be enabled in 'General setup - Kernel-user space relay support 
(formerly relayfs)'.



1.116dev-util/systemtap/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/systemtap/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog   10 Mar 2014 21:45:59 -  1.115
+++ ChangeLog   9 May 2014 19:10:23 -   1.116
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/systemtap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/systemtap/ChangeLog,v 1.115 
2014/03/10 21:45:59 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/systemtap/ChangeLog,v 1.116 
2014/05/09 19:10:23 swegener Exp $
+
+  09 May 2014; Sven Wegener swege...@gentoo.org systemtap-2.4-r1.ebuild:
+  Use PYTHON_REQUIRED_USE, bug #506540.
 
   10 Mar 2014; Sven Wegener swege...@gentoo.org systemtap-2.4.ebuild,
   systemtap-2.4-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in media-sound/easytag: easytag-2.2.2.ebuild ChangeLog

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 19:13:31

  Modified: ChangeLog
  Added:easytag-2.2.2.ebuild
  Log:
  Version bump wrt #508992 by Manuel Rüger
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.188media-sound/easytag/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/ChangeLog?rev=1.188view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/ChangeLog?rev=1.188content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/ChangeLog?r1=1.187r2=1.188

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v
retrieving revision 1.187
retrieving revision 1.188
diff -u -r1.187 -r1.188
--- ChangeLog   20 Apr 2014 08:17:07 -  1.187
+++ ChangeLog   9 May 2014 19:13:31 -   1.188
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/easytag
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.187 
2014/04/20 08:17:07 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.188 
2014/05/09 19:13:31 ssuominen Exp $
+
+*easytag-2.2.2 (09 May 2014)
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org +easytag-2.2.2.ebuild:
+  Version bump wrt #508992 by Manuel Rüger
 
 *easytag-2.2.0-r1 (20 Apr 2014)
 



1.1  media-sound/easytag/easytag-2.2.2.ebuild

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

Index: easytag-2.2.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-2.2.2.ebuild,v 
1.1 2014/05/09 19:13:31 ssuominen Exp $

EAPI=5
inherit fdo-mime gnome.org gnome2-utils

DESCRIPTION=GTK+ utility for editing MP2, MP3, MP4, FLAC, Ogg and other media 
tags
HOMEPAGE=https://wiki.gnome.org/Apps/EasyTAG;

LICENSE=GPL-2 GPL-2+ LGPL-2 LGPL-2+ LGPL-2.1+
SLOT=0
KEYWORDS=~amd64 ~arm ~hppa ~x86 ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
IUSE=flac mp3 mp4 opus speex test vorbis wavpack

RDEPEND==dev-libs/glib-2.32:2
=x11-libs/gtk+-3.4:3
flac? ( =media-libs/flac-1.3 )
mp3? (
=media-libs/id3lib-3.8.3-r8
=media-libs/libid3tag-0.15.1b-r4
)
mp4? ( =media-libs/taglib-1.9.1[mp4] )
opus? (
=media-libs/opus-1.1
=media-libs/opusfile-0.4
)
speex? ( =media-libs/speex-1.2_rc1 )
vorbis? (
=media-libs/libogg-1.3.1
=media-libs/libvorbis-1.3.4
)
wavpack? ( =media-sound/wavpack-4.70 )
DEPEND=${RDEPEND}
app-text/docbook-xml-dtd:4.4
app-text/yelp-tools
dev-libs/libxml2
dev-libs/libxslt
=dev-util/intltool-0.50
=sys-devel/gettext-0.18.3.2
virtual/pkgconfig
!dev-util/pkgconfig-0.27
test? (
=dev-util/appdata-tools-0.1.7
=dev-util/desktop-file-utils-0.22
)

REQUIRED_USE=opus? ( vorbis )
speex? ( vorbis )

src_prepare() {
sed -i \
-e '/^DEPRECATED_CPPFLAGS=/d' \
-e '/warning_flags/s: -Werror=.*::' \
configure || die
}

DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS TODO )

src_configure() {
# Kludge to make easytag find its locales (bug #503698)
export DATADIRNAME=share

econf \
$(use_enable test appdata-validate) \
$(use_enable test tests) \
$(use_enable mp3) \
$(use_enable mp3 id3v23) \
$(use_enable vorbis ogg) \
$(use_enable opus) \
$(use_enable speex) \
$(use_enable flac) \
$(use_enable mp4) \
$(use_enable wavpack)
}

pkg_preinst() { gnome2_icon_savelist; }
pkg_postinst() { gnome2_icon_cache_update; fdo-mime_desktop_database_update; }
pkg_postrm() { gnome2_icon_cache_update; fdo-mime_desktop_database_update; }






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

2014-05-09 Thread Michael Palimaka
commit: 03443a339ac82ab76d8fbfa85fff03954ecede33
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 19:03:26 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 19:03:26 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=03443a33

[eclass] Add workaround due to upstream changing release candidate 
capitalisation.

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

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index e681517..d69304d 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -50,7 +50,8 @@ case ${PV} in
*_alpha*|*_beta*|*_rc*)
# pre-releases
QT5_BUILD_TYPE=release
-   MY_P=${QT5_MODULE}-opensource-src-${PV/_/-}
+   MY_PV=${PV/rc/RC}
+   MY_P=${QT5_MODULE}-opensource-src-${MY_PV/_/-}

SRC_URI=http://download.qt-project.org/development_releases/qt/${PV%.*}/${PV/_/-}/submodules/${MY_P}.tar.xz;
S=${WORKDIR}/${MY_P}
;;



[gentoo-commits] proj/qt:master commit in: dev-qt/qtnetwork/, dev-qt/qttest/, dev-qt/pixeltool/, dev-qt/qttranslations/, ...

2014-05-09 Thread Michael Palimaka
commit: fab9ca0ef937298e2f72a696f5c4eb821641e98f
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 19:13:20 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 19:13:20 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=fab9ca0e

[dev-qt] Bump to 5.3.0_rc

Package-Manager: portage-2.2.8-r1

---
 dev-qt/designer/Manifest| 2 +-
 .../designer/{designer-5.3.0_beta.ebuild = designer-5.3.0_rc.ebuild}   | 0
 dev-qt/linguist-tools/Manifest  | 2 +-
 ...{linguist-tools-5.3.0_beta.ebuild = linguist-tools-5.3.0_rc.ebuild} | 0
 dev-qt/linguist/Manifest| 2 +-
 .../linguist/{linguist-5.3.0_beta.ebuild = linguist-5.3.0_rc.ebuild}   | 0
 dev-qt/pixeltool/Manifest   | 2 +-
 .../{pixeltool-5.3.0_beta.ebuild = pixeltool-5.3.0_rc.ebuild}  | 0
 dev-qt/qdbus/Manifest   | 2 +-
 dev-qt/qdbus/{qdbus-5.3.0_beta.ebuild = qdbus-5.3.0_rc.ebuild} | 0
 dev-qt/qdbusviewer/Manifest | 2 +-
 .../{qdbusviewer-5.3.0_beta.ebuild = qdbusviewer-5.3.0_rc.ebuild}  | 0
 dev-qt/qtconcurrent/Manifest| 2 +-
 .../{qtconcurrent-5.3.0_beta.ebuild = qtconcurrent-5.3.0_rc.ebuild}| 0
 dev-qt/qtcore/Manifest  | 2 +-
 dev-qt/qtcore/{qtcore-5.3.0_beta.ebuild = qtcore-5.3.0_rc.ebuild}  | 0
 dev-qt/qtdbus/Manifest  | 2 +-
 dev-qt/qtdbus/{qtdbus-5.3.0_beta.ebuild = qtdbus-5.3.0_rc.ebuild}  | 0
 dev-qt/qtdeclarative/Manifest   | 2 +-
 .../{qtdeclarative-5.3.0_beta.ebuild = qtdeclarative-5.3.0_rc.ebuild}  | 0
 dev-qt/qtgraphicaleffects/Manifest  | 2 +-
 ...icaleffects-5.3.0_beta.ebuild = qtgraphicaleffects-5.3.0_rc.ebuild} | 0
 dev-qt/qtgui/Manifest   | 2 +-
 dev-qt/qtgui/{qtgui-5.3.0_beta.ebuild = qtgui-5.3.0_rc.ebuild} | 0
 dev-qt/qtmultimedia/Manifest| 2 +-
 .../{qtmultimedia-5.3.0_beta.ebuild = qtmultimedia-5.3.0_rc.ebuild}| 0
 dev-qt/qtnetwork/Manifest   | 2 +-
 .../{qtnetwork-5.3.0_beta.ebuild = qtnetwork-5.3.0_rc.ebuild}  | 0
 dev-qt/qtopengl/Manifest| 2 +-
 .../qtopengl/{qtopengl-5.3.0_beta.ebuild = qtopengl-5.3.0_rc.ebuild}   | 0
 dev-qt/qtprintsupport/Manifest  | 2 +-
 ...{qtprintsupport-5.3.0_beta.ebuild = qtprintsupport-5.3.0_rc.ebuild} | 0
 dev-qt/qtquick1/Manifest| 2 +-
 .../qtquick1/{qtquick1-5.3.0_beta.ebuild = qtquick1-5.3.0_rc.ebuild}   | 0
 dev-qt/qtquickcontrols/Manifest | 2 +-
 ...tquickcontrols-5.3.0_beta.ebuild = qtquickcontrols-5.3.0_rc.ebuild} | 0
 dev-qt/qtscript/Manifest| 2 +-
 .../qtscript/{qtscript-5.3.0_beta.ebuild = qtscript-5.3.0_rc.ebuild}   | 0
 dev-qt/qtserialport/Manifest| 2 +-
 .../{qtserialport-5.3.0_beta.ebuild = qtserialport-5.3.0_rc.ebuild}| 0
 dev-qt/qtsql/Manifest   | 2 +-
 dev-qt/qtsql/{qtsql-5.3.0_beta.ebuild = qtsql-5.3.0_rc.ebuild} | 0
 dev-qt/qtsvg/Manifest   | 2 +-
 dev-qt/qtsvg/{qtsvg-5.3.0_beta.ebuild = qtsvg-5.3.0_rc.ebuild} | 0
 dev-qt/qttest/Manifest  | 2 +-
 dev-qt/qttest/{qttest-5.3.0_beta.ebuild = qttest-5.3.0_rc.ebuild}  | 0
 dev-qt/qttranslations/Manifest  | 2 +-
 ...{qttranslations-5.3.0_beta.ebuild = qttranslations-5.3.0_rc.ebuild} | 0
 dev-qt/qtwebkit/Manifest| 2 +-
 .../qtwebkit/{qtwebkit-5.3.0_beta.ebuild = qtwebkit-5.3.0_rc.ebuild}   | 0
 dev-qt/qtwidgets/Manifest   | 2 +-
 .../{qtwidgets-5.3.0_beta.ebuild = qtwidgets-5.3.0_rc.ebuild}  | 0
 dev-qt/qtx11extras/Manifest | 2 +-
 .../{qtx11extras-5.3.0_beta.ebuild = qtx11extras-5.3.0_rc.ebuild}  | 0
 dev-qt/qtxml/Manifest   | 2 +-
 dev-qt/qtxml/{qtxml-5.3.0_beta.ebuild = qtxml-5.3.0_rc.ebuild} | 0
 dev-qt/qtxmlpatterns/Manifest   | 2 +-
 .../{qtxmlpatterns-5.3.0_beta.ebuild = qtxmlpatterns-5.3.0_rc.ebuild}  | 0
 58 files changed, 29 insertions(+), 29 deletions(-)

diff --git 

[gentoo-commits] gentoo-x86 commit in media-sound/easytag: easytag-2.2.2.ebuild ChangeLog

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 19:15:01

  Modified: easytag-2.2.2.ebuild ChangeLog
  Log:
  Restore ~amd64-linux which was dropped for unknown reason.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  media-sound/easytag/easytag-2.2.2.ebuild

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

Index: easytag-2.2.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-2.2.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- easytag-2.2.2.ebuild9 May 2014 19:13:31 -   1.1
+++ easytag-2.2.2.ebuild9 May 2014 19:15:01 -   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-sound/easytag/easytag-2.2.2.ebuild,v 
1.1 2014/05/09 19:13:31 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-2.2.2.ebuild,v 
1.2 2014/05/09 19:15:01 ssuominen Exp $
 
 EAPI=5
 inherit fdo-mime gnome.org gnome2-utils
@@ -10,7 +10,7 @@
 
 LICENSE=GPL-2 GPL-2+ LGPL-2 LGPL-2+ LGPL-2.1+
 SLOT=0
-KEYWORDS=~amd64 ~arm ~hppa ~x86 ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
+KEYWORDS=~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris
 IUSE=flac mp3 mp4 opus speex test vorbis wavpack
 
 RDEPEND==dev-libs/glib-2.32:2



1.189media-sound/easytag/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/ChangeLog?rev=1.189view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/ChangeLog?rev=1.189content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/ChangeLog?r1=1.188r2=1.189

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- ChangeLog   9 May 2014 19:13:31 -   1.188
+++ ChangeLog   9 May 2014 19:15:01 -   1.189
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/easytag
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.188 
2014/05/09 19:13:31 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.189 
2014/05/09 19:15:01 ssuominen Exp $
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org easytag-2.2.2.ebuild:
+  Restore ~amd64-linux which was dropped for unknown reason.
 
 *easytag-2.2.2 (09 May 2014)
 






[gentoo-commits] gentoo-x86 commit in media-sound/easytag: ChangeLog easytag-2.1.9-r2.ebuild easytag-2.1.10-r1.ebuild easytag-2.2.0.ebuild easytag-2.2.0-r1.ebuild easytag-2.1.7-r2.ebuild

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 19:16:41

  Modified: ChangeLog
  Removed:  easytag-2.1.9-r2.ebuild easytag-2.1.10-r1.ebuild
easytag-2.2.0.ebuild easytag-2.2.0-r1.ebuild
easytag-2.1.7-r2.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.190media-sound/easytag/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/ChangeLog?rev=1.190view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/ChangeLog?rev=1.190content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/ChangeLog?r1=1.189r2=1.190

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -r1.189 -r1.190
--- ChangeLog   9 May 2014 19:15:01 -   1.189
+++ ChangeLog   9 May 2014 19:16:41 -   1.190
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/easytag
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.189 
2014/05/09 19:15:01 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.190 
2014/05/09 19:16:41 ssuominen Exp $
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org 
-easytag-2.1.10-r1.ebuild,
+  -easytag-2.1.7-r2.ebuild, -easytag-2.1.9-r2.ebuild, -easytag-2.2.0-r1.ebuild,
+  -easytag-2.2.0.ebuild, -files/easytag-2.1.6-load-from-txt.patch,
+  -files/easytag-2.1.7-gold.patch, -files/easytag-2.1.7-new_libmp4v2.patch:
+  old
 
   09 May 2014; Samuli Suominen ssuomi...@gentoo.org easytag-2.2.2.ebuild:
   Restore ~amd64-linux which was dropped for unknown reason.






[gentoo-commits] gentoo-x86 commit in media-sound/easytag/files: easytag-2.1.7-new_libmp4v2.patch easytag-2.1.7-gold.patch easytag-2.1.6-load-from-txt.patch

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 19:16:41

  Removed:  easytag-2.1.7-new_libmp4v2.patch
easytag-2.1.7-gold.patch
easytag-2.1.6-load-from-txt.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/easytag: ChangeLog metadata.xml

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 19:18:19

  Modified: ChangeLog metadata.xml
  Log:
  cleanup unused/wrong USE flags
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.191media-sound/easytag/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -r1.190 -r1.191
--- ChangeLog   9 May 2014 19:16:41 -   1.190
+++ ChangeLog   9 May 2014 19:18:19 -   1.191
@@ -1,11 +1,12 @@
 # ChangeLog for media-sound/easytag
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.190 
2014/05/09 19:16:41 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.191 
2014/05/09 19:18:19 ssuominen Exp $
 
   09 May 2014; Samuli Suominen ssuomi...@gentoo.org 
-easytag-2.1.10-r1.ebuild,
   -easytag-2.1.7-r2.ebuild, -easytag-2.1.9-r2.ebuild, -easytag-2.2.0-r1.ebuild,
   -easytag-2.2.0.ebuild, -files/easytag-2.1.6-load-from-txt.patch,
-  -files/easytag-2.1.7-gold.patch, -files/easytag-2.1.7-new_libmp4v2.patch:
+  -files/easytag-2.1.7-gold.patch, -files/easytag-2.1.7-new_libmp4v2.patch,
+  metadata.xml:
   old
 
   09 May 2014; Samuli Suominen ssuomi...@gentoo.org easytag-2.2.2.ebuild:



1.12 media-sound/easytag/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/metadata.xml?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/metadata.xml?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/easytag/metadata.xml?r1=1.11r2=1.12

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/easytag/metadata.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- metadata.xml20 Apr 2014 08:17:07 -  1.11
+++ metadata.xml9 May 2014 19:18:19 -   1.12
@@ -1,11 +1,9 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-  herdsound/herd
-  use
-flag name='opus'Enable support for pkgmedia-libs/opus/pkg and 
pkgmedia-libs/opusfile/pkg (opus audio codec)/flag
-   flag name='gtk2'Enable GTK+:2 support and disable default GTK+:3 
support/flag
-   flag name='gtk3'Enable GTK+:3 support (default) and disable GTK+:2 
support/flag
-  /use
-  longdescriptiona utility for viewing and editing tags for MP3, MP2, FLAC, 
AAC, MP4 and OGG files. It features a simple and attractive GTK+ 
interface/longdescription
+   herdsound/herd
+   use
+   flag name='opus'Enable support for pkgmedia-libs/opus/pkg 
and pkgmedia-libs/opusfile/pkg (opus audio codec)/flag
+   /use
+   longdescriptiona utility for viewing and editing tags for MP3, MP2, 
FLAC, AAC, MP4 and OGG files. It features a simple and attractive GTK+ 
interface/longdescription
 /pkgmetadata






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

2014-05-09 Thread Michael Palimaka
commit: a3d4c7bad92cb0c8b7f402e7c050484777386fbc
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Fri May  9 19:19:18 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri May  9 19:19:18 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=a3d4c7ba

[eclass] Update copyright.

---
 eclass/qmake-utils.eclass | 2 +-
 eclass/qt4-build.eclass   | 2 +-
 eclass/qt4-r2.eclass  | 2 +-
 eclass/qt5-build.eclass   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/qmake-utils.eclass b/eclass/qmake-utils.eclass
index 046690d..ff8ee05 100644
--- a/eclass/qmake-utils.eclass
+++ b/eclass/qmake-utils.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 

diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass
index 64c2cab..c85653f 100644
--- a/eclass/qt4-build.eclass
+++ b/eclass/qt4-build.eclass
@@ -1,4 +1,4 @@
-# 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/eclass/qt4-build.eclass,v 1.152 2013/10/14 
17:29:55 pesa Exp $
 

diff --git a/eclass/qt4-r2.eclass b/eclass/qt4-r2.eclass
index 5b45486..80c5f5e 100644
--- a/eclass/qt4-r2.eclass
+++ b/eclass/qt4-r2.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index d69304d..1f1ee24 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 



[gentoo-commits] gentoo-x86 commit in media-sound/easytag: easytag-2.2.2.ebuild ChangeLog

2014-05-09 Thread Samuli Suominen (ssuominen)
ssuominen14/05/09 19:21:20

  Modified: easytag-2.2.2.ebuild ChangeLog
  Log:
  Reposition DOCS in the ebuild.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.3  media-sound/easytag/easytag-2.2.2.ebuild

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

Index: easytag-2.2.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-2.2.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- easytag-2.2.2.ebuild9 May 2014 19:15:01 -   1.2
+++ easytag-2.2.2.ebuild9 May 2014 19:21:20 -   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-sound/easytag/easytag-2.2.2.ebuild,v 
1.2 2014/05/09 19:15:01 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-2.2.2.ebuild,v 
1.3 2014/05/09 19:21:20 ssuominen Exp $
 
 EAPI=5
 inherit fdo-mime gnome.org gnome2-utils
@@ -48,6 +48,8 @@
 REQUIRED_USE=opus? ( vorbis )
speex? ( vorbis )
 
+DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS TODO )
+
 src_prepare() {
sed -i \
-e '/^DEPRECATED_CPPFLAGS=/d' \
@@ -55,8 +57,6 @@
configure || die
 }
 
-DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS TODO )
-
 src_configure() {
# Kludge to make easytag find its locales (bug #503698)
export DATADIRNAME=share



1.192media-sound/easytag/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- ChangeLog   9 May 2014 19:18:19 -   1.191
+++ ChangeLog   9 May 2014 19:21:20 -   1.192
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/easytag
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.191 
2014/05/09 19:18:19 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.192 
2014/05/09 19:21:20 ssuominen Exp $
+
+  09 May 2014; Samuli Suominen ssuomi...@gentoo.org easytag-2.2.2.ebuild:
+  Reposition DOCS in the ebuild.
 
   09 May 2014; Samuli Suominen ssuomi...@gentoo.org 
-easytag-2.1.10-r1.ebuild,
   -easytag-2.1.7-r2.ebuild, -easytag-2.1.9-r2.ebuild, -easytag-2.2.0-r1.ebuild,






[gentoo-commits] proj/x11:master commit in: app-benchmarks/glmark2/

2014-05-09 Thread David Heidelberger
commit: f41b5ff7ff52b37468c32fbb15af2f0c48921a98
Author: David Heidelberger david.heidelberger AT ixit DOT cz
AuthorDate: Fri May  9 20:06:24 2014 +
Commit: David Heidelberger d.okias AT gmail DOT com
CommitDate: Fri May  9 20:06:24 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=f41b5ff7

app-benchmarks/glmark2: bump 2014.03

Package-Manager: portage-2.2.10

---
 .../{glmark2-2012.12_p283.ebuild = glmark2-2014.03.ebuild}   | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/app-benchmarks/glmark2/glmark2-2012.12_p283.ebuild 
b/app-benchmarks/glmark2/glmark2-2014.03.ebuild
similarity index 85%
rename from app-benchmarks/glmark2/glmark2-2012.12_p283.ebuild
rename to app-benchmarks/glmark2/glmark2-2014.03.ebuild
index 6a934c1..1d4cb19 100644
--- a/app-benchmarks/glmark2/glmark2-2012.12_p283.ebuild
+++ b/app-benchmarks/glmark2/glmark2-2014.03.ebuild
@@ -4,19 +4,19 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 )
 inherit waf-utils python-single-r1
 
 REV=${PV#*_p}
 
 DESCRIPTION=Opengl test suite
 HOMEPAGE=https://launchpad.net/glmark2;
-SRC_URI=http://bazaar.launchpad.net/~glmark2-dev/glmark2/trunk/tarball/${REV} 
- ${P}.tar.gz
+SRC_URI=https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz;
 
 LICENSE=GPL-3
 SLOT=0
 KEYWORDS=~arm ~amd64 ~x86
-IUSE=drm +gles2 opengl wayland X
+IUSE=drm gles2 +opengl wayland X
 
 RDEPEND=media-libs/libpng
media-libs/mesa[gles2?]
@@ -28,8 +28,6 @@ DEPEND=${RDEPEND}
 REQUIRED_USE=|| ( opengl gles2 )
  || ( drm wayland X )
 
-S=${WORKDIR}/~${PN}-dev/${PN}/trunk/
-
 src_prepare() {
rm -rf ${S}/src/libpng
sed -i s/libpng15/libpng/g ${S}/wscript # allow build with = 
libpng:1.6



[gentoo-commits] gentoo-x86 commit in dev-games/cegui/files: cegui-0.8.3-freetype.patch

2014-05-09 Thread Julian Ospald (hasufell)
hasufell14/05/09 20:12:09

  Added:cegui-0.8.3-freetype.patch
  Log:
  fix build with =freetype-2.5.1 wrt #509180
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.1  dev-games/cegui/files/cegui-0.8.3-freetype.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/cegui/files/cegui-0.8.3-freetype.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/cegui/files/cegui-0.8.3-freetype.patch?rev=1.1content-type=text/plain

Index: cegui-0.8.3-freetype.patch
===
From: Julian Ospald hasuf...@gentoo.org
Date: Fri May  9 19:56:34 UTC 2014
Subject: fix build with =freetype-2.5.1

--- cegui/cmake/FindFreetype.cmake
+++ cegui/cmake/FindFreetype.cmake
@@ -3,8 +3,12 @@
 

 include(FindPackageHandleStandardArgs)
 
-find_path(FREETYPE_H_PATH_ft2build NAMES ft2build.h)
+find_path(FREETYPE_H_PATH_ft2build NAMES ft2build.h PATH_SUFFIXES 
include/freetype2 include)
 find_path(FREETYPE_H_PATH_ftconfig NAMES freetype/config/ftconfig.h 
PATH_SUFFIXES freetype2)
+if(NOT FREETYPE_H_PATH_ftconfig)
+   find_path(FREETYPE_H_PATH_ftconfig NAMES config/ftconfig.h 
PATH_SUFFIXES include/freetype2 include)
+endif()
+
 find_library(FREETYPE_LIB NAMES freetype2 freetype libfreetype PATH_SUFFIXES 
dynamic)
 find_library(FREETYPE_LIB_DBG NAMES freetype_d libfreetype_d PATH_SUFFIXES 
dynamic)
 mark_as_advanced(FREETYPE_H_PATH_ft2build FREETYPE_H_PATH_ftconfig 
FREETYPE_LIB FREETYPE_LIB_DBG)






[gentoo-commits] gentoo-x86 commit in dev-games/cegui: cegui-0.8.3.ebuild ChangeLog

2014-05-09 Thread Julian Ospald (hasufell)
hasufell14/05/09 20:12:09

  Modified: cegui-0.8.3.ebuild ChangeLog
  Log:
  fix build with =freetype-2.5.1 wrt #509180
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.2  dev-games/cegui/cegui-0.8.3.ebuild

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

Index: cegui-0.8.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/cegui/cegui-0.8.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cegui-0.8.3.ebuild  30 Dec 2013 22:19:19 -  1.1
+++ cegui-0.8.3.ebuild  9 May 2014 20:12:09 -   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-games/cegui/cegui-0.8.3.ebuild,v 1.1 
2013/12/30 22:19:19 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/cegui/cegui-0.8.3.ebuild,v 1.2 
2014/05/09 20:12:09 hasufell Exp $
 
 EAPI=5
 
@@ -56,6 +56,8 @@
doc? ( app-doc/doxygen )
opengl? ( media-libs/glm )
 
+PATCHES=( ${FILESDIR}/${P}-freetype.patch )
+
 src_configure() {
# http://www.cegui.org.uk/mantis/view.php?id=991
append-ldflags $(no-as-needed)



1.64 dev-games/cegui/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/cegui/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog   30 Dec 2013 22:19:19 -  1.63
+++ ChangeLog   9 May 2014 20:12:09 -   1.64
@@ -1,6 +1,10 @@
 # ChangeLog for dev-games/cegui
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/cegui/ChangeLog,v 1.63 2013/12/30 
22:19:19 hasufell Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/cegui/ChangeLog,v 1.64 2014/05/09 
20:12:09 hasufell Exp $
+
+  09 May 2014; Julian Ospald hasuf...@gentoo.org cegui-0.8.3.ebuild,
+  +files/cegui-0.8.3-freetype.patch:
+  fix build with =freetype-2.5.1 wrt #509180
 
 *cegui-0.8.3 (30 Dec 2013)
 






[gentoo-commits] gentoo-x86 commit in sys-kernel/ck-sources: ck-sources-3.14.3.ebuild ck-sources-3.12.19.ebuild ck-sources-3.4.89.ebuild ck-sources-3.10.39.ebuild ChangeLog ck-sources-3.4.68.ebuild ck

2014-05-09 Thread Markos Chandras (hwoarang)
hwoarang14/05/09 20:17:08

  Modified: ChangeLog
  Added:ck-sources-3.14.3.ebuild ck-sources-3.12.19.ebuild
ck-sources-3.4.89.ebuild ck-sources-3.10.39.ebuild
  Removed:  ck-sources-3.4.68.ebuild ck-sources-3.10.17.ebuild
  Log:
  Version bump. Remove old. Bug #509930 thanks to Eric F. GARIOUD 
eric-f.gari...@wanadoo.fr
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
09BF4F54C2BA7F3C!)

Revision  ChangesPath
1.234sys-kernel/ck-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/ck-sources/ChangeLog,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- ChangeLog   26 Apr 2014 16:06:54 -  1.233
+++ ChangeLog   9 May 2014 20:17:08 -   1.234
@@ -1,6 +1,18 @@
 # ChangeLog for sys-kernel/ck-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ck-sources/ChangeLog,v 1.233 
2014/04/26 16:06:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ck-sources/ChangeLog,v 1.234 
2014/05/09 20:17:08 hwoarang Exp $
+
+*ck-sources-3.4.89 (09 May 2014)
+*ck-sources-3.10.39 (09 May 2014)
+*ck-sources-3.14.3 (09 May 2014)
+*ck-sources-3.12.19 (09 May 2014)
+
+  09 May 2014; Markos Chandras hwoar...@gentoo.org 
+ck-sources-3.10.39.ebuild,
+  +ck-sources-3.12.19.ebuild, +ck-sources-3.14.3.ebuild,
+  +ck-sources-3.4.89.ebuild, -ck-sources-3.10.17.ebuild,
+  -ck-sources-3.4.68.ebuild:
+  Version bump. Remove old. Bug #509930 thanks to Eric F. GARIOUD
+  eric-f.gari...@wanadoo.fr
 
 *ck-sources-3.13.11 (26 Apr 2014)
 



1.1  sys-kernel/ck-sources/ck-sources-3.14.3.ebuild

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

Index: ck-sources-3.14.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/ck-sources/ck-sources-3.14.3.ebuild,v 1.1 
2014/05/09 20:17:08 hwoarang Exp $

EAPI=5
ETYPE=sources
KEYWORDS=~amd64 ~x86
IUSE=bfsonly

HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches/
http://users.on.net/~ckolivas/kernel/;

K_WANT_GENPATCHES=base extras experimental
K_EXP_GENPATCHES_PULL=1
K_EXP_GENPATCHES_NOUSE=1
K_GENPATCHES_VER=6
K_SECURITY_UNSUPPORTED=1
K_DEBLOB_AVAILABLE=1

inherit kernel-2
detect_version
detect_arch

K_BRANCH_ID=${KV_MAJOR}.${KV_MINOR}

DESCRIPTION=Full Linux ${K_BRANCH_ID} kernel sources with Con Kolivas' high 
performance patchset and Gentoo's genpatches

#-- If Gentoo-Sources don't follow then extra incremental patches are needed -

XTRA_INCP_MIN=
XTRA_INCP_MAX=

#--

CK_VERSION=1
BFS_VERSION=447

CK_FILE=patch-${K_BRANCH_ID}-ck${CK_VERSION}.bz2
BFS_FILE=${K_BRANCH_ID}-sched-bfs-${BFS_VERSION}.patch

CK_BASE_URL=http://ck.kolivas.org/patches/3.0;
CK_LVER_URL=${CK_BASE_URL}/${K_BRANCH_ID}/${K_BRANCH_ID}-ck${CK_VERSION}
CK_URI=${CK_LVER_URL}/${CK_FILE}
BFS_URI=${CK_LVER_URL}/patches/${BFS_FILE}

#-- Build extra incremental patches list --

LX_INCP_URI=
LX_INCP_LIST=
if [ -n ${XTRA_INCP_MIN} ]; then
LX_INCP_URL=${KERNEL_BASE_URI}/incr
for i in `seq ${XTRA_INCP_MIN} ${XTRA_INCP_MAX}`; do
LX_INCP[i]=patch-${K_BRANCH_ID}.${i}-$(($i+1)).bz2
LX_INCP_URI=${LX_INCP_URI} ${LX_INCP_URL}/${LX_INCP[i]}
LX_INCP_LIST=${LX_INCP_LIST} ${DISTDIR}/${LX_INCP[i]}
done
fi

#-- CK needs sometimes to patch itself... (3.7/3.13)---

CK_INCP_URI=
CK_INCP_LIST=

#-- Local patches needed for the ck-patches to apply smoothly (3.4/3.5) ---

PRE_CK_FIX=
POST_CK_FIX=

#--

SRC_URI=${KERNEL_URI} ${LX_INCP_URI} ${GENPATCHES_URI} ${ARCH_URI} 
${CK_INCP_URI}
!bfsonly? ( ${CK_URI} )
bfsonly? ( ${BFS_URI} )

UNIPATCH_LIST=${LX_INCP_LIST} ${PRE_CK_FIX} ${DISTDIR}

if ! use bfsonly ; then
UNIPATCH_LIST=${UNIPATCH_LIST}/${CK_FILE}
else
UNIPATCH_LIST=${UNIPATCH_LIST}/${BFS_FILE}
fi

UNIPATCH_LIST=${UNIPATCH_LIST} ${CK_INCP_LIST} ${POST_CK_FIX}

UNIPATCH_STRICTORDER=yes

#-- Since experimental genpatches  we want BFQ irrespective of experimental -

K_EXP_GENPATCHES_LIST=50*_*.patch*

src_prepare() {

#-- Comment out 

[gentoo-commits] gentoo-x86 commit in app-i18n/tagainijisho: ChangeLog tagainijisho-1.0.2.ebuild

2014-05-09 Thread Denis Dupeyron (calchan)
calchan 14/05/09 20:21:29

  Modified: ChangeLog tagainijisho-1.0.2.ebuild
  Log:
  Fixed bug #509872, thanks to Jouni Rinne.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.5  app-i18n/tagainijisho/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/tagainijisho/ChangeLog?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/tagainijisho/ChangeLog?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/tagainijisho/ChangeLog?r1=1.4r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-i18n/tagainijisho/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   8 May 2014 00:23:31 -   1.4
+++ ChangeLog   9 May 2014 20:21:29 -   1.5
@@ -1,6 +1,9 @@
 # ChangeLog for app-i18n/tagainijisho
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/tagainijisho/ChangeLog,v 1.4 
2014/05/08 00:23:31 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/tagainijisho/ChangeLog,v 1.5 
2014/05/09 20:21:29 calchan Exp $
+
+  09 May 2014; Denis Dupeyron calc...@gentoo.org tagainijisho-1.0.2.ebuild:
+  Fixed bug #509872, thanks to Jouni Rinne.
 
   08 May 2014; calc...@gentoo.org tagainijisho-1.0.2.ebuild:
   Tested on x86.



1.5  app-i18n/tagainijisho/tagainijisho-1.0.2.ebuild

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

Index: tagainijisho-1.0.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-i18n/tagainijisho/tagainijisho-1.0.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tagainijisho-1.0.2.ebuild   8 May 2014 00:23:31 -   1.4
+++ tagainijisho-1.0.2.ebuild   9 May 2014 20:21:29 -   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-i18n/tagainijisho/tagainijisho-1.0.2.ebuild,v 1.4 
2014/05/08 00:23:31 calchan Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-i18n/tagainijisho/tagainijisho-1.0.2.ebuild,v 1.5 
2014/05/09 20:21:29 calchan Exp $
 
 EAPI=5
 
@@ -38,10 +38,10 @@
local cmake_linguas
for lingua in $(sed -e 's/;/ /g' -ne '/set(DICT_LANG 
.*)/s/.*\(.*\).*/\1/p' CMakeLists.txt); do
if use linguas_${lingua}; then
-   cmake_linguas+=${lingua};
+   cmake_linguas+=;${lingua}
fi
done
-   mycmakeargs=( -DDICT_LANG=${cmake_linguas} )
+   mycmakeargs=( -DDICT_LANG=${cmake_linguas}; )
 
cmake-utils_src_configure
 }






[gentoo-commits] gentoo-x86 commit in media-gfx/blender: ChangeLog blender-2.70a-r3.ebuild blender-2.70a-r2.ebuild

2014-05-09 Thread Julian Ospald (hasufell)
hasufell14/05/09 20:26:03

  Modified: ChangeLog
  Added:blender-2.70a-r3.ebuild
  Removed:  blender-2.70a-r2.ebuild
  Log:
  fix locale installation wrt #509156
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.266media-gfx/blender/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/blender/ChangeLog?rev=1.266view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/blender/ChangeLog?rev=1.266content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/blender/ChangeLog?r1=1.265r2=1.266

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/blender/ChangeLog,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -r1.265 -r1.266
--- ChangeLog   24 Apr 2014 11:34:21 -  1.265
+++ ChangeLog   9 May 2014 20:26:03 -   1.266
@@ -1,6 +1,12 @@
 # ChangeLog for media-gfx/blender
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/blender/ChangeLog,v 1.265 
2014/04/24 11:34:21 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/blender/ChangeLog,v 1.266 
2014/05/09 20:26:03 hasufell Exp $
+
+*blender-2.70a-r3 (09 May 2014)
+
+  09 May 2014; Julian Ospald hasuf...@gentoo.org -blender-2.70a-r2.ebuild,
+  +blender-2.70a-r3.ebuild:
+  fix locale installation wrt #509156
 
 *blender-2.70a-r2 (24 Apr 2014)
 



1.1  media-gfx/blender/blender-2.70a-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/blender/blender-2.70a-r3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/blender/blender-2.70a-r3.ebuild?rev=1.1content-type=text/plain

Index: blender-2.70a-r3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/blender/blender-2.70a-r3.ebuild,v 
1.1 2014/05/09 20:26:03 hasufell Exp $

# TODO:
#   bundled-deps: bullet is modified
#   multiple python abi?

EAPI=5
PYTHON_COMPAT=( python3_3 python3_4 )
#PATCHSET=1

inherit multilib fdo-mime gnome2-utils cmake-utils eutils python-single-r1 
versionator flag-o-matic toolchain-funcs pax-utils check-reqs

DESCRIPTION=3D Creation/Animation/Publishing System
HOMEPAGE=http://www.blender.org;

case ${PV} in
*_p*)
SRC_URI=http://dev.gentoo.org/~lu_zero/${P}.tar.gz; ;;
*)
SRC_URI=http://download.blender.org/source/${P}.tar.gz; ;;
esac

if [[ -n ${PATCHSET} ]]; then
SRC_URI+= 
http://dev.gentoo.org/~flameeyes/${PN}/${P}-patches-${PATCHSET}.tar.xz;
fi

SLOT=0
LICENSE=|| ( GPL-2 BL )
KEYWORDS=~amd64 ~x86
IUSE=+boost +bullet collada colorio cycles +dds debug doc +elbeem ffmpeg fftw 
+game-engine jack jpeg2k ndof nls openal openimageio +opennl openmp +openexr 
player redcode sdl sndfile sse sse2 tiff
REQUIRED_USE=${PYTHON_REQUIRED_USE}
player? ( game-engine )
redcode? ( jpeg2k ffmpeg )
cycles? ( boost openexr tiff )
nls? ( boost )
game-engine? ( boost )

RDEPEND=
${PYTHON_DEPS}
dev-cpp/gflags
dev-cpp/glog[gflags]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
=media-libs/freetype-2.0
media-libs/glew
media-libs/libpng:0
media-libs/libsamplerate
sci-libs/colamd
sci-libs/ldl
sys-libs/zlib
virtual/glu
virtual/jpeg
virtual/libintl
virtual/opengl
x11-libs/libXi
x11-libs/libX11
boost? ( =dev-libs/boost-1.44[nls?,threads(+)] )
collada? ( media-libs/opencollada )
colorio? ( media-libs/opencolorio )
cycles? (
media-libs/openimageio
)
ffmpeg? (
|| (

=media-video/ffmpeg-2.1.4:0[x264,mp3,encode,theora,jpeg2k?]
=media-video/libav-9[x264,mp3,encode,theora,jpeg2k?]
)
)
fftw? ( sci-libs/fftw:3.0 )
jack? ( media-sound/jack-audio-connection-kit )
jpeg2k? ( media-libs/openjpeg:0 )
ndof? (
app-misc/spacenavd
dev-libs/libspnav
)
nls? ( virtual/libiconv )
openal? ( =media-libs/openal-1.6.372 )
openimageio? ( media-libs/openimageio )
openexr? ( media-libs/openexr )
sdl? ( media-libs/libsdl[audio,joystick] )
sndfile? ( media-libs/libsndfile )
tiff? ( media-libs/tiff:0 )
DEPEND=${RDEPEND}
=dev-cpp/eigen-3.1.3:3
doc? (
app-doc/doxygen[-nodot(-),dot(+)]
dev-python/sphinx
)
nls? ( sys-devel/gettext 

[gentoo-commits] gentoo-x86 commit in sys-kernel/genkernel-next: ChangeLog genkernel-next-56.ebuild

2014-05-09 Thread Fabio Erculiani (lxnay)
lxnay   14/05/09 20:26:05

  Modified: ChangeLog
  Added:genkernel-next-56.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
ADC916E5)

Revision  ChangesPath
1.39 sys-kernel/genkernel-next/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/genkernel-next/ChangeLog?rev=1.39view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/genkernel-next/ChangeLog?rev=1.39content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/genkernel-next/ChangeLog?r1=1.38r2=1.39

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/genkernel-next/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog   4 May 2014 08:32:51 -   1.38
+++ ChangeLog   9 May 2014 20:26:05 -   1.39
@@ -1,6 +1,11 @@
 # ChangeLog for sys-kernel/genkernel-next
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/genkernel-next/ChangeLog,v 1.38 
2014/05/04 08:32:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/genkernel-next/ChangeLog,v 1.39 
2014/05/09 20:26:05 lxnay Exp $
+
+*genkernel-next-56 (09 May 2014)
+
+  09 May 2014; Fabio Erculiani lx...@gentoo.org +genkernel-next-56.ebuild:
+  version bump
 
   04 May 2014; Agostino Sarubbo a...@gentoo.org genkernel-next-55.ebuild:
   Stable for x86, wrt bug #506888



1.1  sys-kernel/genkernel-next/genkernel-next-56.ebuild

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

Index: genkernel-next-56.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/genkernel-next/genkernel-next-56.ebuild,v 
1.1 2014/05/09 20:26:05 lxnay Exp $

EAPI=5

if [[ ${PV} !=  ]]; then
SRC_URI=http://dev.gentoo.org/~lxnay/genkernel-next/${P}.tar.xz;
else
EGIT_REPO_URI=git://github.com/Sabayon/genkernel-next.git
inherit git-2
fi
inherit bash-completion-r1 eutils

if [[ ${PV} ==  ]]; then
KEYWORDS=
else
KEYWORDS=~amd64 ~arm ~ia64 ~x86
fi

DESCRIPTION=Gentoo automatic kernel building scripts, reloaded
HOMEPAGE=http://www.gentoo.org;

LICENSE=GPL-2
SLOT=0
RESTRICT=
IUSE=cryptsetup dmraid gpg iscsi plymouth selinux

DEPEND=app-text/asciidoc
sys-fs/e2fsprogs
selinux? ( sys-libs/libselinux )
RDEPEND=${DEPEND}
!sys-kernel/genkernel
cryptsetup? ( sys-fs/cryptsetup )
dmraid? ( =sys-fs/dmraid-1.0.0_rc16 )
gpg? ( app-crypt/gnupg )
iscsi? ( sys-block/open-iscsi )
plymouth? ( sys-boot/plymouth )
app-portage/portage-utils
app-arch/cpio
=app-misc/pax-utils-0.6
!sys-apps/openrc-0.9.9
sys-apps/util-linux
sys-block/thin-provisioning-tools
sys-fs/lvm2

src_prepare() {
sed -i /^GK_V=/ s:GK_V=.*:GK_V=${PV}:g ${S}/genkernel || \
die Could not setup release

epatch_user
}

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

doman ${S}/genkernel.8 || die doman
dodoc ${S}/AUTHORS || die dodoc

newbashcomp ${S}/genkernel.bash ${PN}
}






[gentoo-commits] gentoo-x86 commit in sys-libs/libsepol: libsepol-2.3.ebuild ChangeLog

2014-05-09 Thread Sven Vermeulen (swift)
swift   14/05/09 20:28:26

  Modified: ChangeLog
  Added:libsepol-2.3.ebuild
  Log:
  Bump to 2.3
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2EDD52403B68AF47)

Revision  ChangesPath
1.64 sys-libs/libsepol/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.64view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.64content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?r1=1.63r2=1.64

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog   28 Apr 2014 19:38:15 -  1.63
+++ ChangeLog   9 May 2014 20:28:26 -   1.64
@@ -1,6 +1,11 @@
 # ChangeLog for sys-libs/libsepol
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.63 
2014/04/28 19:38:15 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.64 
2014/05/09 20:28:26 swift Exp $
+
+*libsepol-2.3 (09 May 2014)
+
+  09 May 2014; Sven Vermeulen sw...@gentoo.org +libsepol-2.3.ebuild:
+  Bump for 2.3 release
 
 *libsepol-2.3_rc1 (28 Apr 2014)
 



1.1  sys-libs/libsepol/libsepol-2.3.ebuild

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

Index: libsepol-2.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.3.ebuild,v 1.1 
2014/05/09 20:28:26 swift Exp $

EAPI=4

inherit multilib toolchain-funcs eutils multilib-minimal

MY_P=${P//_/-}

DESCRIPTION=SELinux binary policy representation library
HOMEPAGE=http://userspace.selinuxproject.org;
SRC_URI=http://userspace.selinuxproject.org/releases/20140506/${MY_P}.tar.gz;
#   http://dev.gentoo.org/~swift/patches/${PN}/patchbundle-${P}-r1.tar.gz;

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

DEPEND=
RDEPEND=

S=${WORKDIR}/${MY_P}

# tests are not meant to be run outside of the
# full SELinux userland repo
RESTRICT=test

src_prepare() {
#   EPATCH_MULTI_MSG=Applying libsepol patches ...  \
#   EPATCH_SUFFIX=patch \
#   EPATCH_SOURCE=${WORKDIR}/gentoo-patches \
#   EPATCH_FORCE=yes \
#   epatch

epatch_user
multilib_copy_sources
}

multilib_src_compile() {
tc-export RANLIB;
LIBDIR=\$(PREFIX)/$(get_libdir) SHLIBDIR=\$(DESTDIR)/$(get_libdir) \
emake AR=$(tc-getAR) CC=$(tc-getCC)
}

multilib_src_install() {
LIBDIR=\$(PREFIX)/$(get_libdir) SHLIBDIR=\$(DESTDIR)/$(get_libdir) \
emake DESTDIR=${D} install
}






[gentoo-commits] gentoo-x86 commit in sys-libs/libselinux: ChangeLog libselinux-2.3.ebuild

2014-05-09 Thread Sven Vermeulen (swift)
swift   14/05/09 20:29:15

  Modified: ChangeLog
  Added:libselinux-2.3.ebuild
  Log:
  Bump to 2.3
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2EDD52403B68AF47)

Revision  ChangesPath
1.120sys-libs/libselinux/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.120view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?rev=1.120content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libselinux/ChangeLog?r1=1.119r2=1.120

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog   30 Apr 2014 17:11:30 -  1.119
+++ ChangeLog   9 May 2014 20:29:15 -   1.120
@@ -1,6 +1,11 @@
 # ChangeLog for sys-libs/libselinux
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.119 
2014/04/30 17:11:30 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.120 
2014/05/09 20:29:15 swift Exp $
+
+*libselinux-2.3 (09 May 2014)
+
+  09 May 2014; Sven Vermeulen sw...@gentoo.org +libselinux-2.3.ebuild:
+  Bump to 2.3
 
   30 Apr 2014; Sven Vermeulen sw...@gentoo.org libselinux-2.2.2-r5.ebuild:
   Fix bug #509004 by stabilizing r5 (enable ruby bindings)



1.1  sys-libs/libselinux/libselinux-2.3.ebuild

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

Index: libselinux-2.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.3.ebuild,v 
1.1 2014/05/09 20:29:15 swift Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_2 python3_3 )
USE_RUBY=ruby19 ruby20

PATCHBUNDLE=3

# No, I am not calling ruby-ng
inherit multilib python-r1 toolchain-funcs eutils multilib-minimal

MY_P=${P//_/-}

SEPOL_VER=2.3

DESCRIPTION=SELinux userland library
HOMEPAGE=http://userspace.selinuxproject.org;
SRC_URI=http://userspace.selinuxproject.org/releases/20140506/${MY_P}.tar.gz

http://dev.gentoo.org/~swift/patches/${PN}/patchbundle-${PN}-${PATCHBUNDLE}.tar.gz;

LICENSE=public-domain
SLOT=0
KEYWORDS=~amd64 ~x86

IUSE=python ruby static-libs ruby_targets_ruby19 ruby_targets_ruby20

RDEPEND==sys-libs/libsepol-${SEPOL_VER}
=dev-libs/libpcre-8.30-r2[static-libs?]
python? ( ${PYTHON_DEPS} )
ruby? (
ruby_targets_ruby19? ( dev-lang/ruby:1.9 )
ruby_targets_ruby20? ( dev-lang/ruby:2.0 )
)
DEPEND=${RDEPEND}
virtual/pkgconfig
python? ( =dev-lang/swig-2.0.9 )

S=${WORKDIR}/${MY_P}

src_prepare() {
EPATCH_MULTI_MSG=Applying libselinux patches ...  \
EPATCH_SUFFIX=patch \
EPATCH_SOURCE=${WORKDIR}/gentoo-patches \
EPATCH_FORCE=yes \
epatch

epatch_user

multilib_copy_sources
}

multilib_src_compile() {
tc-export PKG_CONFIG RANLIB
local PCRE_CFLAGS=$(${PKG_CONFIG} libpcre --cflags)
local PCRE_LIBS=$(${PKG_CONFIG} libpcre --libs)
export PCRE_{CFLAGS,LIBS}

emake \
AR=$(tc-getAR) \
CC=$(tc-getCC) \
LIBDIR=\$(PREFIX)/$(get_libdir) \
SHLIBDIR=\$(DESTDIR)/$(get_libdir) \
LDFLAGS=-fPIC ${LDFLAGS} -pthread \
all

if multilib_is_native_abi  use python; then
building() {
python_export PYTHON_INCLUDEDIR PYTHON_LIBPATH
emake \
CC=$(tc-getCC) \
PYINC=-I${PYTHON_INCLUDEDIR} \
PYTHONLIBDIR=${PYTHON_LIBPATH} \
PYPREFIX=${EPYTHON##*/} \
LDFLAGS=-fPIC ${LDFLAGS} -lpthread \
pywrap
}
python_foreach_impl building
fi

if multilib_is_native_abi  use ruby; then
building() {
einfo Calling rubywrap for ${1}
# Clean up .lo file to force rebuild
test -f src/selinuxswig_ruby_wrap.lo  rm 
src/selinuxswig_ruby_wrap.lo
emake \
CC=$(tc-getCC) \
RUBY=${1} \
RUBYINSTALL=$(${1} -e 'print 

[gentoo-commits] gentoo-x86 commit in sys-libs/libsemanage: libsemanage-2.3.ebuild ChangeLog

2014-05-09 Thread Sven Vermeulen (swift)
swift   14/05/09 20:29:56

  Modified: ChangeLog
  Added:libsemanage-2.3.ebuild
  Log:
  Bump to 2.3
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2EDD52403B68AF47)

Revision  ChangesPath
1.67 sys-libs/libsemanage/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsemanage/ChangeLog?rev=1.67view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsemanage/ChangeLog?rev=1.67content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsemanage/ChangeLog?r1=1.66r2=1.67

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libsemanage/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog   28 Apr 2014 19:39:37 -  1.66
+++ ChangeLog   9 May 2014 20:29:56 -   1.67
@@ -1,6 +1,11 @@
 # ChangeLog for sys-libs/libsemanage
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsemanage/ChangeLog,v 1.66 
2014/04/28 19:39:37 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsemanage/ChangeLog,v 1.67 
2014/05/09 20:29:56 swift Exp $
+
+*libsemanage-2.3 (09 May 2014)
+
+  09 May 2014; Sven Vermeulen sw...@gentoo.org +libsemanage-2.3.ebuild:
+  Bump to 2.3
 
 *libsemanage-2.3_rc1 (28 Apr 2014)
 



1.1  sys-libs/libsemanage/libsemanage-2.3.ebuild

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

Index: libsemanage-2.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-libs/libsemanage/libsemanage-2.3.ebuild,v 1.1 
2014/05/09 20:29:56 swift Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_2 python3_3 )

inherit multilib python-r1 toolchain-funcs eutils multilib-minimal

MY_P=${P//_/-}

SEPOL_VER=2.3
SELNX_VER=2.3

DESCRIPTION=SELinux kernel and policy management library
HOMEPAGE=http://userspace.selinuxproject.org;
SRC_URI=http://userspace.selinuxproject.org/releases/20140506/${MY_P}.tar.gz;

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

RDEPEND==sys-libs/libsepol-${SEPOL_VER}
=sys-libs/libselinux-${SELNX_VER}
dev-libs/ustr
sys-process/audit
DEPEND=${RDEPEND}
sys-devel/bison
sys-devel/flex
python? (
=dev-lang/swig-2.0.4-r1
virtual/pkgconfig
${PYTHON_DEPS}
)

# tests are not meant to be run outside of the
# full SELinux userland repo
RESTRICT=test

S=${WORKDIR}/${MY_P}

src_prepare() {
echo # Set this to true to save the linked policy.  
${S}/src/semanage.conf
echo # This is normally only useful for analysis  
${S}/src/semanage.conf
echo # or debugging of policy.  ${S}/src/semanage.conf
echo save-linked=false  ${S}/src/semanage.conf
echo  ${S}/src/semanage.conf
echo # Set this to 0 to disable assertion checking.  
${S}/src/semanage.conf
echo # This should speed up building the kernel policy  
${S}/src/semanage.conf
echo # from policy modules, but may leave you open to  
${S}/src/semanage.conf
echo # dangerous rules which assertion checking  
${S}/src/semanage.conf
echo # would catch.  ${S}/src/semanage.conf
echo expand-check=1  ${S}/src/semanage.conf
echo  ${S}/src/semanage.conf
echo # Modules in the module store can be compressed  
${S}/src/semanage.conf
echo # with bzip2.  Set this to the bzip2 blocksize  
${S}/src/semanage.conf
echo # 1-9 when compressing.  The higher the number,  
${S}/src/semanage.conf
echo # the more memory is traded off for disk space.  
${S}/src/semanage.conf
echo # Set to 0 to disable bzip2 compression.  
${S}/src/semanage.conf
echo bzip-blocksize=0  ${S}/src/semanage.conf
echo  ${S}/src/semanage.conf
echo # Reduce memory usage for bzip2 compression and  
${S}/src/semanage.conf
echo # decompression of modules in the module store.  
${S}/src/semanage.conf
echo bzip-small=true  ${S}/src/semanage.conf

epatch_user

multilib_copy_sources
}

multilib_src_compile() {
emake AR=$(tc-getAR) CC=$(tc-getCC) all || die

if multilib_is_native_abi  use python; then
building() {
python_export PYTHON_INCLUDEDIR PYTHON_LIBPATH
emake CC=$(tc-getCC) PYINC=-I${PYTHON_INCLUDEDIR} 
PYTHONLBIDIR=${PYTHON_LIBPATH} PYPREFIX=${EPYTHON##*/} $@
}

[gentoo-commits] gentoo-x86 commit in sys-apps/checkpolicy: ChangeLog checkpolicy-2.3.ebuild

2014-05-09 Thread Sven Vermeulen (swift)
swift   14/05/09 20:31:04

  Modified: ChangeLog
  Added:checkpolicy-2.3.ebuild
  Log:
  Bump to 2.3
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2EDD52403B68AF47)

Revision  ChangesPath
1.75 sys-apps/checkpolicy/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/checkpolicy/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   28 Apr 2014 19:42:56 -  1.74
+++ ChangeLog   9 May 2014 20:31:03 -   1.75
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/checkpolicy
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/checkpolicy/ChangeLog,v 1.74 
2014/04/28 19:42:56 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/checkpolicy/ChangeLog,v 1.75 
2014/05/09 20:31:03 swift Exp $
+
+*checkpolicy-2.3 (09 May 2014)
+
+  09 May 2014; Sven Vermeulen sw...@gentoo.org +checkpolicy-2.3.ebuild:
+  Bump to 2.3
 
 *checkpolicy-2.3_rc1 (28 Apr 2014)
 



1.1  sys-apps/checkpolicy/checkpolicy-2.3.ebuild

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

Index: checkpolicy-2.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/checkpolicy/checkpolicy-2.3.ebuild,v 1.1 
2014/05/09 20:31:03 swift Exp $

EAPI=5

inherit toolchain-funcs eutils

MY_P=${P//_/-}

SEPOL_VER=2.3
SEMNG_VER=2.3

DESCRIPTION=SELinux policy compiler
HOMEPAGE=http://userspace.selinuxproject.org;
SRC_URI=http://userspace.selinuxproject.org/releases/20140506/${MY_P}.tar.gz;

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

DEPEND==sys-libs/libsepol-${SEPOL_VER}
=sys-libs/libsemanage-${SEMNG_VER}
sys-devel/flex
sys-devel/bison

RDEPEND==sys-libs/libsemanage-${SEMNG_VER}

S=${WORKDIR}/${MY_P}

src_compile() {
emake CC=$(tc-getCC) YACC=bison -y || die
}

src_prepare() {
epatch_user
}

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

if use debug; then
dobin ${S}/test/dismod
dobin ${S}/test/dispol
fi
}

pkg_postinst() {
einfo This checkpolicy can compile version `checkpolicy -V |cut -f 1 
-d ' '` policy.
}






[gentoo-commits] gentoo-x86 commit in sys-apps/policycoreutils: ChangeLog policycoreutils-2.3.ebuild

2014-05-09 Thread Sven Vermeulen (swift)
swift   14/05/09 20:32:10

  Modified: ChangeLog
  Added:policycoreutils-2.3.ebuild
  Log:
  Bump to 2.3
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2EDD52403B68AF47)

Revision  ChangesPath
1.135sys-apps/policycoreutils/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog   9 May 2014 18:39:16 -   1.134
+++ ChangeLog   9 May 2014 20:32:10 -   1.135
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/policycoreutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.134 
2014/05/09 18:39:16 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.135 
2014/05/09 20:32:10 swift Exp $
+
+*policycoreutils-2.3 (09 May 2014)
+
+  09 May 2014; Sven Vermeulen sw...@gentoo.org +policycoreutils-2.3.ebuild:
+  Bump to 2.3
 
 *policycoreutils-2.3_rc1-r1 (09 May 2014)
 



1.1  sys-apps/policycoreutils/policycoreutils-2.3.ebuild

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

Index: policycoreutils-2.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/policycoreutils/policycoreutils-2.3.ebuild,v 
1.1 2014/05/09 20:32:10 swift Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=xml

inherit multilib python-r1 toolchain-funcs eutils

MY_P=${P//_/-}

EXTRAS_VER=1.31
SEMNG_VER=2.3
SELNX_VER=2.3
SEPOL_VER=2.3
PATCHBUNDLE=3

IUSE=audit pam dbus

DESCRIPTION=SELinux core utilities
HOMEPAGE=http://userspace.selinuxproject.org;
SRC_URI=http://userspace.selinuxproject.org/releases/20140506/${MY_P}.tar.gz
http://dev.gentoo.org/~swift/patches/policycoreutils/patchbundle-${PN}-${PATCHBUNDLE}.tar.gz
mirror://gentoo/policycoreutils-extra-${EXTRAS_VER}.tar.bz2

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

COMMON_DEPS==sys-libs/libselinux-${SELNX_VER}[python]
=sys-libs/glibc-2.4
=sys-libs/libcap-1.10-r10
=sys-libs/libsemanage-${SEMNG_VER}[python]
sys-libs/libcap-ng
=sys-libs/libsepol-${SEPOL_VER}
sys-devel/gettext
dev-python/ipy
dbus? (
sys-apps/dbus
dev-libs/dbus-glib
)
audit? ( =sys-process/audit-1.5.1 )
pam? ( sys-libs/pam )
${PYTHON_DEPS}

### libcgroup - seunshare
### dbus - restorecond

# pax-utils for scanelf used by rlpkg
RDEPEND=${COMMON_DEPS}
dev-python/sepolgen
app-misc/pax-utils

DEPEND=${COMMON_DEPS}

S=${WORKDIR}/${MY_P}
S1=${WORKDIR}/${MY_P}
S2=${WORKDIR}/policycoreutils-extra

src_prepare() {
# rlpkg is more useful than fixfiles
sed -i -e '/^all/s/fixfiles//' ${S}/scripts/Makefile \
|| die fixfiles sed 1 failed
sed -i -e '/fixfiles/d' ${S}/scripts/Makefile \
|| die fixfiles sed 2 failed

EPATCH_MULTI_MSG=Applying policycoreutils patches ...  \
EPATCH_SUFFIX=patch \
EPATCH_SOURCE=${WORKDIR}/gentoo-patches \
EPATCH_FORCE=yes \
epatch

epatch_user

python_copy_sources
# Our extra code is outside the regular directory, so set it to the 
extra
# directory. We really should optimize this as it is ugly, but the extra
# code is needed for Gentoo at the same time that policycoreutils is 
present
# (so we cannot use an additional package for now).
S=${S2}
python_copy_sources
}

src_compile() {
local use_audit=n;
local use_pam=n;
local use_dbus=n;
local use_sesandbox=n;

use audit  use_audit=y;
use pam  use_pam=y;
use dbus  use_dbus=y;

building() {
emake -C ${BUILD_DIR} AUDIT_LOG_PRIVS=y 
AUDITH=${use_audit} PAMH=${use_pam} INOTIFYH=${use_dbus} 
SESANDBOX=${use_sesandbox} CC=$(tc-getCC) PYLIBVER=${EPYTHON} || die
}
S=${S1} # Regular policycoreutils
python_foreach_impl building
S=${S2} # Extra set
python_foreach_impl building
}


  1   2   >