[gentoo-commits] gentoo-x86 commit in sys-fs/shake/files: shake-0.999-uclibc.patch

2014-05-12 Thread Bernard Cafarelli (voyageur)
voyageur14/05/13 06:53:13

  Added:shake-0.999-uclibc.patch
  Log:
  Fix compilation with uclibc, patch by René Rhéaume  
in bug #509888
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)

Revision  ChangesPath
1.1  sys-fs/shake/files/shake-0.999-uclibc.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/shake/files/shake-0.999-uclibc.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/shake/files/shake-0.999-uclibc.patch?rev=1.1&content-type=text/plain

Index: shake-0.999-uclibc.patch
===
--- shake-fs-0.999-orig/executive.c
+++ shake-fs-0.999/executive.c
@@ -214,12 +214,21 @@ release (struct accused *a, struct law *
   assert (a->fd >= 0);
   /* Restores mtime */
   {
+#ifdef __UCLIBC__
+struct timespec tv[2];
+tv[0].tv_sec = a->atime;
+tv[0].tv_nsec = 0;
+tv[1].tv_sec = a->mtime;
+tv[1].tv_nsec = 0;
+futimens (a->fd, tv);
+#else
 struct timeval tv[2];
 tv[0].tv_sec = a->atime;
 tv[0].tv_usec = 0;
 tv[1].tv_sec = a->mtime;
 tv[1].tv_usec = 0;
 futimes (a->fd, tv);
+#endif
   }
   if (has_been_unlocked (a, l))
 error (0, 0, "%s: concurent accesses", a->name);
--- shake-fs-0.999-orig/linux.h
+++ shake-fs-0.999/linux.h
@@ -32,7 +32,6 @@
 /* Called once, perform OS-specific tasks.
  */
 int os_specific_setup (const char *tempfile);
-
 
 
 /* Get a write lock on the file.
@@ -54,12 +53,13 @@ int readlock_to_writelock (int fd);
 /* Return true if fd is locked, else false
  */
 bool is_locked (int fd);
-
 
 
+#ifndef __UCLIBC__
 /* Declares the glibc function
  */
 int futimes (int fd, const struct timeval tv[2]);
+#endif
 
 /* Set the shake_ptime field and ctime of the file to the actual date.
  */






[gentoo-commits] gentoo-x86 commit in sys-fs/shake: shake-0.999.ebuild ChangeLog

2014-05-12 Thread Bernard Cafarelli (voyageur)
voyageur14/05/13 06:53:13

  Modified: shake-0.999.ebuild ChangeLog
  Log:
  Fix compilation with uclibc, patch by René Rhéaume  
in bug #509888
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)

Revision  ChangesPath
1.7  sys-fs/shake/shake-0.999.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/shake/shake-0.999.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/shake/shake-0.999.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/shake/shake-0.999.ebuild?r1=1.6&r2=1.7

Index: shake-0.999.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/shake/shake-0.999.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- shake-0.999.ebuild  22 Mar 2013 17:20:47 -  1.6
+++ shake-0.999.ebuild  13 May 2014 06:53:13 -  1.7
@@ -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/sys-fs/shake/shake-0.999.ebuild,v 1.6 
2013/03/22 17:20:47 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/shake/shake-0.999.ebuild,v 1.7 
2014/05/13 06:53:13 voyageur Exp $
 
 EAPI=5
 inherit cmake-utils eutils
@@ -20,6 +20,7 @@
 
 S=${WORKDIR}/${PN}-fs-${PV}
 
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-fix_stat_include.patch
-}
+PATCHES=(
+   "${FILESDIR}"/${P}-fix_stat_include.patch
+   "${FILESDIR}"/${P}-uclibc.patch
+   )



1.14 sys-fs/shake/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/shake/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   13 Jun 2013 01:37:59 -  1.13
+++ ChangeLog   13 May 2014 06:53:13 -  1.14
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/shake
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/shake/ChangeLog,v 1.13 2013/06/13 
01:37:59 creffett Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/shake/ChangeLog,v 1.14 2014/05/13 
06:53:13 voyageur Exp $
+
+  13 May 2014; Bernard Cafarelli  shake-0.999.ebuild,
+  +files/shake-0.999-uclibc.patch:
+  Fix compilation with uclibc, patch by René Rhéaume 
+  in bug #509888
 
   13 Jun 2013; Chris Reffett  -shake-0.31.ebuild:
   Maintainer timeout, remove old wrt bug 460572.






[gentoo-commits] gentoo-x86 commit in games-misc/c++robots: ChangeLog c++robots-0.ebuild

2014-05-12 Thread Alfredo Tupone (tupone)
tupone  14/05/13 06:37:18

  Modified: ChangeLog c++robots-0.ebuild
  Log:
  Fix patch file as per Bug #507932
  Migrate to EAPI=4
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.10 games-misc/c++robots/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/c++robots/ChangeLog?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/c++robots/ChangeLog?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/c++robots/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-misc/c++robots/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   17 Apr 2014 19:17:30 -  1.9
+++ ChangeLog   13 May 2014 06:37:18 -  1.10
@@ -1,6 +1,11 @@
 # ChangeLog for games-misc/c++robots
 # Copyright 2002-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-misc/c++robots/ChangeLog,v 1.9 
2014/04/17 19:17:30 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-misc/c++robots/ChangeLog,v 1.10 
2014/05/13 06:37:18 tupone Exp $
+
+  13 May 2014; Tupone Alfredo  c++robots-0.ebuild,
+  files/proper-coding.patch:
+  Fix patch file as per Bug #507932 by Ulrich Muller
+  Migrate to EAPI=4
 
   17 Apr 2014; Ulrich Müller  c++robots-0.ebuild:
   Update LICENSE, BSD according to LICENSE file, bug 505858.



1.10 games-misc/c++robots/c++robots-0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/c++robots/c++robots-0.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/c++robots/c++robots-0.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/c++robots/c++robots-0.ebuild?r1=1.9&r2=1.10

Index: c++robots-0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-misc/c++robots/c++robots-0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- c++robots-0.ebuild  17 Apr 2014 19:17:30 -  1.9
+++ c++robots-0.ebuild  13 May 2014 06:37:18 -  1.10
@@ -1,7 +1,8 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-misc/c++robots/c++robots-0.ebuild,v 
1.9 2014/04/17 19:17:30 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-misc/c++robots/c++robots-0.ebuild,v 
1.10 2014/05/13 06:37:18 tupone Exp $
 
+EAPI=4
 inherit eutils games
 
 DESCRIPTION="ongoing 'King of the Hill' (KotH) tournament"
@@ -15,20 +16,18 @@
 
 S=${WORKDIR}/${PN}
 
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
+src_prepare() {
epatch "${FILESDIR}/proper-coding.patch"
 }
 
 src_compile() {
local myldflags="${LDFLAGS}"
use static && myldflags="${myldflags} -static"
-   emake CFLAGS="${CFLAGS}" LDFLAGS="${myldflags}" || die "emake failed"
+   emake CFLAGS="${CFLAGS}" LDFLAGS="${myldflags}"
 }
 
 src_install() {
-   dogamesbin combat cylon target tracker || die "dogamesbin failed"
+   dogamesbin combat cylon target tracker
dodoc README
prepgamesdirs
 }






[gentoo-commits] gentoo-x86 commit in games-misc/c++robots/files: proper-coding.patch

2014-05-12 Thread Alfredo Tupone (tupone)
tupone  14/05/13 06:37:19

  Modified: proper-coding.patch
  Log:
  Fix patch file as per Bug #507932
  Migrate to EAPI=4
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.2  games-misc/c++robots/files/proper-coding.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/c++robots/files/proper-coding.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/c++robots/files/proper-coding.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/c++robots/files/proper-coding.patch?r1=1.1&r2=1.2

Index: proper-coding.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/games-misc/c++robots/files/proper-coding.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- proper-coding.patch 10 Sep 2003 18:14:04 -  1.1
+++ proper-coding.patch 13 May 2014 06:37:19 -  1.2
@@ -49,98 +49,3 @@
 -  g++ -c target.c
 +  $(CC) $(CFLAGS) -c target.c
  
 combat.c.orig  2003-01-01 23:32:55.0 -0500
-+++ combat.c   2003-01-01 23:34:06.0 -0500
-@@ -29,6 +29,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 
-@@ -96,7 +97,7 @@
- Robot *robots=NULL;
- int   nrobots=0;
- 
--plot(int x, int y, char c)
-+void plot(int x, int y, char c)
- {
-   int h = int(x)*79/1;
-   int v = 34-int(y)*(31-nrobots)/1;
-@@ -472,7 +473,7 @@
- 
- }
- 
--Between(double x1, double y1, double x2, double y2, double x0, double y0)
-+int Between(double x1, double y1, double x2, double y2, double x0, double y0)
- {
-   double tx,ty;
-   /* is (x0,y0) between (x1,y1) - (x2,y2)? */
 cylon.c.orig   2003-01-01 23:32:49.0 -0500
-+++ cylon.c2003-01-01 23:40:13.0 -0500
-@@ -1,6 +1,6 @@
- #include "robots.h"
- 
--Distance(int x1, int y1, int x2, int y2)
-+int Distance(int x1, int y1, int x2, int y2)
- {
- int dx = x1-x2;
- int dy = y1-y2;
-@@ -8,7 +8,7 @@
- return sqrt(dx*dx + dy*dy);
- }
- 
--Goto(int x, int y)
-+void Goto(int x, int y)
- {
- int dir = atan2(y-loc_y(),x-loc_x());
- int dist = Distance(x,y,loc_x(),loc_y());
-@@ -37,8 +37,9 @@
- drive(dir,0);
- }
- 
--main()
-+int main()
- {
- while (1)
- Goto(rand(9000)+500,rand(9000)+500);
-+return 0;
- }
 robots.C.orig  2003-01-01 23:34:39.0 -0500
-+++ robots.C   2003-01-01 23:35:18.0 -0500
-@@ -6,6 +6,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "robots.h"
- 
 tracker.c.orig 2003-01-01 23:35:27.0 -0500
-+++ tracker.c  2003-01-01 23:35:46.0 -0500
-@@ -18,7 +18,7 @@
- // Shoot at a target if its in range (<= 7000 units) *and* its far
- // enough away that we will only be slightly damaged (>200 units) by the
- // resulting explosion.
--inline shoot(int dir,int range)
-+void inline shoot(int dir,int range)
- {
- if (range <= 7000 && range > 200) {
-   printlog("cannon(%d,%d)",dir,range);
-@@ -26,7 +26,7 @@
-   }
- }
- 
--main()
-+int main()
- {
- int sdir=0; /* current scan direction */
- int dir=0;  /* current movement direction */
-@@ -74,4 +74,6 @@
-   else
-   sdir -= 20; /*   increment the scan */
- }
-+
-+return 0;
- }






[gentoo-commits] gentoo-x86 commit in virtual/mailx: mailx-1.ebuild ChangeLog

2014-05-12 Thread Naohiro Aota (naota)
naota   14/05/13 06:37:03

  Modified: mailx-1.ebuild ChangeLog
  Log:
  Add sys-freebsd/freebsd-ubin. #509154
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F8551514)

Revision  ChangesPath
1.2  virtual/mailx/mailx-1.ebuild

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

Index: mailx-1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/virtual/mailx/mailx-1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mailx-1.ebuild  26 Apr 2014 11:15:03 -  1.1
+++ mailx-1.ebuild  13 May 2014 06:37:03 -  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/virtual/mailx/mailx-1.ebuild,v 1.1 
2014/04/26 11:15:03 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/mailx/mailx-1.ebuild,v 1.2 
2014/05/13 06:37:03 naota Exp $
 
 EAPI=5
 
@@ -16,4 +16,5 @@
 DEPEND=""
 RDEPEND="|| (  net-mail/mailutils
mail-client/mailx
-   mail-client/nail )"
+   mail-client/nail
+   sys-freebsd/freebsd-ubin )"



1.5  virtual/mailx/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/mailx/ChangeLog?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/mailx/ChangeLog?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/mailx/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/mailx/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   26 Apr 2014 11:15:03 -  1.4
+++ ChangeLog   13 May 2014 06:37:03 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for virtual/mailx
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/mailx/ChangeLog,v 1.4 2014/04/26 
11:15:03 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/mailx/ChangeLog,v 1.5 2014/05/13 
06:37:03 naota Exp $
+
+  13 May 2014; Naohiro Aota  mailx-1.ebuild:
+  Add sys-freebsd/freebsd-ubin. #509154
 
 *mailx-1 (26 Apr 2014)
 






[gentoo-commits] gentoo-x86 commit in games-emulation/neopocott: neopocott-0.38b.ebuild ChangeLog

2014-05-12 Thread Ulrich Mueller (ulm)
ulm 14/05/13 06:30:06

  Modified: neopocott-0.38b.ebuild ChangeLog
  Log:
  Fix LICENSE, add mirror and bindist restrictions, bug 505628.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.9  games-emulation/neopocott/neopocott-0.38b.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/neopocott/neopocott-0.38b.ebuild?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/neopocott/neopocott-0.38b.ebuild?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/neopocott/neopocott-0.38b.ebuild?r1=1.8&r2=1.9

Index: neopocott-0.38b.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-emulation/neopocott/neopocott-0.38b.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- neopocott-0.38b.ebuild  15 May 2008 12:36:48 -  1.8
+++ neopocott-0.38b.ebuild  13 May 2014 06:30:06 -  1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-emulation/neopocott/neopocott-0.38b.ebuild,v 1.8 
2008/05/15 12:36:48 nyhm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-emulation/neopocott/neopocott-0.38b.ebuild,v 1.9 
2014/05/13 06:30:06 ulm Exp $
 
 inherit games
 
@@ -9,11 +9,11 @@
 HOMEPAGE="http://sdlemu.ngemu.com/neopocottsdl.php";
 
SRC_URI="http://sdlemu.ngemu.com/releases/NeoPocott-SDL-${PV}${MY_RLS}.i386.linux-glibc22.tar.bz2";
 
-LICENSE="as-is"
+LICENSE="all-rights-reserved"
 SLOT="0"
 KEYWORDS="-* x86"
-RESTRICT="strip"
 IUSE=""
+RESTRICT="mirror bindist strip"
 
 RDEPEND="media-libs/libsdl
sys-libs/zlib"



1.7  games-emulation/neopocott/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-emulation/neopocott/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   21 Feb 2007 23:26:20 -  1.6
+++ ChangeLog   13 May 2014 06:30:06 -  1.7
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/neopocott
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/neopocott/ChangeLog,v 1.6 
2007/02/21 23:26:20 peper Exp $
+# Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/neopocott/ChangeLog,v 1.7 
2014/05/13 06:30:06 ulm Exp $
+
+  13 May 2014; Ulrich Müller  neopocott-0.38b.ebuild:
+  Fix LICENSE, add mirror and bindist restrictions, bug 505628.
 
   21 Feb 2007; Piotr Jaroszyński  ChangeLog:
   Transition to Manifest2.






[gentoo-commits] gentoo-x86 commit in games-emulation/boycott-advance-sdl: ChangeLog boycott-advance-sdl-0.2.8.ebuild

2014-05-12 Thread Ulrich Mueller (ulm)
ulm 14/05/13 06:29:34

  Modified: ChangeLog boycott-advance-sdl-0.2.8.ebuild
  Log:
  Fix LICENSE, add mirror and bindist restrictions, bug 505620.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.7  games-emulation/boycott-advance-sdl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/boycott-advance-sdl/ChangeLog?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/boycott-advance-sdl/ChangeLog?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/boycott-advance-sdl/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/games-emulation/boycott-advance-sdl/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   14 Nov 2013 21:54:05 -  1.6
+++ ChangeLog   13 May 2014 06:29:34 -  1.7
@@ -1,6 +1,10 @@
 # ChangeLog for games-emulation/boycott-advance-sdl
-# Copyright 2000-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-emulation/boycott-advance-sdl/ChangeLog,v 1.6 
2013/11/14 21:54:05 mr_bones_ Exp $
+# Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: 
/var/cvsroot/gentoo-x86/games-emulation/boycott-advance-sdl/ChangeLog,v 1.7 
2014/05/13 06:29:34 ulm Exp $
+
+  13 May 2014; Ulrich Müller 
+  boycott-advance-sdl-0.2.8.ebuild:
+  Fix LICENSE, add mirror and bindist restrictions, bug 505620.
 
   14 Nov 2013; Michael Sterrett 
   boycott-advance-sdl-0.2.8.ebuild:



1.6  
games-emulation/boycott-advance-sdl/boycott-advance-sdl-0.2.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/boycott-advance-sdl/boycott-advance-sdl-0.2.8.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/boycott-advance-sdl/boycott-advance-sdl-0.2.8.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/boycott-advance-sdl/boycott-advance-sdl-0.2.8.ebuild?r1=1.5&r2=1.6

Index: boycott-advance-sdl-0.2.8.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-emulation/boycott-advance-sdl/boycott-advance-sdl-0.2.8.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- boycott-advance-sdl-0.2.8.ebuild14 Nov 2013 21:54:05 -  1.5
+++ boycott-advance-sdl-0.2.8.ebuild13 May 2014 06:29:34 -  1.6
@@ -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/games-emulation/boycott-advance-sdl/boycott-advance-sdl-0.2.8.ebuild,v
 1.5 2013/11/14 21:54:05 mr_bones_ Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-emulation/boycott-advance-sdl/boycott-advance-sdl-0.2.8.ebuild,v
 1.6 2014/05/13 06:29:34 ulm Exp $
 
 inherit games
 
@@ -9,11 +9,11 @@
 HOMEPAGE="http://sdlemu.ngemu.com/basdl.php";
 
SRC_URI="http://sdlemu.ngemu.com/releases/BoyCottAdvance-SDL-${PV}${MY_RLS}.i386.linux.tar.gz";
 
-KEYWORDS="-* x86"
-LICENSE="as-is"
+LICENSE="all-rights-reserved"
 SLOT="0"
-RESTRICT="strip"
+KEYWORDS="-* x86"
 IUSE=""
+RESTRICT="mirror bindist strip"
 
 RDEPEND="virtual/opengl
>=media-libs/libsdl-1.2






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

2014-05-12 Thread Michal Gorny (mgorny)
mgorny  14/05/13 06:18:49

  Modified: ChangeLog
  Added:ldns-1.6.16-r1.ebuild
  Log:
  Convert to python-single-r1. Enable multilib support, bug #499384.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.57 net-libs/ldns/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   23 Mar 2014 09:54:20 -  1.56
+++ ChangeLog   13 May 2014 06:18:49 -  1.57
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/ldns
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.56 2014/03/23 
09:54:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.57 2014/05/13 
06:18:49 mgorny Exp $
+
+*ldns-1.6.16-r1 (13 May 2014)
+
+  13 May 2014; Michał Górny  +ldns-1.6.16-r1.ebuild:
+  Convert to python-single-r1. Enable multilib support, bug #499384.
 
   23 Mar 2014; Agostino Sarubbo  ldns-1.6.16.ebuild:
   Stable for alpha, wrt bug #505066



1.1  net-libs/ldns/ldns-1.6.16-r1.ebuild

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

Index: ldns-1.6.16-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.16-r1.ebuild,v 1.1 
2014/05/13 06:18:49 mgorny Exp $

EAPI="5"
PYTHON_COMPAT=( python2_7 )

inherit eutils multilib-minimal python-single-r1

DESCRIPTION="a library with the aim to simplify DNS programming in C"
HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/";
SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${P}.tar.gz";

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x64-solaris"
IUSE="doc gost +ecdsa python +ssl static-libs vim-syntax"

RESTRICT="test" # 1.6.9 has no test directory

RDEPEND="ssl? ( >=dev-libs/openssl-0.9.7:0[${MULTILIB_USEDEP}] )
ecdsa? ( >=dev-libs/openssl-1.0.1c:0[-bindist,${MULTILIB_USEDEP}] )
gost? ( >=dev-libs/openssl-1:0[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
python? ( dev-lang/swig )
doc? ( app-doc/doxygen )"

# configure will die if ecdsa is enabled and ssl is not
REQUIRED_USE="ecdsa? ( ssl )"

MULTILIB_CHOST_TOOLS=(
/usr/bin/ldns-config
)

pkg_setup() {
use python && python-single-r1_pkg_setup
}

multilib_src_configure() {
ECONF_SOURCE=${S} \
econf \
$(use_enable ecdsa) \
$(use_enable gost) \
$(use_enable ssl sha2) \
$(use_enable static-libs static) \
$(use_with ssl ssl "${EPREFIX}"/usr) \
$(multilib_native_use_with python pyldns) \
$(multilib_native_use_with python pyldnsx) \
--without-drill \
--without-examples \
--disable-rpath
}

multilib_src_compile() {
default

if multilib_is_native_abi && use doc ; then
emake doxygen
fi
}

multilib_src_install() {
default

if multilib_is_native_abi && use doc ; then
dohtml -r doc/html/.
fi
}

multilib_src_install_all() {
dodoc Changelog README*

prune_libtool_files --modules
use python && python_optimize

if use vim-syntax ; then
insinto /usr/share/vim/vimfiles/ftdetect
doins libdns.vim
fi

einfo
elog "Install net-dns/ldns-utils if you want drill and examples"
einfo
}






[gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.13-r1.ebuild ChangeLog

2014-05-12 Thread Eray Aslan (eras)
eras14/05/13 06:10:36

  Modified: ChangeLog
  Added:dovecot-2.2.13-r1.ebuild
  Log:
  Sieve version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x77F1F175586A3B1F)

Revision  ChangesPath
1.478net-mail/dovecot/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.477
retrieving revision 1.478
diff -u -r1.477 -r1.478
--- ChangeLog   12 May 2014 15:27:43 -  1.477
+++ ChangeLog   13 May 2014 06:10:36 -  1.478
@@ -1,6 +1,11 @@
 # ChangeLog for net-mail/dovecot
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.477 
2014/05/12 15:27:43 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.478 
2014/05/13 06:10:36 eras Exp $
+
+*dovecot-2.2.13-r1 (13 May 2014)
+
+  13 May 2014; Eray Aslan  +dovecot-2.2.13-r1.ebuild:
+  Sieve version bump
 
 *dovecot-2.2.13 (12 May 2014)
 



1.1  net-mail/dovecot/dovecot-2.2.13-r1.ebuild

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

Index: dovecot-2.2.13-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.13-r1.ebuild,v 
1.1 2014/05/13 06:10:36 eras Exp $

EAPI=5
inherit eutils multilib ssl-cert systemd user versionator

MY_P="${P/_/.}"
major_minor="$(get_version_component_range 1-2)"
sieve_version="0.4.3"
if [[ ${PV} == *_rc* ]] ; then
rc_dir="rc/"
else
rc_dir=""
fi
SRC_URI="http://dovecot.org/releases/${major_minor}/${rc_dir}${MY_P}.tar.gz
sieve? (

http://pigeonhole.dovecot.org/releases/${major_minor}/${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
)
managesieve? (

http://pigeonhole.dovecot.org/releases/${major_minor}/${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
) "
DESCRIPTION="An IMAP and POP3 server written with security primarily in mind"
HOMEPAGE="http://www.dovecot.org/";

SLOT="0"
LICENSE="LGPL-2.1 MIT"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~x86"

IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
IUSE_DOVECOT_COMPRESS="bzip2 lzma lz4 zlib"
IUSE_DOVECOT_OTHER="caps doc ipv6 lucene managesieve selinux sieve solr +ssl 
static-libs suid tcpd"

IUSE="${IUSE_DOVECOT_AUTH} ${IUSE_DOVECOT_STORAGE} ${IUSE_DOVECOT_COMPRESS} 
${IUSE_DOVECOT_OTHER}"

DEPEND="bzip2? ( app-arch/bzip2 )
caps? ( sys-libs/libcap )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
lucene? ( >=dev-cpp/clucene-2.3 )
lzma? ( app-arch/xz-utils )
lz4? ( app-arch/lz4 )
mysql? ( virtual/mysql )
pam? ( virtual/pam )
postgres? ( dev-db/postgresql-base 
!dev-db/postgresql-base[ldap,threads] )
selinux? ( sec-policy/selinux-dovecot )
solr? ( net-misc/curl dev-libs/expat )
sqlite? ( dev-db/sqlite )
ssl? ( dev-libs/openssl )
tcpd? ( sys-apps/tcp-wrappers )
vpopmail? ( net-mail/vpopmail )
zlib? ( sys-libs/zlib )
virtual/libiconv"

RDEPEND="${DEPEND}
net-mail/mailbase"

S=${WORKDIR}/${MY_P}

pkg_setup() {
if use managesieve && ! use sieve; then
ewarn "managesieve USE flag selected but sieve USE flag 
unselected"
ewarn "sieve USE flag will be turned on"
fi
# default internal user
enewgroup dovecot 97
enewuser dovecot 97 -1 /dev/null dovecot
# default login user
enewuser dovenull -1 -1 /dev/null
# add "mail" group for suid'ing. Better security isolation.
if use suid; then
enewgroup mail
fi
}

src_prepare() {
epatch "${FILESDIR}/${PN}-10-ssl.patch"
}

src_configure() {
local conf=""

if use postgres || use mysql || use sqlite; then
conf="${conf} --with-sql"
fi

local storages=""
for storage in ${IUSE_DOVECOT_STORAGE//+/}; do
use ${storage} && storages="${storage} ${storages}"
done
[ "${storages}" ] || storages="maildir"

 

[gentoo-commits] gentoo-x86 commit in dev-ruby/sass: ChangeLog sass-3.2.19.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/13 05:13:39

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

Revision  ChangesPath
1.51 dev-ruby/sass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog   12 May 2014 14:25:34 -  1.50
+++ ChangeLog   13 May 2014 05:13:39 -  1.51
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/sass
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v 1.50 2014/05/12 
14:25:34 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v 1.51 2014/05/13 
05:13:39 graaff Exp $
+
+*sass-3.2.19 (13 May 2014)
+
+  13 May 2014; Hans de Graaff  +sass-3.2.19.ebuild:
+  Version bump.
 
 *sass-3.3.7 (12 May 2014)
 



1.1  dev-ruby/sass/sass-3.2.19.ebuild

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

Index: sass-3.2.19.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/sass-3.2.19.ebuild,v 1.1 
2014/05/13 05:13:39 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21 jruby"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="README.md"

RUBY_FAKEGEM_EXTRAINSTALL="rails init.rb VERSION VERSION_NAME"

inherit ruby-fakegem

DESCRIPTION="An extension of CSS3, adding nested rules, variables, mixins, 
selector inheritance, and more."
HOMEPAGE="http://sass-lang.com/";
LICENSE="MIT"

KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
SLOT="0"
IUSE=""

ruby_add_bdepend "doc? ( >=dev-ruby/yard-0.5.3 )"

ruby_add_rdepend ">=dev-ruby/listen-0.7.2:0 !!https://github.com/nex3/sass/issues/563
sed -i -e '24s/filename_fn//' test/sass/plugin_test.rb 
|| die
;;
*)
;;
esac
}






[gentoo-commits] gentoo-x86 commit in dev-java/jruby: ChangeLog jruby-1.6.8-r1.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/13 04:54:54

  Modified: ChangeLog jruby-1.6.8-r1.ebuild
  Log:
  jruby 1.6 is not compatible with jre 1.8, bug 510128.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.98 dev-java/jruby/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jruby/ChangeLog?rev=1.98&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jruby/ChangeLog?rev=1.98&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jruby/ChangeLog?r1=1.97&r2=1.98

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/jruby/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog   13 May 2014 04:52:49 -  1.97
+++ ChangeLog   13 May 2014 04:54:54 -  1.98
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/jruby
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jruby/ChangeLog,v 1.97 2014/05/13 
04:52:49 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jruby/ChangeLog,v 1.98 2014/05/13 
04:54:54 graaff Exp $
+
+  13 May 2014; Hans de Graaff  jruby-1.6.8-r1.ebuild:
+  jruby 1.6 is not compatible with jre 1.8, bug 510128.
 
   13 May 2014; Hans de Graaff  -jruby-1.6.5.1.ebuild,
   -files/jruby-1.4.0-bindir.patch, -files/jruby-1.4.0-system-jars-r2.patch,



1.4  dev-java/jruby/jruby-1.6.8-r1.ebuild

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

Index: jruby-1.6.8-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/jruby/jruby-1.6.8-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- jruby-1.6.8-r1.ebuild   3 Mar 2014 23:39:57 -   1.3
+++ jruby-1.6.8-r1.ebuild   13 May 2014 04:54:54 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jruby/jruby-1.6.8-r1.ebuild,v 1.3 
2014/03/03 23:39:57 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jruby/jruby-1.6.8-r1.ebuild,v 1.4 
2014/05/13 04:54:54 graaff Exp $
 
 EAPI="4"
 JAVA_PKG_IUSE="doc source test"
@@ -40,14 +40,14 @@
dev-java/jzlib:1.1"
 
 RDEPEND="${CDEPEND}
-   >=virtual/jre-1.6"
+   >=virtual/jre-1.6 

[gentoo-commits] gentoo-x86 commit in dev-java/jruby/files: jruby-1.5.6-rubygems-1.8.x.patch jruby-1.5.0-system-jars.patch jruby-1.4.0-system-jars-r2.patch jruby-1.4.0-bindir.patch

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/13 04:52:49

  Removed:  jruby-1.5.6-rubygems-1.8.x.patch
jruby-1.5.0-system-jars.patch
jruby-1.4.0-system-jars-r2.patch
jruby-1.4.0-bindir.patch
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)



[gentoo-commits] gentoo-x86 commit in dev-java/jruby: ChangeLog jruby-1.6.5.1.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/13 04:52:49

  Modified: ChangeLog
  Removed:  jruby-1.6.5.1.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.97 dev-java/jruby/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jruby/ChangeLog?rev=1.97&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jruby/ChangeLog?rev=1.97&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jruby/ChangeLog?r1=1.96&r2=1.97

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/jruby/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog   3 May 2014 21:31:48 -   1.96
+++ ChangeLog   13 May 2014 04:52:49 -  1.97
@@ -1,6 +1,12 @@
 # ChangeLog for dev-java/jruby
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jruby/ChangeLog,v 1.96 2014/05/03 
21:31:48 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jruby/ChangeLog,v 1.97 2014/05/13 
04:52:49 graaff Exp $
+
+  13 May 2014; Hans de Graaff  -jruby-1.6.5.1.ebuild,
+  -files/jruby-1.4.0-bindir.patch, -files/jruby-1.4.0-system-jars-r2.patch,
+  -files/jruby-1.5.0-system-jars.patch,
+  -files/jruby-1.5.6-rubygems-1.8.x.patch:
+  Cleanup.
 
 *jruby-1.7.12 (03 May 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-apps/the_silver_searcher: ChangeLog the_silver_searcher-0.22.0.ebuild

2014-05-12 Thread Tim Harder (radhermit)
radhermit14/05/13 04:53:08

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

Revision  ChangesPath
1.38 sys-apps/the_silver_searcher/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   21 Mar 2014 02:32:23 -  1.37
+++ ChangeLog   13 May 2014 04:53:07 -  1.38
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/the_silver_searcher
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog,v 
1.37 2014/03/21 02:32:23 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog,v 
1.38 2014/05/13 04:53:07 radhermit Exp $
+
+*the_silver_searcher-0.22.0 (13 May 2014)
+
+  13 May 2014; Tim Harder 
+  +the_silver_searcher-0.22.0.ebuild:
+  Version bump.
 
 *the_silver_searcher-0.21.0 (21 Mar 2014)
 



1.1  
sys-apps/the_silver_searcher/the_silver_searcher-0.22.0.ebuild

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

Index: the_silver_searcher-0.22.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/the_silver_searcher-0.22.0.ebuild,v
 1.1 2014/05/13 04:53:07 radhermit Exp $

EAPI=5
inherit autotools bash-completion-r1

DESCRIPTION="A code-searching tool similar to ack, but faster"
HOMEPAGE="http://github.com/ggreer/the_silver_searcher";
SRC_URI="https://github.com/ggreer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="lzma zlib"

RDEPEND="dev-libs/libpcre
lzma? ( app-arch/xz-utils )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
virtual/pkgconfig"

DOCS="README.md"

src_prepare() {
sed -i '/^dist_bashcomp/d' Makefile.am || die

eautoreconf
}

src_configure() {
econf \
$(use_enable lzma) \
$(use_enable zlib)
}

src_install() {
default
newbashcomp ag.bashcomp.sh ag
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/charlock_holmes: ChangeLog charlock_holmes-0.7.1.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/13 04:35:56

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

Revision  ChangesPath
1.2  dev-ruby/charlock_holmes/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   22 Apr 2014 12:59:54 -  1.1
+++ ChangeLog   13 May 2014 04:35:56 -  1.2
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/charlock_holmes
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/ChangeLog,v 1.1 
2014/04/22 12:59:54 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/ChangeLog,v 1.2 
2014/05/13 04:35:56 graaff Exp $
+
+*charlock_holmes-0.7.1 (13 May 2014)
+
+  13 May 2014; Hans de Graaff 
+  +charlock_holmes-0.7.1.ebuild:
+  Version bump.
 
 *charlock_holmes-0.6.9.4 (22 Apr 2014)
 



1.1  dev-ruby/charlock_holmes/charlock_holmes-0.7.1.ebuild

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

Index: charlock_holmes-0.7.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/charlock_holmes-0.7.1.ebuild,v 
1.1 2014/05/13 04:35:56 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="README.md"

inherit ruby-fakegem

DESCRIPTION="Character encoding detecting library for Ruby using ICU"
HOMEPAGE="http://github.com/brianmario/charlock_holmes";

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"

ruby_add_bdepend "test? (
dev-ruby/minitest )"

CDEPEND="dev-libs/icu
sys-libs/zlib"
DEPEND+=" ${CDEPEND}"
RDEPEND+=" ${CDEPEND}"

all_ruby_prepare() {
sed -i -e '/bundler/d' test/helper.rb || die

# Avoid dependency on rake-compiler
sed -i -e '/rake-compiler/,$ s:^:#:' Rakefile || die
}

each_ruby_configure() {
${RUBY} -Cext/${PN} extconf.rb || die
}

each_ruby_compile() {
emake V=1 -Cext/${PN}
cp ext/${PN}/${PN}$(get_modname) lib/${PN}/ || die
}

each_ruby_test() {
${RUBY} -Ilib test/*.rb || die
}






[gentoo-commits] gentoo-x86 commit in app-portage/metagen: metagen-9999.ebuild metagen-0.6.2-r1.ebuild ChangeLog

2014-05-12 Thread Mike Gilbert (floppym)
floppym 14/05/13 04:18:56

  Modified: metagen-.ebuild metagen-0.6.2-r1.ebuild
ChangeLog
  Log:
  Drop pypy support due to bug 465546.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.7  app-portage/metagen/metagen-.ebuild

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

Index: metagen-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-portage/metagen/metagen-.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- metagen-.ebuild 6 Apr 2014 17:23:04 -   1.6
+++ metagen-.ebuild 13 May 2014 04:18:56 -  1.7
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/metagen/metagen-.ebuild,v 
1.6 2014/04/06 17:23:04 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/metagen/metagen-.ebuild,v 
1.7 2014/05/13 04:18:56 floppym Exp $
 
 EAPI="5"
-PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_6,2_7} )
 
 inherit distutils-r1 git-r3
 



1.4  app-portage/metagen/metagen-0.6.2-r1.ebuild

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

Index: metagen-0.6.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-portage/metagen/metagen-0.6.2-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metagen-0.6.2-r1.ebuild 28 Apr 2014 19:44:05 -  1.3
+++ metagen-0.6.2-r1.ebuild 13 May 2014 04:18:56 -  1.4
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-portage/metagen/metagen-0.6.2-r1.ebuild,v 1.3 
2014/04/28 19:44:05 bicatali Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-portage/metagen/metagen-0.6.2-r1.ebuild,v 1.4 
2014/05/13 04:18:56 floppym Exp $
 
 EAPI="5"
-PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_6,2_7} )
 
 inherit distutils-r1
 



1.40 app-portage/metagen/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-portage/metagen/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   28 Apr 2014 19:44:05 -  1.39
+++ ChangeLog   13 May 2014 04:18:56 -  1.40
@@ -1,6 +1,10 @@
 # ChangeLog for app-portage/metagen
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/metagen/ChangeLog,v 1.39 
2014/04/28 19:44:05 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/metagen/ChangeLog,v 1.40 
2014/05/13 04:18:56 floppym Exp $
+
+  13 May 2014; Mike Gilbert  metagen-0.6.2-r1.ebuild,
+  metagen-.ebuild:
+  Drop pypy support due to bug 465546.
 
   28 Apr 2014; Sébastien Fabbro  metagen-0.6.2-r1.ebuild:
   Keyword ~amd64-linux ~x86-linux






[gentoo-commits] gentoo-x86 commit in sys-process/iotop: iotop-0.6.ebuild ChangeLog

2014-05-12 Thread Mike Gilbert (floppym)
floppym 14/05/13 04:09:08

  Modified: iotop-0.6.ebuild ChangeLog
  Log:
  Drop pypy support due to bug 465546.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.11 sys-process/iotop/iotop-0.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/iotop/iotop-0.6.ebuild?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/iotop/iotop-0.6.ebuild?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/iotop/iotop-0.6.ebuild?r1=1.10&r2=1.11

Index: iotop-0.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-process/iotop/iotop-0.6.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- iotop-0.6.ebuild31 Mar 2014 21:22:20 -  1.10
+++ iotop-0.6.ebuild13 May 2014 04:09:08 -  1.11
@@ -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/sys-process/iotop/iotop-0.6.ebuild,v 1.10 
2014/03/31 21:22:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/iotop/iotop-0.6.ebuild,v 1.11 
2014/05/13 04:09:08 floppym Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
 PYTHON_REQ_USE="ncurses(+)"
 
 inherit distutils-r1 linux-info



1.71 sys-process/iotop/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-process/iotop/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog   31 Mar 2014 21:22:20 -  1.70
+++ ChangeLog   13 May 2014 04:09:08 -  1.71
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/iotop
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/iotop/ChangeLog,v 1.70 
2014/03/31 21:22:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/iotop/ChangeLog,v 1.71 
2014/05/13 04:09:08 floppym Exp $
+
+  13 May 2014; Mike Gilbert  iotop-0.6.ebuild:
+  Drop pypy support due to bug 465546.
 
   31 Mar 2014; Michał Górny  iotop-0.6.ebuild:
   Add support for the new PyPy slotting.






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

2014-05-12 Thread Maciej Mrozowski
commit: 2992bb8b1d3be30f067269ff9f1fe2834cdac69d
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Tue May 13 03:46:12 2014 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Tue May 13 03:46:12 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2992bb8b

[Documentation/package.accept_keywords] Cleanup 4.12 and 4.13 "more-deps".

---
 Documentation/package.accept_keywords/.kde-4.12.49./more-deps | 4 
 Documentation/package.accept_keywords/.kde-4.12/more-deps | 4 
 Documentation/package.accept_keywords/.kde-4.13.49./more-deps | 5 +
 Documentation/package.accept_keywords/.kde-4.13/more-deps | 5 +
 Documentation/package.accept_keywords/kde-4.12.49..keywords   | 4 
 Documentation/package.accept_keywords/kde-4.12.keywords   | 4 
 Documentation/package.accept_keywords/kde-4.13.49..keywords   | 5 +
 Documentation/package.accept_keywords/kde-4.13.keywords   | 5 +
 8 files changed, 4 insertions(+), 32 deletions(-)

diff --git a/Documentation/package.accept_keywords/.kde-4.12.49./more-deps 
b/Documentation/package.accept_keywords/.kde-4.12.49./more-deps
index 447607f..b76be09 100644
--- a/Documentation/package.accept_keywords/.kde-4.12.49./more-deps
+++ b/Documentation/package.accept_keywords/.kde-4.12.49./more-deps
@@ -1,9 +1,5 @@
->=app-office/akonadi-server-1.9.80
->=dev-libs/libattica-0.4.2
 >=dev-libs/libical-0.48-r2
->=dev-libs/shared-desktop-ontologies-0.11.0
 >=media-libs/lcms-2.5-r1
 >=media-libs/libraw-0.16.0_beta1-r1
->=media-libs/tiff-4.0.3-r6
 >=net-libs/libkgapi-2.0.1
 >=net-misc/networkmanager-0.9.8.2

diff --git a/Documentation/package.accept_keywords/.kde-4.12/more-deps 
b/Documentation/package.accept_keywords/.kde-4.12/more-deps
index 447607f..b76be09 100644
--- a/Documentation/package.accept_keywords/.kde-4.12/more-deps
+++ b/Documentation/package.accept_keywords/.kde-4.12/more-deps
@@ -1,9 +1,5 @@
->=app-office/akonadi-server-1.9.80
->=dev-libs/libattica-0.4.2
 >=dev-libs/libical-0.48-r2
->=dev-libs/shared-desktop-ontologies-0.11.0
 >=media-libs/lcms-2.5-r1
 >=media-libs/libraw-0.16.0_beta1-r1
->=media-libs/tiff-4.0.3-r6
 >=net-libs/libkgapi-2.0.1
 >=net-misc/networkmanager-0.9.8.2

diff --git a/Documentation/package.accept_keywords/.kde-4.13.49./more-deps 
b/Documentation/package.accept_keywords/.kde-4.13.49./more-deps
index 17f2ecd..9b54a6b 100644
--- a/Documentation/package.accept_keywords/.kde-4.13.49./more-deps
+++ b/Documentation/package.accept_keywords/.kde-4.13.49./more-deps
@@ -1,9 +1,6 @@
->=app-office/akonadi-server-1.11.80
->=dev-libs/libattica-0.4.2
 >=dev-libs/libical-0.48-r2
->=dev-libs/shared-desktop-ontologies-0.11.0
+>=kde-misc/baloo-kcmadv-2014.04.27
 >=media-libs/lcms-2.5-r1
 >=media-libs/libraw-0.16.0_beta1-r1
->=media-libs/tiff-4.0.3-r6
 >=net-libs/libkgapi-2.0.1
 >=net-misc/networkmanager-0.9.8.2

diff --git a/Documentation/package.accept_keywords/.kde-4.13/more-deps 
b/Documentation/package.accept_keywords/.kde-4.13/more-deps
index 17f2ecd..9b54a6b 100644
--- a/Documentation/package.accept_keywords/.kde-4.13/more-deps
+++ b/Documentation/package.accept_keywords/.kde-4.13/more-deps
@@ -1,9 +1,6 @@
->=app-office/akonadi-server-1.11.80
->=dev-libs/libattica-0.4.2
 >=dev-libs/libical-0.48-r2
->=dev-libs/shared-desktop-ontologies-0.11.0
+>=kde-misc/baloo-kcmadv-2014.04.27
 >=media-libs/lcms-2.5-r1
 >=media-libs/libraw-0.16.0_beta1-r1
->=media-libs/tiff-4.0.3-r6
 >=net-libs/libkgapi-2.0.1
 >=net-misc/networkmanager-0.9.8.2

diff --git a/Documentation/package.accept_keywords/kde-4.12.49..keywords 
b/Documentation/package.accept_keywords/kde-4.12.49..keywords
index 3867a68..7d0222a 100644
--- a/Documentation/package.accept_keywords/kde-4.12.49..keywords
+++ b/Documentation/package.accept_keywords/kde-4.12.49..keywords
@@ -295,12 +295,8 @@
 ~kde-base/kdebase-meta-4.12.49. **
 ~kde-base/kde-meta-4.12.49. **
 
->=app-office/akonadi-server-1.9.80
->=dev-libs/libattica-0.4.2
 >=dev-libs/libical-0.48-r2
->=dev-libs/shared-desktop-ontologies-0.11.0
 >=media-libs/lcms-2.5-r1
 >=media-libs/libraw-0.16.0_beta1-r1
->=media-libs/tiff-4.0.3-r6
 >=net-libs/libkgapi-2.0.1
 >=net-misc/networkmanager-0.9.8.2

diff --git a/Documentation/package.accept_keywords/kde-4.12.keywords 
b/Documentation/package.accept_keywords/kde-4.12.keywords
index 3488661..25d1eaa 100644
--- a/Documentation/package.accept_keywords/kde-4.12.keywords
+++ b/Documentation/package.accept_keywords/kde-4.12.keywords
@@ -295,12 +295,8 @@
 =app-office/akonadi-server-1.9.80
->=dev-libs/libattica-0.4.2
 >=dev-libs/libical-0.48-r2
->=dev-libs/shared-desktop-ontologies-0.11.0
 >=media-libs/lcms-2.5-r1
 >=media-libs/libraw-0.16.0_beta1-r1
->=media-libs/tiff-4.0.3-r6
 >=net-libs/libkgapi-2.0.1
 >=net-misc/networkmanager-0.9.8.2

diff --git a/Documentation/package.accept_keywords/kde-4.13.49..keywords 
b/Documentation/package.accept_keywords/k

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

2014-05-12 Thread Brian Evans
commit: 00600cbb6bc9432096f3da053748bc752804d4aa
Author: Brian Evans  gentoo  org>
AuthorDate: Tue May 13 03:14:10 2014 +
Commit: Brian Evans  lavabit  com>
CommitDate: Tue May 13 03:14:10 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/mysql.git;a=commit;h=00600cbb

[eclass] Restrict bison version for <=5.5 builds

---
 eclass/mysql-v2.eclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass
index f66c2ab..cd0db68 100644
--- a/eclass/mysql-v2.eclass
+++ b/eclass/mysql-v2.eclass
@@ -341,6 +341,9 @@ DEPEND="${DEPEND}
virtual/yacc
 "
 
+# Only 5.5+ has been made compatible with Bison 3+
+mysql_version_is_at_least "5.5" || DEPEND="${DEPEND} !>sys-devel/bison-3.0"
+
 DEPEND="${DEPEND} static? ( sys-libs/ncurses[static-libs] )"
 
 # compile-time-only



[gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.6.4.ebuild django-1.5.7.ebuild ChangeLog

2014-05-12 Thread Ian Delaney (idella4)
idella4 14/05/13 02:56:59

  Modified: django-1.6.4.ebuild django-1.5.7.ebuild ChangeLog
  Log:
  tidy, correction to REQUIRED_USE
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.3  dev-python/django/django-1.6.4.ebuild

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

Index: django-1.6.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.6.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- django-1.6.4.ebuild 12 May 2014 06:44:52 -  1.2
+++ django-1.6.4.ebuild 13 May 2014 02:56:58 -  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/dev-python/django/django-1.6.4.ebuild,v 1.2 
2014/05/12 06:44:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.6.4.ebuild,v 1.3 
2014/05/13 02:56:58 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -29,7 +29,7 @@
doc? ( >=dev-python/sphinx-1.0.7[${PYTHON_USEDEP}] )
test? ( ${PYTHON_DEPS//sqlite?/sqlite} )"
 
-REQUIRED_USE="mysql? ( || ( $(python_gen_useflags python2_7) ) )
+REQUIRED_USE="mysql? ( $(python_gen_useflags python2_7) )
postgres? ( || ( $(python_gen_useflags 'python{2_7,3_3,3_4}') ) 
)"
 
 S="${WORKDIR}/${MY_P}"



1.3  dev-python/django/django-1.5.7.ebuild

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

Index: django-1.5.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.5.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- django-1.5.7.ebuild 12 May 2014 06:44:52 -  1.2
+++ django-1.5.7.ebuild 13 May 2014 02:56:58 -  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/dev-python/django/django-1.5.7.ebuild,v 1.2 
2014/05/12 06:44:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.5.7.ebuild,v 1.3 
2014/05/13 02:56:58 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3} pypy )
@@ -29,8 +29,9 @@
doc? ( >=dev-python/sphinx-1.0.7[${PYTHON_USEDEP}] )
test? ( ${PYTHON_DEPS//sqlite?/sqlite} )"
 
-REQUIRED_USE="mysql? ( || ( $(python_gen_useflags 'python2*') ) )
-   postgres? ( || ( $(python_gen_useflags 'python{2_7,3_3,3_4}') ) 
)"
+REQUIRED_USE="mysql? ( $(python_gen_useflags python2_7) )
+   postgres? ( || ( $(python_gen_useflags 'python{2_7,3_2,3_3}') ) 
)"
+
 S="${WORKDIR}/${MY_P}"
 
 WEBAPP_MANUAL_SLOT="yes"



1.131dev-python/django/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   12 May 2014 06:44:52 -  1.130
+++ ChangeLog   13 May 2014 02:56:58 -  1.131
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/django
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.130 
2014/05/12 06:44:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.131 
2014/05/13 02:56:58 idella4 Exp $
+
+  13 May 2014; Ian Delaney  django-1.5.7.ebuild,
+  django-1.6.4.ebuild:
+  tidy, correction to REQUIRED_USE
 
   12 May 2014; Ian Delaney  django-1.5.7.ebuild,
   django-1.6.4.ebuild:






[gentoo-commits] gentoo-x86 commit in app-crypt/pesign: pesign-0.108.ebuild ChangeLog

2014-05-12 Thread Patrick Lauer (patrick)
patrick 14/05/13 02:22:32

  Modified: pesign-0.108.ebuild ChangeLog
  Log:
  Quoting
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.3  app-crypt/pesign/pesign-0.108.ebuild

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

Index: pesign-0.108.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/pesign/pesign-0.108.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pesign-0.108.ebuild 10 Sep 2013 03:38:23 -  1.2
+++ pesign-0.108.ebuild 13 May 2014 02:22:31 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/pesign/pesign-0.108.ebuild,v 1.2 
2013/09/10 03:38:23 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/pesign/pesign-0.108.ebuild,v 1.3 
2014/05/13 02:22:31 patrick Exp $
 
 EAPI="4"
 inherit eutils multilib
@@ -30,11 +30,11 @@
dodoc README COPYING TODO || die
 
# remove some files that don't make sense for Gentoo installs
-   rm -rf ${D}/etc/
-   rm -rf ${D}/usr/share/doc/pesign/
+   rm -rf "${D}/etc/"
+   rm -rf "${D}/usr/share/doc/pesign/"
 
# create .so symlink
-   cd ${D}/usr/$(get_libdir)/
+   cd "${D}/usr/$(get_libdir)/"
#cd ${D}/lib64/
ln -s libdpe.so libdpe.so.0
 }



1.4  app-crypt/pesign/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/pesign/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   10 Sep 2013 03:38:23 -  1.3
+++ ChangeLog   13 May 2014 02:22:31 -  1.4
@@ -1,6 +1,9 @@
 # ChangeLog for app-crypt/pesign
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/pesign/ChangeLog,v 1.3 2013/09/10 
03:38:23 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/pesign/ChangeLog,v 1.4 2014/05/13 
02:22:31 patrick Exp $
+
+  13 May 2014; Patrick Lauer  pesign-0.108.ebuild:
+  Quoting
 
   10 Sep 2013; Patrick Lauer  pesign-0.108.ebuild:
   Whitespace






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.0/gentoo: 13_all_default-color.patch README.history

2014-05-12 Thread Ryan Hill (rhill)
rhill   14/05/13 02:03:43

  Modified: README.history
  Added:13_all_default-color.patch
  Log:
  Colors for everyone.

Revision  ChangesPath
1.4  src/patchsets/gcc/4.9.0/gentoo/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.0/gentoo/README.history?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.0/gentoo/README.history?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.0/gentoo/README.history?r1=1.3&r2=1.4

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.9.0/gentoo/README.history,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- README.history  12 May 2014 14:18:26 -  1.3
+++ README.history  13 May 2014 02:03:43 -  1.4
@@ -3,6 +3,7 @@
U 10_all_default-fortify-source.patch
U 11_all_default-warn-format-security.patch
U 12_all_default-warn-trampolines.patch
+   + 13_all_default-color.patch
+ 15_all_libgfortran-Werror.patch
+ 16_all_libgomp-Werror.patch
+ 17_all_libitm-Werror.patch



1.1  src/patchsets/gcc/4.9.0/gentoo/13_all_default-color.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.0/gentoo/13_all_default-color.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.0/gentoo/13_all_default-color.patch?rev=1.1&content-type=text/plain

Index: 13_all_default-color.patch
===
http://pkgs.fedoraproject.org/cgit/gcc.git/plain/gcc49-color-auto.patch

2013-09-20  Jakub Jelinek  

* common.opt (-fdiagnostics-color=): Default to auto.
* toplev.c (process_options): Always default to
-fdiagnostics-color=auto if no -f{,no-}diagnostics-color*.
* doc/invoke.texi (-fdiagnostics-color*): Adjust documentation
of the default.


--- a/gcc/common.opt
+++ b/gcc/common.opt
@@ -1045,7 +1045,7 @@ Common Alias(fdiagnostics-color=,always,never)
 ;
 
 fdiagnostics-color=
-Common Joined RejectNegative Var(flag_diagnostics_show_color) 
Enum(diagnostic_color_rule) Init(DIAGNOSTICS_COLOR_NO)
+Common Joined RejectNegative Var(flag_diagnostics_show_color) 
Enum(diagnostic_color_rule) Init(DIAGNOSTICS_COLOR_AUTO)
 -fdiagnostics-color=[never|always|auto]Colorize diagnostics
 
 ; Required for these enum values.
--- a/gcc/doc/gcc.info
+++ b/gcc/doc/gcc.info
@@ -3106,10 +3106,9 @@ ends may not honor these options.
 '-fdiagnostics-color[=WHEN]'
 '-fno-diagnostics-color'
  Use color in diagnostics.  WHEN is 'never', 'always', or 'auto'.
- The default is 'never' if 'GCC_COLORS' environment variable isn't
- present in the environment, and 'auto' otherwise.  'auto' means to
- use color only when the standard error is a terminal.  The forms
- '-fdiagnostics-color' and '-fno-diagnostics-color' are aliases for
+ The default is 'auto.  'auto' means to use color only when the
+ standard error is a terminal.  The forms '-fdiagnostics-color'
+ and '-fno-diagnostics-color' are aliases for
  '-fdiagnostics-color=always' and '-fdiagnostics-color=never',
  respectively.
 
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -1229,10 +1229,8 @@ process_options (void)
 
   maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
 
-  /* Default to -fdiagnostics-color=auto if GCC_COLORS is in the environment,
- otherwise default to -fdiagnostics-color=never.  */
-  if (!global_options_set.x_flag_diagnostics_show_color
-  && getenv ("GCC_COLORS"))
+  /* Default to -fdiagnostics-color=auto.  */
+  if (!global_options_set.x_flag_diagnostics_show_color)
 pp_show_color (global_dc->printer)
   = colorize_init (DIAGNOSTICS_COLOR_AUTO);
 






[gentoo-commits] gentoo commit in xml/htdocs/proj/en/metastructure/herds: herds.xml

2014-05-12 Thread Yixun Lan (dlan)
dlan14/05/13 01:53:27

  Modified: herds.xml
  Log:
  add myself to cjk, arm herd

Revision  ChangesPath
1.1096   xml/htdocs/proj/en/metastructure/herds/herds.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1096&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1096&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?r1=1.1095&r2=1.1096

Index: herds.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v
retrieving revision 1.1095
retrieving revision 1.1096
diff -u -r1.1095 -r1.1096
--- herds.xml   6 May 2014 18:41:09 -   1.1095
+++ herds.xml   13 May 2014 01:53:27 -  1.1096
@@ -20,7 +20,7 @@
always a description without a lang attribute. Also there are no overlapping
descriptions allowed (multiple description tags with the same language)
 
-   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1095 
2014/05/06 18:41:09 p8952 Exp $
+   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1096 
2014/05/13 01:53:27 dlan Exp $
 
 -->
 
@@ -95,6 +95,10 @@
   yng...@gentoo.org
   Ben de Groot
   
+  
+  d...@gentoo.org
+  Yixun Lan
+  
 
 
   forensics
@@ -1595,6 +1599,10 @@
 pinkb...@gentoo.org
 Sergey Popov
   
+  
+d...@gentoo.org
+Yixun Lan
+  
 
 
   desktop-dock






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

2014-05-12 Thread Brian Evans
commit: faf8cf71d0d81778587948f1dfac99700ace0291
Author: Brian Evans  gentoo  org>
AuthorDate: Tue May 13 01:31:09 2014 +
Commit: Brian Evans  lavabit  com>
CommitDate: Tue May 13 01:31:09 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/mysql.git;a=commit;h=faf8cf71

[mariadb] Version bump, binlog.binlog_old_versions test failed

---
 dev-db/mariadb/Manifest   | 3 +--
 dev-db/mariadb/{mariadb-10.0.10.ebuild => mariadb-10.0.11.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index 2068db1..a5f91d1 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -1,9 +1,8 @@
 DIST mariadb-10.0.10.tar.gz 51946792 SHA256 
66e9700c283e026b00d399dd98d6a1712cda573026e78c205dc639665d7bd8bf SHA512 
806b32cbfe9e90656bfa62f9aac96c39688a94105e048465d58d7624a989290f92250555cf3de2cba3ce18391e41aa349e7139d4e7739e061fbd2c7ee30ba948
 WHIRLPOOL 
79a2e8a9ca8616ffc4118b3c40cb0d6d135d648c31d97a1182206bb078db72768e0ea611910669926f95d9c7969a6d418b608d4a2646e17f88c67c92ddfc93bf
-DIST mariadb-10.0.9.tar.gz 51614120 SHA256 
301320ade949a80f16a83b140a068278d234bd808b620e06cc0ba111cb968b40 SHA512 
2c9a7179fed3249ad0574e524ea87d35c6c65f68232575af58acb724724d29a2bb89637de2f769408e40772e5a3330e07daec73f8a5764bbd2d3242a100f0064
 WHIRLPOOL 
0058bd1a0b6f0e7ea4e06d61a1a64ff76aa0bc87c0c69904d42f1a784a59a43f31c24c73e50301895fa0d9ef979f6b11f08d2f7fe07cbe24de4c5dc91e848279
+DIST mariadb-10.0.11.tar.gz 51084235 SHA256 
631bc4d9e4078456a0c98466dad18572e4a361acad25feeda2190c6da70110dd SHA512 
0e27b053f49a2e8db3bb2f000b2c48ae54f3bd6d0ef23efd39476eed1e7e729df02feb2c72ce6153982a2d8fb13af49575a6c9351ee011ff4a591d4ea29ea1d6
 WHIRLPOOL 
194df19c3863343962fdf2240b742715920f0b5e827702d0d64b8d841350af6832de79c20b76d0963ee0ef7b00ca6c14ae6e87d11d59db926da1321d905eb1ef
 DIST mariadb-5.1.67.tar.gz 25022999 SHA256 
33471e9275c9b03919cabc38eb39f807d645adabf6a1a18f2e41ed73f47677c8 SHA512 
de4a531027860c4226ec5e023b6f8573c2eb723bacaeb14279b9609ed033dcb58fc090aef3d9babcd4a4d0817ddf6ef75589c78f63075072d31ad0b7f7c17d7d
 WHIRLPOOL 
22696d27c3a510396c4b86db5f5a4b39bbcde89285a8460b175ef7c40b3b7541fc8f205c0b96da7f94504a7fd14bfe02efb45204efda524a2426cd25e08162ff
 DIST mariadb-5.2.14.tar.gz 25469828 SHA256 
8ab3db0535ce8728b03a34799da2334c18cff467e01d122293f23aad20613fe5 SHA512 
b0aded450355861bf01604ac5bd0012d0d06a699bc83017cdb6b8749ed161aca9fedb733301aab991c521b21f3c8b2fea4867a2fd038379475e720782c02e869
 WHIRLPOOL 
8c2dd7ee0c1df5696d6b9f5c4387b7f755258a710ac088559f0f9779b27d18e30f32de0d4212015a15b6a83de2abbdd5c4ec811fa87fe2aec547809dc0970607
 DIST mariadb-5.3.12.tar.gz 26880808 SHA256 
83a4598117cadde2bd7eac4c1398edbc86cc3aa8d3824bbee864d4b568a3a30c SHA512 
d53ea48745dad5693fd6a1fd5cf502852f12f8236b8a1fb7f81ad647301d2fd08d4f2944c74de580d0a4136d6c8b49f257124fa1b234ba8f2338f2047435ef94
 WHIRLPOOL 
b9caf1b241262b3b25728769116a94b480ae404ed3d49c8afd6eb4ad6071552e436e4b9483e7f5d0113bc3127eaf04ceaa80d455486e7a92d00820b6b298c460
 DIST mariadb-5.5.37.tar.gz 46078042 SHA256 
a0faf492b3595d938684ed701812a4bd5aaab395b8402efe3322338a80fb3c9c SHA512 
aa7bdde63983ef81dd42996fdea776d47752033208ea96d2ded452a9523ae5ae2fa9b69f1d09ef49bba769dcc3ad88dc55f38fdf34d34b1a0870a794fa26a1f1
 WHIRLPOOL 
2c5ad8c4531c5a333bd88e1f281a1f7cbb9051b2fb20426b1f3c7ab80148428515149298dfc9e68ee7d0ef86ebfcc4eceb4eda68582916a4ed42edc67dc21327
 DIST mysql-extras-20121101-2319Z.tar.bz2 1898358 SHA256 
ea5da082d3384bde67e005ebc39b78e7caadea80745333fb5a9cf47a4c4e4c5d SHA512 
6a49abb1beee012d87ab63071a568ee6d9d8e4ff7a76401b91f5bdc127860d1c504a3877cbadb81536b07afe5ff419c77c793b0fc14ba484f56765d1ca526614
 WHIRLPOOL 
4bda75a0a9063830b3140bbc3cb12b60fa21289eee2fa476fb286da6318fdf0445a9c6193bd2063aefcd3f4ecc1f8045b30635f0e32014098d0f3dbee86e01fc
-DIST mysql-extras-20140424-1043Z.tar.bz2 1493352 SHA256 
75b8de752f11559e3900fd96c3ca6113bd083a69b08bd66b2c24bacfb9b8b88c SHA512 
d1324efd88be8b9e7b6ef61cfaf497b51a02e0825a8cb240ee6869b0875f4f18170d9952567c995f73f9a57b98a91f6e91878bc9efe87f99e0b20053ce5a376a
 WHIRLPOOL 
2982ca88af7926f7fbcf68e0f3f289c0b33e8c929de3db1679c4debf8fa1f74e809361e968ac94949dce405d4a4e494ebdf447e9208eb9cfc39c5677454ed77e
 DIST mysql-extras-20140426-0232Z.tar.bz2 1493717 SHA256 
84002593102ba35383a7f30c7c03af95750edc7a1bfd0ac6219bdfb4771725e0 SHA512 
a7c1d603a5aba7996746ee59699091d30f7422e825815b8198ca4a1068df8e0814cf3de3f8608c034d4b1c145bc3dbc93f73cc8a22ae68a0e1bce5eef9afc3bc
 WHIRLPOOL 
241ba3d4f6c9a2a6f7ca672b1902c5829939fe643f192f7ec41e1ffd9134e137ad6729504300034bad310d21ef60366df9451757250be83900783d9cfca010d7

diff --git a/dev-db/mariadb/mariadb-10.0.10.ebuild 
b/dev-db/mariadb/mariadb-10.0.11.ebuild
similarity index 99%
rename from dev-db/mariadb/mariadb-10.0.10.ebuild
rename to dev-db/mariadb/mariadb-10.0.11.ebuild
index 108d8bf..33c48c8 100644
--- a/dev-db/mariadb/mariadb-10.0.10.ebuild
+++ b/dev-db/mariadb/mariadb-10.0.11.ebuild
@@ -3

[gentoo-commits] gentoo-x86 commit in www-servers/gunicorn: gunicorn-18.0-r1.ebuild ChangeLog

2014-05-12 Thread Rafael Martins (rafaelmartins)
rafaelmartins14/05/13 00:56:10

  Modified: ChangeLog
  Added:gunicorn-18.0-r1.ebuild
  Log:
  Migrated to distutils-r1 by jbergstroem
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.35 www-servers/gunicorn/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   3 Mar 2014 23:31:50 -   1.34
+++ ChangeLog   13 May 2014 00:56:10 -  1.35
@@ -1,6 +1,12 @@
 # ChangeLog for www-servers/gunicorn
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.34 
2014/03/03 23:31:50 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.35 
2014/05/13 00:56:10 rafaelmartins Exp $
+
+*gunicorn-18.0-r1 (13 May 2014)
+
+  13 May 2014; Rafael G. Martins 
+  +gunicorn-18.0-r1.ebuild:
+  Migrated to distutils-r1 by jbergstroem
 
   03 Mar 2014; Pacho Ramos  gunicorn-0.17.4.ebuild:
   amd64 stable, bug #474322



1.1  www-servers/gunicorn/gunicorn-18.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/gunicorn-18.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/gunicorn-18.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: gunicorn-18.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-18.0-r1.ebuild,v 1.1 
2014/05/13 00:56:10 rafaelmartins Exp $

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

inherit distutils-r1

DESCRIPTION="A WSGI HTTP Server for UNIX"
HOMEPAGE="http://gunicorn.org http://pypi.python.org/pypi/gunicorn";
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
IUSE="doc examples test"
KEYWORDS="~amd64 ~x86"

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

DOCS="README.rst"

python_prepare() {
# these tests requires an already installed version of gunicorn
rm tests/test_003-config.py

sed -ie "s/..\/bin/\/usr\/bin\//" docs/Makefile || die

distutils-r1_python_prepare
}

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

python_test() {
py.test -v || die "Testing failed with ${EPYTHON}"
}

python_install_all() {
use doc && local HTML_DOCS=( docs/build/html/. )

distutils-r1_python_install_all

if use examples; then
insinto /usr/share/doc/${P}
doins -r examples
fi
}






[gentoo-commits] gentoo-x86 commit in gnome-extra/cinnamon-session: ChangeLog cinnamon-session-2.2.0.ebuild

2014-05-12 Thread Alexandre Rostovtsev (tetromino)
tetromino14/05/13 00:51:10

  Modified: ChangeLog cinnamon-session-2.2.0.ebuild
  Log:
  Fix COMMON_DEPEND (bug #510196, thanks to Ben Kohler).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
CF0ADD61)

Revision  ChangesPath
1.2  gnome-extra/cinnamon-session/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   6 May 2014 03:09:08 -   1.1
+++ ChangeLog   13 May 2014 00:51:10 -  1.2
@@ -1,6 +1,10 @@
 # ChangeLog for gnome-extra/cinnamon-session
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog,v 
1.1 2014/05/06 03:09:08 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog,v 
1.2 2014/05/13 00:51:10 tetromino Exp $
+
+  13 May 2014; Alexandre Rostovtsev 
+  cinnamon-session-2.2.0.ebuild:
+  Fix COMMON_DEPEND (bug #510196, thanks to Ben Kohler).
 
 *cinnamon-session-2.2.0 (06 May 2014)
 



1.2  gnome-extra/cinnamon-session/cinnamon-session-2.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/cinnamon-session-2.2.0.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/cinnamon-session-2.2.0.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/cinnamon-session-2.2.0.ebuild?r1=1.1&r2=1.2

Index: cinnamon-session-2.2.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/cinnamon-session-2.2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cinnamon-session-2.2.0.ebuild   6 May 2014 03:09:08 -   1.1
+++ cinnamon-session-2.2.0.ebuild   13 May 2014 00:51:10 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/cinnamon-session-2.2.0.ebuild,v
 1.1 2014/05/06 03:09:08 tetromino Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/cinnamon-session-2.2.0.ebuild,v
 1.2 2014/05/13 00:51:10 tetromino Exp $
 
 EAPI="5"
 
@@ -15,7 +15,7 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="doc gconf ipv6 systemd"
 
-RDEPEND="
+COMMON_DEPEND="
>=dev-libs/dbus-glib-0.76
>=dev-libs/glib-2.32:2
>=dev-libs/json-glib-0.10
@@ -42,7 +42,7 @@
 RDEPEND="${COMMON_DEPEND}
!systemd? ( sys-auth/consolekit )
 "
-DEPEND="${RDEPEND}
+DEPEND="${COMMON_DEPEND}
dev-libs/libxslt
>=dev-util/intltool-0.40.6
virtual/pkgconfig






[gentoo-commits] gentoo-x86 commit in net-wireless/btcrack: metadata.xml btcrack-9999.ebuild ChangeLog

2014-05-12 Thread Richard Farina (zerochaos)
zerochaos14/05/12 22:38:47

  Added:metadata.xml btcrack-.ebuild ChangeLog
  Log:
  initial commit of btcrack
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.1  net-wireless/btcrack/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/btcrack/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/btcrack/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

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


zeroch...@gentoo.org
Rick Farina







1.1  net-wireless/btcrack/btcrack-.ebuild

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

Index: btcrack-.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/btcrack/btcrack-.ebuild,v 
1.1 2014/05/12 22:38:47 zerochaos Exp $

EAPI=5

DESCRIPTION="linux port of Thierry Zollers' BTCrack"
HOMEPAGE="https://github.com/mikeryan/btcrack";

if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/mikeryan/btcrack.git";
inherit git-r3
KEYWORDS=""
else
#SRC_URI=""
KEYWORDS="~amd64 ~x86"
fi

LICENSE="GPL-3"
SLOT="0"
IUSE=""

DEPEND=""
RDEPEND="${DEPEND}"

src_install() {
emake DESTDIR="${ED}" PREFIX=/usr install
}



1.1  net-wireless/btcrack/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/btcrack/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/btcrack/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===
# ChangeLog for net-wireless/btcrack
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/btcrack/ChangeLog,v 1.1 
2014/05/12 22:38:47 zerochaos Exp $

*btcrack- (12 May 2014)

  12 May 2014; Rick Farina  +btcrack-.ebuild,
  +metadata.xml:
  initial commit of btcrack






[gentoo-commits] gentoo-x86 commit in net-wireless/btcrack: - New directory

2014-05-12 Thread Richard Farina (zerochaos)
zerochaos14/05/12 22:19:44

  Log:
  Directory /var/cvsroot/gentoo-x86/net-wireless/btcrack added to the repository



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

2014-05-12 Thread Michal Gorny (mgorny)
mgorny  14/05/12 21:56:17

  Modified: ChangeLog multilib-build.eclass
  Log:
  Do not install wrapper headers when no ABI provides a particular header.

Revision  ChangesPath
1.1252   eclass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1251
retrieving revision 1.1252
diff -u -r1.1251 -r1.1252
--- ChangeLog   12 May 2014 11:53:28 -  1.1251
+++ ChangeLog   12 May 2014 21:56:17 -  1.1252
@@ -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.1251 2014/05/12 
11:53:28 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1252 2014/05/12 
21:56:17 mgorny Exp $
+
+  12 May 2014; Michał Górny  multilib-build.eclass:
+  Do not install wrapper headers when no ABI provides a particular header.
 
   12 May 2014; Michael Palimaka  -boost-utils.eclass, 
-office-ext.eclass:
   Remove last-rited eclasses.



1.48 eclass/multilib-build.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.48&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.48&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.47&r2=1.48

Index: multilib-build.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- multilib-build.eclass   7 May 2014 17:33:49 -   1.47
+++ multilib-build.eclass   12 May 2014 21:56:17 -  1.48
@@ -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/multilib-build.eclass,v 1.47 
2014/05/07 17:33:49 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.48 
2014/05/12 21:56:17 mgorny Exp $
 
 # @ECLASS: multilib-build.eclass
 # @MAINTAINER:
@@ -414,10 +414,12 @@
 
local dir=${f%/*}
 
-   if [[ ! -f ${ED}/tmp/multilib-include${f} ]]; 
then
-   dodir "/tmp/multilib-include${dir}"
-   # a generic template
-   cat > "${ED}/tmp/multilib-include${f}" 
<<_EOF_
+   # Some ABIs may have install less files than 
others.
+   if [[ -f ${root}/usr/include${f} ]]; then
+   if [[ ! -f 
${ED}/tmp/multilib-include${f} ]]; then
+   dodir 
"/tmp/multilib-include${dir}"
+   # a generic template
+   cat > 
"${ED}/tmp/multilib-include${f}" <<_EOF_
 /* This file is auto-generated by multilib-build.eclass
  * as a multilib-friendly wrapper. For the original content,
  * please see the files that are #included below.
@@ -443,10 +445,8 @@
 #  error "No ABI matched, please report a bug to bugs.gentoo.org"
 #endif
 _EOF_
-   fi
+   fi
 
-   # Some ABIs may have install less files than 
others.
-   if [[ -f ${root}/usr/include${f} ]]; then
# $CHOST shall be set by 
multilib_toolchain_setup
dodir 
"/tmp/multilib-include/${CHOST}${dir}"
mv "${root}/usr/include${f}" 
"${ED}/tmp/multilib-include/${CHOST}${dir}/" || die






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

2014-05-12 Thread Johannes Huber
commit: ddf6fb165717b03b2cd56a90246a07e14b2e176f
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon May 12 19:48:11 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon May 12 19:48:11 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ddf6fb16

[kde-misc/milou] Sync with tree

Package-Manager: portage-2.2.10

---
 kde-misc/milou/milou-4..ebuild | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/kde-misc/milou/milou-4..ebuild 
b/kde-misc/milou/milou-4..ebuild
index 57b8364..303c453 100644
--- a/kde-misc/milou/milou-4..ebuild
+++ b/kde-misc/milou/milou-4..ebuild
@@ -5,6 +5,8 @@
 EAPI=5
 
 KDE_MINIMAL="4.13"
+KDE_LINGUAS="bs ca cs da de el es fi fr hu ja ko lt nds nl pl pt pt_BR ro sk sv
+uk zh_CN zh_TW"
 inherit kde4-base
 
 DESCRIPTION="Dedicated search application built on top of Baloo"
@@ -15,8 +17,10 @@ SLOT="4"
 KEYWORDS=""
 IUSE="debug"
 
-DEPEND="
+RDEPEND="
$(add_kdebase_dep baloo)
$(add_kdebase_dep kdepimlibs)
 "
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}
+   $(add_kdebase_dep kfilemetadata)
+"



[gentoo-commits] proj/hardened-dev:uclibc commit in: sys-libs/uclibc/

2014-05-12 Thread Anthony G. Basile
commit: 516940ae74d6f1a8cbaa7ca7cf449d5bd6ca42dc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon May 12 21:47:42 2014 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon May 12 21:47:42 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=516940ae

sys-libs/uclibc: fix src_unpack

Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: 0xF52D4BBA

---
 sys-libs/uclibc/uclibc-0.9.33..ebuild | 8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/sys-libs/uclibc/uclibc-0.9.33..ebuild 
b/sys-libs/uclibc/uclibc-0.9.33..ebuild
index 2be3c93..21c1de2 100644
--- a/sys-libs/uclibc/uclibc-0.9.33..ebuild
+++ b/sys-libs/uclibc/uclibc-0.9.33..ebuild
@@ -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/sys-libs/uclibc/uclibc-.ebuild,v 1.6 
2013/05/19 05:36:27 vapier Exp $
 
@@ -211,11 +211,7 @@ src_config() {
 }
 
 src_unpack() {
-   if [[ ${PV} == "" ]] ; then
-   git-2_src_unpack
-   else
-   unpack ${A}
-   fi
+   git-2_src_unpack
cd "${S}"
if [[ -n ${PATCH_VER} ]] ; then
EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/patch



[gentoo-commits] gentoo-x86 commit in kde-misc/milou: ChangeLog metadata.xml milou-0.1.ebuild

2014-05-12 Thread Johannes Huber (johu)
johu14/05/12 21:46:51

  Added:ChangeLog metadata.xml milou-0.1.ebuild
  Log:
  New package. Import from kde overlay.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F3CFD2BD)

Revision  ChangesPath
1.1  kde-misc/milou/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/milou/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/milou/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===
# ChangeLog for kde-misc/milou
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/milou/ChangeLog,v 1.1 2014/05/12 
21:46:51 johu Exp $

*milou-0.1 (12 May 2014)

  12 May 2014; Johannes Huber  +milou-0.1.ebuild,
  +metadata.xml:
  New package. Import from kde overlay.




1.1  kde-misc/milou/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/milou/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/milou/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

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

kde




1.1  kde-misc/milou/milou-0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/milou/milou-0.1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/milou/milou-0.1.ebuild?rev=1.1&content-type=text/plain

Index: milou-0.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/milou/milou-0.1.ebuild,v 1.1 
2014/05/12 21:46:51 johu Exp $

EAPI=5

KDE_MINIMAL="4.13"
KDE_LINGUAS="bs ca cs da de el es fi fr hu ja ko lt nds nl pl pt pt_BR ro sk sv
uk zh_CN zh_TW"
inherit kde4-base

DESCRIPTION="Dedicated search application built on top of Baloo"
HOMEPAGE="https://projects.kde.org/projects/extragear/base/milou";
SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${P}.tar.xz"

LICENSE="GPL-2 LGPL-2.1"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug"

RDEPEND="
$(add_kdebase_dep baloo)
$(add_kdebase_dep kdepimlibs)
"
DEPEND="${RDEPEND}
$(add_kdebase_dep kfilemetadata)
"






[gentoo-commits] gentoo-x86 commit in kde-misc/milou: - New directory

2014-05-12 Thread Johannes Huber (johu)
johu14/05/12 21:44:34

  Log:
  Directory /var/cvsroot/gentoo-x86/kde-misc/milou added to the repository



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

2014-05-12 Thread Michal Gorny (mgorny)
mgorny  14/05/12 21:32:11

  Modified: ChangeLog
  Added:emul-linux-x86-baselibs-20140508-r1.ebuild
  Log:
  Add new version with openssl.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

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

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

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog,v
retrieving revision 1.205
retrieving revision 1.206
diff -u -r1.205 -r1.206
--- ChangeLog   11 May 2014 09:22:16 -  1.205
+++ ChangeLog   12 May 2014 21:32:11 -  1.206
@@ -1,6 +1,12 @@
 # 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.205 
2014/05/11 09:22:16 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog,v 1.206 
2014/05/12 21:32:11 mgorny Exp $
+
+*emul-linux-x86-baselibs-20140508-r1 (12 May 2014)
+
+  12 May 2014; Michał Górny 
+  +emul-linux-x86-baselibs-20140508-r1.ebuild, 
+files/remove-native-20140508-r1:
+  Add new version with openssl.
 
   11 May 2014; Michał Górny  files/remove-native-20140508:
   Update remove-native for gmp, bug #509990.



1.1  
app-emulation/emul-linux-x86-baselibs/emul-linux-x86-baselibs-20140508-r1.ebuild

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

Index: emul-linux-x86-baselibs-20140508-r1.ebuild
===
# 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-baselibs/emul-linux-x86-baselibs-20140508-r1.ebuild,v
 1.1 2014/05/12 21:32:11 mgorny Exp $

EAPI=5
inherit emul-linux-x86

LICENSE="Artistic GPL-1 GPL-2 GPL-3 BSD BSD-2 BZIP2 AFL-2.1 LGPL-2.1 BSD-4 MIT
public-domain LGPL-3 LGPL-2 GPL-2-with-exceptions MPL-1.1 OPENLDAP
Sleepycat UoI-NCSA ZLIB openafs-krb5-a HPND ISC RSA IJG libmng libtiff
openssl tcp_wrappers_license"

KEYWORDS="-* ~amd64"
IUSE="abi_x86_32"

DEPEND=""
RDEPEND="!=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)]
)
abi_x86_32? (
>=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)]
>=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)]
>=media-libs/libpng-1.5.16-r1:0[abi_x86_32(-)]
>=dev-libs/udis86-1.7-r2[abi_x86_32(-)]
>=virtual/libffi-3.0.13-r1[abi_x86_32(-)]
>=sys-devel/llvm-3.3-r1[abi_x86_32(-)]
>=media-libs/libpng-1.2.50-r1:1.2[abi_x86_32(-)]
virtual/jpeg:62[abi_x86_32(-)]
>=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)]
>=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)]
>=dev-libs/expat-2.1.0-r3[abi_x86_32(-)]
>=virtual/libusb-0-r1:0[abi_x86_32(-)]
>=virtual/libusb-1-r1:1[abi_x86_32(-)]
|| (
>=virtual/udev-206-r1[abi_x86_32(-)]
~virtual/udev-204[abi_x86_32(-)] )
>=media-libs/tiff-4.0.3-r5:0[abi_x86_32(-)]
>=sys-apps/attr-2.4.47-r1[abi_x86_32(-)]
>=dev-libs/glib-2.36.3-r2:2[abi_x86_32(-)]
>=media-libs/lcms-2.5-r1:2[abi_x86_32(-)]
>=app-text/libpaper-1.1.24-r2[abi_x86_32(-)]
>=media-libs/tiff-3.9.7-r1:3[abi_x86_32(-)]
|| (
>=dev-libs/elfutils-0.155-r1[abi_x86_32(-)]
>=dev-libs/libelf-0.8.13-r2[abi_x86_32(-)]
)
>=sys-libs/e2fsprogs-libs-1.42.7-r1[abi_x86_32(-)]
>=sys-libs/ncurses-5.9-r3[abi_x86_32(-)]
>=sys-libs/gpm-1.20.7-r2[abi_x86_32(-)]
>=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)]
>=dev-libs/libpcre-8.33-r1[abi_x86_32(-)]
>=sys-apps/dbus-1.6.18-r1[abi_x86_32(-)]
>=sys-apps/tcp-wrappers-7.6.22-r1[abi_x86_32(-)]
>=sys-libs/gdbm-1.10-r1[abi_x86_32(-)]
>=dev-libs/json-c-0.11-r1[abi_x8

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

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

  Added:remove-native-20140508-r1
  Log:
  Add new version with openssl.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

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

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

Index: remove-native-20140508-r1
===
lib32/libz.so.1
lib32/libz.so.1.2.8
usr/lib32/libz.so
usr/lib32/pkgconfig/zlib.pc
usr/lib32/libminizip.so
usr/lib32/libminizip.so.1
usr/lib32/libminizip.so.1.0.0
usr/lib32/pkgconfig/minizip.pc
lib32/libbz2.so.1
lib32/libbz2.so.1.0
lib32/libbz2.so.1.0.6
usr/lib32/libbz2.so
usr/lib32/libpng.so
usr/lib32/libpng16.so
usr/lib32/libpng16.so.16
usr/lib32/libpng16.so.16.10.0
usr/lib32/pkgconfig/libpng.pc
usr/lib32/pkgconfig/libpng16.pc
usr/lib32/libudis86.so
usr/lib32/libudis86.so.0
usr/lib32/libudis86.so.0.0.0
usr/lib32/libffi-3.0.13/include/ffi.h
usr/lib32/libffi-3.0.13/include/ffitarget.h
usr/lib32/libffi.so
usr/lib32/libffi.so.6
usr/lib32/libffi.so.6.0.1
usr/lib32/pkgconfig/libffi.pc
usr/lib32/LLVMHello.so
usr/lib32/libLLVM-3.3.so
usr/lib32/libLTO.so
usr/lib32/libprofile_rt.so
usr/lib32/libpng12.so.0
usr/lib32/libraw1394.so
usr/lib32/libraw1394.so.11
usr/lib32/libraw1394.so.11.1.0
usr/lib32/pkgconfig/libraw1394.pc
usr/lib32/libavc1394.so
usr/lib32/libavc1394.so.0
usr/lib32/libavc1394.so.0.3.0
usr/lib32/pkgconfig/libavc1394.pc
usr/lib32/librom1394.so
usr/lib32/librom1394.so.0
usr/lib32/librom1394.so.0.3.0
usr/lib32/libjpeg.so
usr/lib32/libturbojpeg.so
usr/lib32/libturbojpeg.so.0
usr/lib32/libturbojpeg.so.0.0.0
usr/lib32/libjpeg.so.62
usr/lib32/libexpat.so
usr/lib32/libexpat.so.1
usr/lib32/libexpat.so.1.6.0
usr/lib32/libexpatu.so
usr/lib32/libexpatu.so.1
usr/lib32/libexpatu.so.1.6.0
usr/lib32/libexpatw.so
usr/lib32/libexpatw.so.1
usr/lib32/libexpatw.so.1.6.0
usr/lib32/pkgconfig/expat.pc
usr/lib32/pkgconfig/expatu.pc
usr/lib32/pkgconfig/expatw.pc
lib32/libusb-0.1.so.4
lib32/libusb-0.1.so.4.4.4
usr/lib32/libusb-1.0.so
lib32/libusb-1.0.so.0
lib32/libusb-1.0.so.0.1.0
usr/lib32/libusb.so
usr/lib32/pkgconfig/libusb-1.0.pc
usr/lib32/pkgconfig/libusb.pc
lib32/libudev.so.1
lib32/libudev.so.1.4.0
usr/lib32/libudev.so
usr/lib32/pkgconfig/libudev.pc
usr/lib32/libjpeg.so.62.1.0
usr/lib32/libtiff.so
usr/lib32/libtiff.so.5
usr/lib32/libtiff.so.5.2.0
usr/lib32/libtiffxx.so
usr/lib32/libtiffxx.so.5
usr/lib32/libtiffxx.so.5.2.0
usr/lib32/pkgconfig/libtiff-4.pc
lib32/libattr.so.1
lib32/libattr.so.1.1.0
usr/lib32/libattr.so
usr/lib32/glib-2.0/include/glibconfig.h
usr/lib32/libglib-2.0.so
usr/lib32/libglib-2.0.so.0
usr/lib32/libglib-2.0.so.0.3800.2
usr/lib32/pkgconfig/glib-2.0.pc
usr/lib32/libgmodule-2.0.so
usr/lib32/libgmodule-2.0.so.0
usr/lib32/libgmodule-2.0.so.0.3800.2
usr/lib32/pkgconfig/gmodule-2.0.pc
usr/lib32/libgio-2.0.so
usr/lib32/libgio-2.0.so.0
usr/lib32/libgio-2.0.so.0.3800.2
usr/lib32/pkgconfig/gio-2.0.pc
usr/lib32/libgobject-2.0.so
usr/lib32/libgobject-2.0.so.0
usr/lib32/libgobject-2.0.so.0.3800.2
usr/lib32/pkgconfig/gobject-2.0.pc
usr/lib32/libgthread-2.0.so
usr/lib32/libgthread-2.0.so.0
usr/lib32/libgthread-2.0.so.0.3800.2
usr/lib32/pkgconfig/gthread-2.0.pc
usr/lib32/pkgconfig/gio-unix-2.0.pc
usr/lib32/pkgconfig/gmodule-export-2.0.pc
usr/lib32/pkgconfig/gmodule-no-export-2.0.pc
usr/lib32/liblcms2.so
usr/lib32/liblcms2.so.2
usr/lib32/liblcms2.so.2.0.5
usr/lib32/pkgconfig/lcms2.pc
usr/lib32/libpaper.so
usr/lib32/libpaper.so.1
usr/lib32/libpaper.so.1.1.2
usr/lib32/libtiff.so.3
usr/lib32/libtiff.so.4
usr/lib32/libtiffxx.so.3
usr/lib32/libtiffxx.so.4
usr/lib32/elfutils/libebl_aarch64-0.158.so
usr/lib32/elfutils/libebl_aarch64.so
usr/lib32/elfutils/libebl_alpha-0.158.so
usr/lib32/elfutils/libebl_alpha.so
usr/lib32/elfutils/libebl_arm-0.158.so
usr/lib32/elfutils/libebl_arm.so
usr/lib32/elfutils/libebl_i386-0.158.so
usr/lib32/elfutils/libebl_i386.so
usr/lib32/elfutils/libebl_ia64-0.158.so
usr/lib32/elfutils/libebl_ia64.so
usr/lib32/elfutils/libebl_ppc-0.158.so
usr/lib32/elfutils/libebl_ppc.so
usr/lib32/elfutils/libebl_ppc64-0.158.so
usr/lib32/elfutils/libebl_ppc64.so
usr/lib32/elfutils/libebl_s390-0.158.so
usr/lib32/elfutils/libebl_s390.so
usr/lib32/elfutils/libebl_sh-0.158.so
usr/lib32/elfutils/libebl_sh.so
usr/lib32/elfutils/libebl_sparc-0.158.so
usr/lib32/elfutils/libebl_sparc.so
usr/lib32/elfutils/libebl_tilegx-0.158.so
usr/lib32/elfutils/libebl_tilegx.so
usr/lib32/elfutils/libebl_x86_64-0.158.so
usr/lib32/elfutils/libebl_x86_64.so
usr/lib32/libelf-0.158.so
usr/lib32/libelf.so
usr/lib32/libelf.so.1
usr/lib32/libasm-0.158.so
usr/lib32/libasm.so
usr/lib32/libasm.so.1
usr/lib32/libdw-0.158.so
usr/li

[gentoo-commits] gentoo-x86 commit in dev-libs/openssl: openssl-1.0.2_beta1-r3.ebuild ChangeLog

2014-05-12 Thread Michal Gorny (mgorny)
mgorny  14/05/12 21:25:57

  Modified: ChangeLog
  Added:openssl-1.0.2_beta1-r3.ebuild
  Log:
  Introduce multilib support, bug #488418.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.535dev-libs/openssl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/ChangeLog?rev=1.535&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/ChangeLog?rev=1.535&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/ChangeLog?r1=1.534&r2=1.535

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.534
retrieving revision 1.535
diff -u -r1.534 -r1.535
--- ChangeLog   29 Apr 2014 21:24:21 -  1.534
+++ ChangeLog   12 May 2014 21:25:57 -  1.535
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/openssl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.534 
2014/04/29 21:24:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.535 
2014/05/12 21:25:57 mgorny Exp $
+
+*openssl-1.0.2_beta1-r3 (12 May 2014)
+
+  12 May 2014; Michał Górny  +openssl-1.0.2_beta1-r3.ebuild:
+  Introduce multilib support, bug #488418.
 
   29 Apr 2014; Mike Frysinger  openssl-0.9.8y.ebuild:
   Drop upgrade logic for avoiding collisions as these versions are very old at



1.1  dev-libs/openssl/openssl-1.0.2_beta1-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-1.0.2_beta1-r3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-1.0.2_beta1-r3.ebuild?rev=1.1&content-type=text/plain

Index: openssl-1.0.2_beta1-r3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.2_beta1-r3.ebuild,v 1.1 
2014/05/12 21:25:57 mgorny Exp $

EAPI="4"

inherit eutils flag-o-matic toolchain-funcs multilib multilib-minimal

REV="1.7"
MY_P=${P/_/-}
DESCRIPTION="full-strength general purpose cryptography library (including SSL 
and TLS)"
HOMEPAGE="http://www.openssl.org/";
SRC_URI="mirror://openssl/source/${MY_P}.tar.gz
http://dev.gentoo.org/~polynomial-c/${P}-patches-02.tar.xz

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/${PN}/${PN}-c_rehash.sh?rev=${REV}
 -> ${PN}-c_rehash.sh.${REV}"

LICENSE="openssl"
SLOT="0"
#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
IUSE="bindist gmp kerberos rfc3779 sse2 static-libs test +tls-heartbeat vanilla 
zlib"

# The blocks are temporary just to make sure people upgrade to a
# version that lack runtime version checking.  We'll drop them in
# the future.
RDEPEND="gmp? ( dev-libs/gmp[static-libs(+)?,${MULTILIB_USEDEP}] )
zlib? ( sys-libs/zlib[static-libs(+)?,${MULTILIB_USEDEP}] )
kerberos? ( app-crypt/mit-krb5 )
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20140508
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)
! "${WORKDIR}"/c_rehash || die #416717

# Make sure we only ever touch Makefile.org and avoid patching a file
# that gets blown away anyways by the Configure script in src_configure
rm -f Makefile

if ! use vanilla ; then
epatch "${FILESDIR}"/${PN}-1.0.0a-ldflags.patch #327421
epatch "${FILESDIR}"/${PN}-1.0.0d-windres.patch #373743
epatch "${FILESDIR}"/${PN}-1.0.0h-pkg-config.patch
epatch "${FILESDIR}"/${PN}-1.0.2-parallel-build.patch
epatch "${FILESDIR}"/${PN}-1.0.2-ipv6.patch
epatch "${FILESDIR}"/${PN}-1.0.2_beta1-perl-5.18.patch #497286
epatch "${FILESDIR}"/${PN}-1.0.1e-s_client-verify.patch #472584
epatch 
"${FILESDIR}"/${PN}-1.0.1f-revert-alpha-perl-generation.patch #499086

# upstream fixes taken from 1.0.2_stable branch at openssl.git
# repository.
EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" \
epatch "${WORKDIR}/patches"

epatch_user #332661
fi

# disable fips in the build
# make sure the man pages are suffixed #302165
# don't bother building man pages if they're disabled
sed -i \
-e '/DIRS/s: fips : :g' \
-e '/^MANSUFFIX/s:=.*:=ssl:' \
-e '/^MAKEDEPPROG/s:=.*:=$(CC):' \
-e $(has noman FEATURES \
   

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

2014-05-12 Thread Michal Gorny (mgorny)
mgorny  14/05/12 21:24:15

  Modified: ChangeLog package.mask
  Log:
  Mask multilib openssl before committing.

Revision  ChangesPath
1.8951   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8950
retrieving revision 1.8951
diff -u -r1.8950 -r1.8951
--- ChangeLog   12 May 2014 17:40:51 -  1.8950
+++ ChangeLog   12 May 2014 21:24:14 -  1.8951
@@ -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.8950 2014/05/12 
17:40:51 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8951 2014/05/12 
21:24:14 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!
 
   12 May 2014; Michał Górny  package.mask:
+  Mask multilib openssl before committing.
+
+  12 May 2014; Michał Górny  package.mask:
   Mask multilib avahi for review/testing.
 
   12 May 2014; Luca Barbato  package.mask:



1.15679  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15678
retrieving revision 1.15679
diff -u -r1.15678 -r1.15679
--- package.mask12 May 2014 17:40:52 -  1.15678
+++ package.mask12 May 2014 21:24:14 -  1.15679
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15678 2014/05/12 
17:40:52 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15679 2014/05/12 
21:24:14 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
@@ -477,6 +477,8 @@
 >=app-emulation/emul-linux-x86-soundlibs-20140406-r1
 >=dev-libs/libdaemon-0.14-r2
 >=net-dns/avahi-0.6.31-r5
+>=dev-libs/openssl-1.0.2_beta1-r3
+>=app-emulation/emul-linux-x86-baselibs-20140508-r1
 
 # Luca Barbato  (20 Feb 2014)
 # Beta ebuild, unmask to test the tree.






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

2014-05-12 Thread Michal Gorny (mgorny)
mgorny  14/05/12 20:49:04

  Modified: pypy-bin-2.2.1-r1.ebuild ChangeLog
  Log:
  Remove the versioned deps, they are too painful to maintain for a minor tool 
like PyPy.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.3  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.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy-bin/pypy-bin-2.2.1-r1.ebuild?rev=1.3&content-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.2&r2=1.3

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.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pypy-bin-2.2.1-r1.ebuild9 May 2014 06:10:04 -   1.2
+++ pypy-bin-2.2.1-r1.ebuild12 May 2014 20:49:04 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/pypy-bin/pypy-bin-2.2.1-r1.ebuild,v 1.2 
2014/05/09 06:10:04 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/pypy-bin/pypy-bin-2.2.1-r1.ebuild,v 1.3 
2014/05/12 20:49:04 mgorny Exp $
 
 EAPI=5
 
@@ -60,17 +60,13 @@
 
 # yep, world would be easier if people started filling subslots...
 RDEPEND="
-   ~app-arch/bzip2-1.0.6:0
-   ~dev-libs/expat-2.1.0:0
-   ( =dev-libs/libffi-3.0.11:0 )
-   ( =dev-libs/openssl-1.0.1c:0 )
-   ( =sys-libs/glibc-2.15:2.2 )
-   ~sys-libs/ncurses-5.9:5
-   ( =sys-libs/zlib-1.2.7:0 )
+   app-arch/bzip2:0
+   dev-libs/expat:0
+   dev-libs/libffi:0
+   dev-libs/openssl:0
+   sys-libs/glibc:2.2
+   sys-libs/ncurses:5
+   sys-libs/zlib:0
sqlite? ( dev-db/sqlite:3 )
tk? ( dev-lang/tk:0 )
!dev-python/pypy:0"



1.18 dev-python/pypy-bin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   9 May 2014 06:10:04 -   1.17
+++ ChangeLog   12 May 2014 20:49:04 -  1.18
@@ -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.17 
2014/05/09 06:10:04 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/ChangeLog,v 1.18 
2014/05/12 20:49:04 mgorny Exp $
+
+  12 May 2014; Michał Górny  pypy-bin-2.2.1-r1.ebuild:
+  Remove the versioned deps, they are too painful to maintain for a minor tool
+  like PyPy.
 
   09 May 2014; Michał Górny  pypy-bin-2.2.1-r1.ebuild:
   Add USE=tk for tkinter modules. Update the list of cffi-compiled modules. Bug






[gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/selinux: selinux-handbook.xml

2014-05-12 Thread Sven Vermeulen (swift)
swift   14/05/12 20:19:00

  Modified: selinux-handbook.xml
  Log:
  SELinux handbook is now obsolete, all is now in SELinux wiki

Revision  ChangesPath
1.17 xml/htdocs/proj/en/hardened/selinux/selinux-handbook.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/selinux/selinux-handbook.xml?rev=1.17&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/selinux/selinux-handbook.xml?rev=1.17&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/selinux/selinux-handbook.xml?r1=1.16&r2=1.17

Index: selinux-handbook.xml
===
RCS file: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/hardened/selinux/selinux-handbook.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- selinux-handbook.xml24 Jun 2012 11:54:39 -  1.16
+++ selinux-handbook.xml12 May 2014 20:19:00 -  1.17
@@ -1,9 +1,9 @@
 
 
 
-
+
 
-
+
 Gentoo SELinux Handbook
 
 






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

2014-05-12 Thread Sebastien Fabbro
commit: c53b06a989ec9c366652c58a9b63bb7a125b1395
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon May 12 19:25:39 2014 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Mon May 12 19:25:39 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c53b06a9

mumps now in main tree

---
 sci-libs/mumps/ChangeLog  |  43 
 sci-libs/mumps/metadata.xml   |  18 
 sci-libs/mumps/mumps-4.10.0-r2.ebuild | 184 --
 3 files changed, 245 deletions(-)

diff --git a/sci-libs/mumps/ChangeLog b/sci-libs/mumps/ChangeLog
deleted file mode 100644
index 46b5d6d..000
--- a/sci-libs/mumps/ChangeLog
+++ /dev/null
@@ -1,43 +0,0 @@
-# ChangeLog for sci-libs/mumps
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  17 Jun 2013; Justin Bronder  mumps-4.10.0-r2.ebuild:
-  Don't let openmpi override malloc, works around sandbox issue in #462602
-
-*mumps-4.10.0-r2 (11 Dec 2012)
-
-  11 Dec 2012; Sébastien Fabbro  +mumps-4.10.0-r2.ebuild,
-  -mumps-4.10.0-r1.ebuild, metadata.xml:
-  sci-libs/mumps: Install libpord, force -j1 on makefile because of random
-  parallel build failures, separate dummy sequential mpi library from the 
common
-  mumps library
-
-  15 Jul 2012; Sébastien Fabbro  mumps-4.10.0-r1.ebuild:
-  sci-libs/mumps: Merge dummy sequential mpi into sequential mumps
-
-  13 Jul 2012; Sébastien Fabbro  mumps-4.10.0.ebuild:
-  sci-libs/mumps: fix underlinking for sequential library
-
-  12 Jul 2012; Sébastien Fabbro  mumps-4.10.0.ebuild:
-  sci-libs/mumps: Shared library fixes and prefix love
-
-  12 Jul 2012; Sébastien Fabbro  mumps-4.10.0.ebuild:
-  sci-libs/mumps: prefix love
-
-  13 Mar 2012; Sébastien Fabbro  mumps-4.10.0.ebuild,
-  metadata.xml:
-  Fixed for sequential (non mpi) libraries
-
-  12 Mar 2012; Sébastien Fabbro  mumps-4.10.0.ebuild:
-  Only allow earlier parmetis versions
-
-  12 Mar 2012; Sébastien Fabbro  +mumps-4.10.0.ebuild,
-  +metadata.xml:
-  metis-mpi is now parmetis
-
-*mumps-4.10.0 (01 Jun 2011)
-
-  01 Jun 2011; Sébastien Fabbro  +mumps-4.10.0.ebuild,
-  +metadata.xml:
-  Initial import

diff --git a/sci-libs/mumps/metadata.xml b/sci-libs/mumps/metadata.xml
deleted file mode 100644
index 3aa8aad..000
--- a/sci-libs/mumps/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-sci
-
-  MUltifrontal Massively Parallel sparse direct Solver implements a
-  direct solver for large sparse linear systems, with a particular
-  focus on symmetric positive definite matrices. It can operate on
-  distributed matrices e.g. over a cluster. It has Fortran and C
-  interfaces, and can interface with ordering tools such 
-  as Scotch or Metis.
-
-
-  Enable matrix ordering with METIS
-  (sci-libs/metis, sci-libs/parmetis)
-  Enable matrix ordering with 
sci-libs/scotch
-
-

diff --git a/sci-libs/mumps/mumps-4.10.0-r2.ebuild 
b/sci-libs/mumps/mumps-4.10.0-r2.ebuild
deleted file mode 100644
index dc27d83..000
--- a/sci-libs/mumps/mumps-4.10.0-r2.ebuild
+++ /dev/null
@@ -1,184 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-inherit eutils toolchain-funcs flag-o-matic versionator fortran-2 multilib
-
-MYP=MUMPS_${PV}
-
-DESCRIPTION="MUltifrontal Massively Parallel sparse direct matrix Solver"
-HOMEPAGE="http://mumps.enseeiht.fr/";
-SRC_URI="${HOMEPAGE}${MYP}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples metis mpi +scotch static-libs"
-
-RDEPEND="
-   virtual/blas
-   metis? ( || ( sci-libs/metis  Makefile.inc || die
-   # fixed a missing copy of libseq to libdir
-}
-
-src_configure() {
-   LIBADD="$($(tc-getPKG_CONFIG) --libs blas) -Llib -lpord"
-   local ord="-Dpord"
-   if use metis && use mpi; then
-   sed -i \
-   -e "s:#\s*\(LMETIS\s*=\).*:\1$($(tc-getPKG_CONFIG) 
--libs parmetis):" \
-   -e "s:#\s*\(IMETIS\s*=\).*:\1$($(tc-getPKG_CONFIG) 
--cflags parmetis):" \
-   Makefile.inc || die
-   LIBADD="${LIBADD} $($(tc-getPKG_CONFIG) --libs parmetis)"
-   ord="${ord} -Dparmetis"
-   elif use metis; then
-   sed -i \
-   -e "s:#\s*\(LMETIS\s*=\).*:\1$($(tc-getPKG_CONFIG) 
--libs metis):" \
-   -e "s:#\s*\(IMETIS\s*=\).*:\1$($(tc-getPKG_CONFIG) 
--cflags metis):" \
-   Makefile.inc || die
-   LIBADD="${LIBADD} $($(tc-getPKG_CONFIG) --libs metis)"
-   ord="${ord} -Dmetis"
-   fi
-   if use scotch && use mpi; then
-   sed -i \
-   -e "s:#\s*\(LSCOTCH\s*=\).*:\1-lptesmumps -lptscotch 
-lptscotcherr:" \
-   -e 
"s:#\s*\(ISCOTCH\s*=\).*:\1-I${EROOT}usr/include/scotch:" \
-

[gentoo-commits] gentoo-x86 commit in sys-fs/lvm2: metadata.xml lvm2-2.02.106.ebuild ChangeLog

2014-05-12 Thread Samuli Suominen (ssuominen)
ssuominen14/05/12 19:08:30

  Modified: metadata.xml lvm2-2.02.106.ebuild ChangeLog
  Log:
  Remove USE="cache" and always enable it, either "shared" or "internal" 
because it doesn't introduce any dependencies.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.20 sys-fs/lvm2/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/metadata.xml?rev=1.20&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/metadata.xml?rev=1.20&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/metadata.xml?r1=1.19&r2=1.20

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/lvm2/metadata.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- metadata.xml12 May 2014 18:14:13 -  1.19
+++ metadata.xml12 May 2014 19:08:29 -  1.20
@@ -11,7 +11,6 @@
Upstream Maintainer (please CC on 
bugs)


-   Enable support for cache[pool] segment 
types
Allow users to build clustered lvm2
Cman support for clustered lvm
Allow users to build lvm2 with lvm1 
support



1.2  sys-fs/lvm2/lvm2-2.02.106.ebuild

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

Index: lvm2-2.02.106.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.02.106.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lvm2-2.02.106.ebuild12 May 2014 18:14:13 -  1.1
+++ lvm2-2.02.106.ebuild12 May 2014 19:08:29 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.02.106.ebuild,v 1.1 
2014/05/12 18:14:13 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.02.106.ebuild,v 1.2 
2014/05/12 19:08:29 ssuominen Exp $
 
 EAPI=5
 inherit autotools eutils linux-info multilib systemd toolchain-funcs udev 
flag-o-matic
@@ -13,7 +13,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="cache readline static static-libs clvm cman lvm1 lvm2create_initrd 
selinux +udev +thin device-mapper-only"
+IUSE="readline static static-libs clvm cman lvm1 lvm2create_initrd selinux 
+udev +thin device-mapper-only"
 REQUIRED_USE="device-mapper-only? ( !clvm !cman !lvm1 !lvm2create_initrd !thin 
)"
 
 DEPEND_COMMON="clvm? ( cman? ( =sys-cluster/cman-3* ) =sys-cluster/libdlm-3* )
@@ -158,11 +158,7 @@
myconf="${myconf} --with-clvmd=none --with-cluster=none"
fi
 
-   if use cache; then
-   myconf="${myconf} --with-cache=${buildmode}"
-   else
-   myconf="${myconf} --with-cache=none"
-   fi
+   myconf="${myconf} --with-cache=${buildmode}"
 
econf \
$(use_enable readline) \



1.350sys-fs/lvm2/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/lvm2/ChangeLog,v
retrieving revision 1.349
retrieving revision 1.350
diff -u -r1.349 -r1.350
--- ChangeLog   12 May 2014 18:14:13 -  1.349
+++ ChangeLog   12 May 2014 19:08:29 -  1.350
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/lvm2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/ChangeLog,v 1.349 2014/05/12 
18:14:13 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/ChangeLog,v 1.350 2014/05/12 
19:08:29 ssuominen Exp $
+
+  12 May 2014; Samuli Suominen  lvm2-2.02.106.ebuild,
+  metadata.xml:
+  Remove USE="cache" and always enable it, either "shared" or "internal" 
because
+  it doesn't introduce any dependencies.
 
 *lvm2-2.02.106 (12 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/activesupport: ChangeLog activesupport-4.0.3.ebuild activesupport-3.2.17.ebuild activesupport-4.1.0.ebuild activesupport-4.0.4.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 19:03:25

  Modified: ChangeLog
  Removed:  activesupport-4.0.3.ebuild
activesupport-3.2.17.ebuild
activesupport-4.1.0.ebuild
activesupport-4.0.4.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.257dev-ruby/activesupport/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog   6 May 2014 19:59:54 -   1.256
+++ ChangeLog   12 May 2014 19:03:25 -  1.257
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/activesupport
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.256 
2014/05/06 19:59:54 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.257 
2014/05/12 19:03:25 graaff Exp $
+
+  12 May 2014; Hans de Graaff  -activesupport-3.2.17.ebuild,
+  -activesupport-4.0.3.ebuild, -activesupport-4.0.4.ebuild,
+  -activesupport-4.1.0.ebuild:
+  Cleanup.
 
 *activesupport-4.1.1 (06 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/activemodel: ChangeLog activemodel-4.0.3.ebuild activemodel-4.1.0.ebuild activemodel-3.2.17.ebuild activemodel-4.0.4.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 19:03:08

  Modified: ChangeLog
  Removed:  activemodel-4.0.3.ebuild activemodel-4.1.0.ebuild
activemodel-3.2.17.ebuild activemodel-4.0.4.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.79 dev-ruby/activemodel/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog   6 May 2014 20:00:09 -   1.78
+++ ChangeLog   12 May 2014 19:03:08 -  1.79
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/activemodel
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/ChangeLog,v 1.78 
2014/05/06 20:00:09 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/ChangeLog,v 1.79 
2014/05/12 19:03:08 graaff Exp $
+
+  12 May 2014; Hans de Graaff  -activemodel-3.2.17.ebuild,
+  -activemodel-4.0.3.ebuild, -activemodel-4.0.4.ebuild,
+  -activemodel-4.1.0.ebuild:
+  Cleanup.
 
 *activemodel-4.1.1 (06 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/activeresource: ChangeLog activeresource-3.2.17.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 19:02:50

  Modified: ChangeLog
  Removed:  activeresource-3.2.17.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.172dev-ruby/activeresource/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog   6 May 2014 18:51:29 -   1.171
+++ ChangeLog   12 May 2014 19:02:50 -  1.172
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/activeresource
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/ChangeLog,v 1.171 
2014/05/06 18:51:29 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/ChangeLog,v 1.172 
2014/05/12 19:02:50 graaff Exp $
+
+  12 May 2014; Hans de Graaff 
+  -activeresource-3.2.17.ebuild:
+  Cleanup.
 
 *activeresource-3.2.18 (06 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/actionpack: ChangeLog actionpack-4.0.3.ebuild actionpack-4.1.0.ebuild actionpack-4.0.4.ebuild actionpack-3.2.17.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 19:02:17

  Modified: ChangeLog
  Removed:  actionpack-4.0.3.ebuild actionpack-4.1.0.ebuild
actionpack-4.0.4.ebuild actionpack-3.2.17.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.279dev-ruby/actionpack/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v
retrieving revision 1.278
retrieving revision 1.279
diff -u -r1.278 -r1.279
--- ChangeLog   6 May 2014 20:00:29 -   1.278
+++ ChangeLog   12 May 2014 19:02:17 -  1.279
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/actionpack
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.278 
2014/05/06 20:00:29 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.279 
2014/05/12 19:02:17 graaff Exp $
+
+  12 May 2014; Hans de Graaff  -actionpack-3.2.17.ebuild,
+  -actionpack-4.0.3.ebuild, -actionpack-4.0.4.ebuild, -actionpack-4.1.0.ebuild:
+  Cleanup.
 
 *actionpack-4.1.1 (06 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/actionview: ChangeLog actionview-4.1.0.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 19:02:24

  Modified: ChangeLog
  Removed:  actionview-4.1.0.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.3  dev-ruby/actionview/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionview/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   6 May 2014 20:00:17 -   1.2
+++ ChangeLog   12 May 2014 19:02:24 -  1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/actionview
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionview/ChangeLog,v 1.2 
2014/05/06 20:00:17 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionview/ChangeLog,v 1.3 
2014/05/12 19:02:24 graaff Exp $
+
+  12 May 2014; Hans de Graaff  -actionview-4.1.0.ebuild:
+  Cleanup.
 
 *actionview-4.1.1 (06 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/activerecord: ChangeLog activerecord-4.0.3.ebuild activerecord-4.1.0.ebuild activerecord-4.0.4.ebuild activerecord-3.2.17.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 19:01:53

  Modified: ChangeLog
  Removed:  activerecord-4.0.3.ebuild activerecord-4.1.0.ebuild
activerecord-4.0.4.ebuild
activerecord-3.2.17.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.268dev-ruby/activerecord/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v
retrieving revision 1.267
retrieving revision 1.268
diff -u -r1.267 -r1.268
--- ChangeLog   7 May 2014 19:21:58 -   1.267
+++ ChangeLog   12 May 2014 19:01:53 -  1.268
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/activerecord
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.267 
2014/05/07 19:21:58 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.268 
2014/05/12 19:01:53 graaff Exp $
+
+  12 May 2014; Hans de Graaff  -activerecord-3.2.17.ebuild,
+  -activerecord-4.0.3.ebuild, -activerecord-4.0.4.ebuild,
+  -activerecord-4.1.0.ebuild:
+  Cleanup.
 
   07 May 2014; Manuel Rüger  activerecord-4.0.3.ebuild,
   activerecord-4.0.4.ebuild, activerecord-4.0.5.ebuild,






[gentoo-commits] gentoo-x86 commit in dev-ruby/actionmailer: ChangeLog actionmailer-4.1.0.ebuild actionmailer-3.2.17.ebuild actionmailer-4.0.4.ebuild actionmailer-4.0.3.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 19:02:04

  Modified: ChangeLog
  Removed:  actionmailer-4.1.0.ebuild
actionmailer-3.2.17.ebuild
actionmailer-4.0.4.ebuild actionmailer-4.0.3.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.261dev-ruby/actionmailer/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -r1.260 -r1.261
--- ChangeLog   6 May 2014 20:00:43 -   1.260
+++ ChangeLog   12 May 2014 19:02:04 -  1.261
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/actionmailer
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v 1.260 
2014/05/06 20:00:43 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v 1.261 
2014/05/12 19:02:04 graaff Exp $
+
+  12 May 2014; Hans de Graaff  -actionmailer-3.2.17.ebuild,
+  -actionmailer-4.0.3.ebuild, -actionmailer-4.0.4.ebuild,
+  -actionmailer-4.1.0.ebuild:
+  Cleanup.
 
 *actionmailer-4.1.1 (06 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/railties: ChangeLog railties-3.2.17.ebuild railties-4.0.4.ebuild railties-4.1.0.ebuild railties-4.0.3.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 19:01:35

  Modified: ChangeLog
  Removed:  railties-3.2.17.ebuild railties-4.0.4.ebuild
railties-4.1.0.ebuild railties-4.0.3.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.78 dev-ruby/railties/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/railties/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog   6 May 2014 21:20:17 -   1.77
+++ ChangeLog   12 May 2014 19:01:35 -  1.78
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/railties
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/ChangeLog,v 1.77 
2014/05/06 21:20:17 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/ChangeLog,v 1.78 
2014/05/12 19:01:35 graaff Exp $
+
+  12 May 2014; Hans de Graaff  -railties-3.2.17.ebuild,
+  -railties-4.0.3.ebuild, -railties-4.0.4.ebuild, -railties-4.1.0.ebuild:
+  Cleanup.
 
   06 May 2014; Manuel Rüger  railties-3.2.17.ebuild,
   railties-3.2.18.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-4.1.0.ebuild rails-4.0.4.ebuild rails-4.0.3.ebuild rails-3.2.17.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 19:01:22

  Modified: ChangeLog
  Removed:  rails-4.1.0.ebuild rails-4.0.4.ebuild
rails-4.0.3.ebuild rails-3.2.17.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.291dev-ruby/rails/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -r1.290 -r1.291
--- ChangeLog   6 May 2014 20:01:16 -   1.290
+++ ChangeLog   12 May 2014 19:01:22 -  1.291
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.290 2014/05/06 
20:01:16 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.291 2014/05/12 
19:01:22 graaff Exp $
+
+  12 May 2014; Hans de Graaff  -rails-3.2.17.ebuild,
+  -rails-4.0.3.ebuild, -rails-4.0.4.ebuild, -rails-4.1.0.ebuild:
+  Cleanup.
 
 *rails-4.1.1 (06 May 2014)
 






[gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-9999.ebuild ChangeLog

2014-05-12 Thread Mike Frysinger (vapier)
vapier  14/05/12 18:55:14

  Modified: qemu-.ebuild ChangeLog
  Log:
  Drop patch now that it is merged upstream #510068 by Hristo Venev.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.70 app-emulation/qemu/qemu-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/qemu-.ebuild?rev=1.70&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/qemu-.ebuild?rev=1.70&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/qemu-.ebuild?r1=1.69&r2=1.70

Index: qemu-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-.ebuild,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- qemu-.ebuild25 Apr 2014 22:56:26 -  1.69
+++ qemu-.ebuild12 May 2014 18:55:14 -  1.70
@@ -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/qemu/qemu-.ebuild,v 1.69 
2014/04/25 22:56:26 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-.ebuild,v 1.70 
2014/05/12 18:55:14 vapier Exp $
 
 EAPI=5
 
@@ -229,7 +229,6 @@
Makefile Makefile.target || die
 
epatch "${FILESDIR}"/qemu-1.7.0-cflags.patch
-   epatch "${FILESDIR}"/qemu--virtfs-proxy-helper-accept.patch
[[ -n ${BACKPORTS} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" 
EPATCH_SOURCE="${S}/patches" \
epatch



1.258app-emulation/qemu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.258&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.258&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.257&r2=1.258

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
retrieving revision 1.257
retrieving revision 1.258
diff -u -r1.257 -r1.258
--- ChangeLog   25 Apr 2014 22:56:26 -  1.257
+++ ChangeLog   12 May 2014 18:55:14 -  1.258
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/qemu
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.257 
2014/04/25 22:56:26 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.258 
2014/05/12 18:55:14 vapier Exp $
+
+  12 May 2014; Mike Frysinger  qemu-.ebuild:
+  Drop patch now that it is merged upstream #510068 by Hristo Venev.
 
   25 Apr 2014; Mike Frysinger  qemu-2.0.0.ebuild,
   qemu-.ebuild:






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-power-manager: xfce4-power-manager-1.2.0_p20140511.ebuild ChangeLog

2014-05-12 Thread Samuli Suominen (ssuominen)
ssuominen14/05/12 18:31:16

  Modified: xfce4-power-manager-1.2.0_p20140511.ebuild
ChangeLog
  Log:
  Remove keywording as the package is clearly not compatible with 
sys-power/upower built with --enable-deprecated wrt #510096
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.3  
xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140511.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140511.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140511.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140511.ebuild?r1=1.2&r2=1.3

Index: xfce4-power-manager-1.2.0_p20140511.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140511.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xfce4-power-manager-1.2.0_p20140511.ebuild  11 May 2014 17:05:03 -  
1.2
+++ xfce4-power-manager-1.2.0_p20140511.ebuild  12 May 2014 18:31:16 -  
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/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140511.ebuild,v
 1.2 2014/05/11 17:05:03 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140511.ebuild,v
 1.3 2014/05/12 18:31:16 ssuominen Exp $
 
 EAPI=5
 [[ ${PV} == *_p* ]] && EAUTORECONF=1
@@ -13,7 +13,8 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+#KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS=""
 IUSE="debug kernel_linux networkmanager policykit +udisks 
+xfce_plugins_brightness"
 
 COMMON_DEPEND=">=dev-libs/dbus-glib-0.100.2



1.71 xfce-extra/xfce4-power-manager/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog?rev=1.71&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog?rev=1.71&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog   11 May 2014 17:06:13 -  1.70
+++ ChangeLog   12 May 2014 18:31:16 -  1.71
@@ -1,6 +1,11 @@
 # ChangeLog for xfce-extra/xfce4-power-manager
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog,v 
1.70 2014/05/11 17:06:13 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog,v 
1.71 2014/05/12 18:31:16 ssuominen Exp $
+
+  12 May 2014; Samuli Suominen 
+  xfce4-power-manager-1.2.0_p20140511.ebuild:
+  Remove keywording as the package is clearly not compatible with sys-
+  power/upower built with --enable-deprecated wrt #510096
 
   11 May 2014; Samuli Suominen 
   xfce4-power-manager-1.2.0-r2.ebuild:






[gentoo-commits] gentoo-x86 commit in sys-fs/lvm2: lvm2-2.02.106.ebuild metadata.xml ChangeLog

2014-05-12 Thread Samuli Suominen (ssuominen)
ssuominen14/05/12 18:14:13

  Modified: metadata.xml ChangeLog
  Added:lvm2-2.02.106.ebuild
  Log:
  Version bump wrt #507812 by Alexander Tsoy; introduce USE="cache" and refresh 
2 patches so that they apply again (no real changes in them)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.19 sys-fs/lvm2/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/metadata.xml?rev=1.19&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/metadata.xml?rev=1.19&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/metadata.xml?r1=1.18&r2=1.19

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/lvm2/metadata.xml,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- metadata.xml2 Feb 2014 06:20:21 -   1.18
+++ metadata.xml12 May 2014 18:14:13 -  1.19
@@ -11,6 +11,7 @@
Upstream Maintainer (please CC on 
bugs)


+   Enable support for cache[pool] segment 
types
Allow users to build clustered lvm2
Cman support for clustered lvm
Allow users to build lvm2 with lvm1 
support



1.349sys-fs/lvm2/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/lvm2/ChangeLog,v
retrieving revision 1.348
retrieving revision 1.349
diff -u -r1.348 -r1.349
--- ChangeLog   9 Mar 2014 07:01:44 -   1.348
+++ ChangeLog   12 May 2014 18:14:13 -  1.349
@@ -1,6 +1,15 @@
 # ChangeLog for sys-fs/lvm2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/ChangeLog,v 1.348 2014/03/09 
07:01:44 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/ChangeLog,v 1.349 2014/05/12 
18:14:13 ssuominen Exp $
+
+*lvm2-2.02.106 (12 May 2014)
+
+  12 May 2014; Samuli Suominen 
+  +files/lvm2-2.02.106-pthread-pkgconfig.patch,
+  +files/lvm2-2.02.106-static-pkgconfig-libs.patch, +lvm2-2.02.106.ebuild,
+  metadata.xml:
+  Version bump wrt #507812 by Alexander Tsoy; introduce USE="cache" and refresh
+  2 patches so that they apply again (no real changes in them)
 
   09 Mar 2014; Mike Frysinger 
   +files/lvm2-2.02.105-readline-6.3.patch, lvm2-2.02.105-r2.ebuild:



1.1  sys-fs/lvm2/lvm2-2.02.106.ebuild

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

Index: lvm2-2.02.106.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.02.106.ebuild,v 1.1 
2014/05/12 18:14:13 ssuominen Exp $

EAPI=5
inherit autotools eutils linux-info multilib systemd toolchain-funcs udev 
flag-o-matic

DESCRIPTION="User-land utilities for LVM2 (device-mapper) software."
HOMEPAGE="http://sources.redhat.com/lvm2/";
SRC_URI="ftp://sources.redhat.com/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz
ftp://sources.redhat.com/pub/lvm2/old/${PN/lvm/LVM}.${PV}.tgz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="cache readline static static-libs clvm cman lvm1 lvm2create_initrd 
selinux +udev +thin device-mapper-only"
REQUIRED_USE="device-mapper-only? ( !clvm !cman !lvm1 !lvm2create_initrd !thin 
)"

DEPEND_COMMON="clvm? ( cman? ( =sys-cluster/cman-3* ) =sys-cluster/libdlm-3* )
readline? ( sys-libs/readline )
udev? ( >=virtual/udev-200[static-libs?] )"
# /run is now required for locking during early boot. /var cannot be assumed to
# be available -- thus, pull in recent enough baselayout for /run.
# This version of LVM is incompatible with cryptsetup <1.1.2.
RDEPEND="${DEPEND_COMMON}
>=sys-apps/baselayout-2.2
!=sys-apps/util-linux-2.16
lvm2create_initrd? ( sys-apps/makedev )
thin? ( >=sys-block/thin-provisioning-tools-0.3.0 )"
# note: thin- 0.3.0 is required to avoid --disable-thin_check_needs_check
DEPEND="${DEPEND_COMMON}
virtual/pkgconfig
>=sys-devel/binutils-2.20.1-r1
static? (
selinux? ( sys-libs/libselinux[static-libs] )
   

[gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp/files: net-snmp-5.1.2-snmpconf-selinux.patch

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 18:19:50

  Modified: net-snmp-5.1.2-snmpconf-selinux.patch
  Log:
  Clean up patch.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.2  
net-analyzer/net-snmp/files/net-snmp-5.1.2-snmpconf-selinux.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/net-snmp/files/net-snmp-5.1.2-snmpconf-selinux.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/net-snmp/files/net-snmp-5.1.2-snmpconf-selinux.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/net-snmp/files/net-snmp-5.1.2-snmpconf-selinux.patch?r1=1.1&r2=1.2

Index: net-snmp-5.1.2-snmpconf-selinux.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/net-snmp/files/net-snmp-5.1.2-snmpconf-selinux.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- net-snmp-5.1.2-snmpconf-selinux.patch   6 Jun 2008 20:06:33 -   
1.1
+++ net-snmp-5.1.2-snmpconf-selinux.patch   12 May 2014 18:19:50 -  
1.2
@@ -1,7 +1,7 @@
 https://bugzilla.redhat.com/show_bug.cgi?id=248329
 
 net-snmp-5.1.2/local/snmpconf.orig 2004-04-20 16:20:51.0 +0200
-+++ net-snmp-5.1.2/local/snmpconf  2007-07-09 15:34:48.0 +0200
+--- a/local/snmpconf
 b/local/snmpconf
 @@ -585,6 +585,7 @@
}
}






[gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 18:19:50

  Modified: ChangeLog
  Log:
  Clean up patch.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.285net-analyzer/net-snmp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -r1.284 -r1.285
--- ChangeLog   11 May 2014 08:05:26 -  1.284
+++ ChangeLog   12 May 2014 18:19:50 -  1.285
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.284 
2014/05/11 08:05:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.285 
2014/05/12 18:19:50 jer Exp $
+
+  12 May 2014; Jeroen Roovers 
+  files/net-snmp-5.1.2-snmpconf-selinux.patch:
+  Clean up patch.
 
   11 May 2014; Agostino Sarubbo  net-snmp-5.7.3_pre3.ebuild:
   Stable for ppc64, wrt bug #509110






[gentoo-commits] proj/mysql-extras:master commit in: /

2014-05-12 Thread Brian Evans
commit: 60766180cefff3b43d4d20d0a82496a2d334cb1a
Author: Brian Evans  gentoo  org>
AuthorDate: Mon May 12 18:19:25 2014 +
Commit: Brian Evans  lavabit  com>
CommitDate: Mon May 12 18:19:25 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/mysql-extras.git;a=commit;h=60766180

Fix index

---
 0_index.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/0_index.txt b/0_index.txt
index 4a1d471..9cb418b 100644
--- a/0_index.txt
+++ b/0_index.txt
@@ -1625,13 +1625,13 @@
 @@ Also install static libs by ENABLE_STATIC_LIBS
 
 @patch 20006_all_cmake_elib-mariadb-10.0.7.patch
-@ver 10.00.07.00 to 10.10.99.99
+@ver 10.00.07.00 to 10.00.10.99
 @pn mariadb
 @@ Add ELIBPATH to split client and embedded libs
 @@ Also install static libs by ENABLE_STATIC_LIBS
 
 @patch 20006_all_cmake_elib-mariadb-10.0.11.patch
-@ver 10.00.11.00 to 10.10.99.99
+@ver 10.00.11.00 to 10.00.99.99
 @pn mariadb
 @@ Add ELIBPATH to split client and embedded libs
 @@ Also install static libs by ENABLE_STATIC_LIBS



[gentoo-commits] gentoo-x86 commit in dev-ruby/rspec: ChangeLog rspec-1.3.2.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 18:18:44

  Modified: ChangeLog rspec-1.3.2.ebuild
  Log:
  Avoid specs that fail with newer fakefs and are not correct to begin with, 
bug 340385.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.161dev-ruby/rspec/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec/ChangeLog,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- ChangeLog   5 Apr 2014 23:24:19 -   1.160
+++ ChangeLog   12 May 2014 18:18:44 -  1.161
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/rspec
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/ChangeLog,v 1.160 2014/04/05 
23:24:19 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/ChangeLog,v 1.161 2014/05/12 
18:18:44 graaff Exp $
+
+  12 May 2014; Hans de Graaff  rspec-1.3.2.ebuild:
+  Avoid specs that fail with newer fakefs and are not correct to begin with,
+  bug 340385.
 
   05 Apr 2014; Manuel Rüger  rspec-1.3.2.ebuild:
   Remove ree18 and ruby18 mentioning.



1.19 dev-ruby/rspec/rspec-1.3.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec/rspec-1.3.2.ebuild?rev=1.19&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec/rspec-1.3.2.ebuild?rev=1.19&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec/rspec-1.3.2.ebuild?r1=1.18&r2=1.19

Index: rspec-1.3.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec/rspec-1.3.2.ebuild,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- rspec-1.3.2.ebuild  5 Apr 2014 23:24:19 -   1.18
+++ rspec-1.3.2.ebuild  12 May 2014 18:18:44 -  1.19
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/rspec-1.3.2.ebuild,v 1.18 
2014/04/05 23:24:19 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/rspec-1.3.2.ebuild,v 1.19 
2014/05/12 18:18:44 graaff Exp $
 
 EAPI=2
 USE_RUBY="ruby19 jruby"
@@ -64,6 +64,12 @@
# Drop heckle dependency.
rm spec/spec/runner/heckler_spec.rb 
spec/spec/runner/heckle_runner_spec.rb || die
sed -i -e '381,398 s:^:#:' spec/spec/runner/option_parser_spec.rb || die
+
+   # Remove broken spec.opts related tests. These were always broken
+   # because they don't set up state properly, but only with
+   # >=fakefs-0.4.2 this started throwing exceptions, bug 340385.
+   sed -i -e '/implicitly loading spec/,/^  end/ s:^:#:' 
spec/spec/runner/option_parser_spec.rb || die
+
 }
 
 src_test() {






[gentoo-commits] proj/mysql-extras:master commit in: /

2014-05-12 Thread Brian Evans
commit: 840585ed77b204d9731ec2259ccef4a32c63ca28
Author: Brian Evans  gentoo  org>
AuthorDate: Mon May 12 18:15:28 2014 +
Commit: Brian Evans  lavabit  com>
CommitDate: Mon May 12 18:15:28 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/mysql-extras.git;a=commit;h=840585ed

Respin patch for mariadb 10.0.11

---
 0_index.txt|   8 +-
 20006_all_cmake_elib-mariadb-10.0.11.patch | 187 +
 2 files changed, 194 insertions(+), 1 deletion(-)

diff --git a/0_index.txt b/0_index.txt
index 3111ac7..4a1d471 100644
--- a/0_index.txt
+++ b/0_index.txt
@@ -1625,7 +1625,13 @@
 @@ Also install static libs by ENABLE_STATIC_LIBS
 
 @patch 20006_all_cmake_elib-mariadb-10.0.7.patch
-@ver 10.00.07.00 to 10.00.99.99
+@ver 10.00.07.00 to 10.10.99.99
+@pn mariadb
+@@ Add ELIBPATH to split client and embedded libs
+@@ Also install static libs by ENABLE_STATIC_LIBS
+
+@patch 20006_all_cmake_elib-mariadb-10.0.11.patch
+@ver 10.00.11.00 to 10.10.99.99
 @pn mariadb
 @@ Add ELIBPATH to split client and embedded libs
 @@ Also install static libs by ENABLE_STATIC_LIBS

diff --git a/20006_all_cmake_elib-mariadb-10.0.11.patch 
b/20006_all_cmake_elib-mariadb-10.0.11.patch
new file mode 100644
index 000..5281bf5
--- /dev/null
+++ b/20006_all_cmake_elib-mariadb-10.0.11.patch
@@ -0,0 +1,187 @@
+diff -ur mysql-old/cmake/install_layout.cmake mysql/cmake/install_layout.cmake
+--- mysql-old/cmake/install_layout.cmake   2014-01-18 22:28:40.431273470 
-0100
 mysql/cmake/install_layout.cmake   2014-01-18 22:40:48.646301163 -0100
+@@ -44,7 +44,8 @@
+ # - INSTALL_SYSCONFDIR(my.cnf config file. Usually /etc or 
nothing)
+ # - INSTALL_SYSCONF2DIR (additional config files, e.g. /etc/mysql/conf.d)
+ #
+-# - INSTALL_LIBDIR  (directory with client end embedded libraries)
++# - INSTALL_LIBDIR  (directory with client libraries)
++# - INSTALL_ELIBDIR (directory with embedded libraries)
+ # - INSTALL_PLUGINDIR   (directory for plugins)
+ #
+ # - INSTALL_INCLUDEDIR  (directory for MySQL headers)
+@@ -120,6 +121,7 @@
+ SET(INSTALL_SCRIPTDIR_STANDALONE"scripts")
+ #
+ SET(INSTALL_LIBDIR_STANDALONE   "lib")
++SET(INSTALL_ELIBDIR_STANDALONE  "lib")
+ SET(INSTALL_PLUGINDIR_STANDALONE"lib/plugin")
+ #
+ SET(INSTALL_INCLUDEDIR_STANDALONE   "include/mysql")
+@@ -150,9 +152,11 @@
+ #
+ IF(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64")
+   SET(INSTALL_LIBDIR_RPM"lib64")
++  SET(INSTALL_ELIBDIR_RPM   "lib64")
+   SET(INSTALL_PLUGINDIR_RPM "lib64/mysql/plugin")
+ ELSE()
+   SET(INSTALL_LIBDIR_RPM"lib")
++  SET(INSTALL_ELIBDIR_RPM   "lib")
+   SET(INSTALL_PLUGINDIR_RPM "lib/mysql/plugin")
+ ENDIF()
+ #
+@@ -183,6 +187,7 @@
+ SET(INSTALL_SYSCONF2DIR_DEB "/etc/mysql/conf.d")
+ #
+ SET(INSTALL_LIBDIR_DEB  "lib")
++SET(INSTALL_ELIBDIR_DEB "lib")
+ SET(INSTALL_PLUGINDIR_DEB   "lib/mysql/plugin")
+ #
+ SET(INSTALL_INCLUDEDIR_DEB  "include/mysql")
+@@ -210,6 +215,7 @@
+ SET(INSTALL_SCRIPTDIR_SVR4  "scripts")
+ #
+ SET(INSTALL_LIBDIR_SVR4 "lib")
++SET(INSTALL_ELIBDIR_SVR4"lib")
+ SET(INSTALL_PLUGINDIR_SVR4  "lib/plugin")
+ #
+ SET(INSTALL_INCLUDEDIR_SVR4 "include/mysql")
+@@ -241,7 +247,7 @@
+ # Set INSTALL_FOODIR variables for chosen layout (for example, INSTALL_BINDIR
+ # will be defined  as ${INSTALL_BINDIR_STANDALONE} by default if STANDALONE
+ # layout is chosen)
+-FOREACH(var BIN SBIN LIB MYSQLSHARE SHARE PLUGIN INCLUDE SCRIPT DOC MAN 
SYSCONF SYSCONF2
++FOREACH(var BIN SBIN LIB ELIB MYSQLSHARE SHARE PLUGIN INCLUDE SCRIPT DOC MAN 
SYSCONF SYSCONF2
+ INFO MYSQLTEST SQLBENCH DOCREADME SUPPORTFILES MYSQLDATA PLUGINTEST 
UNIX_ADDR)
+   SET(INSTALL_${var}DIR  ${INSTALL_${var}DIR_${INSTALL_LAYOUT}}
+   CACHE STRING "${var} installation directory" ${FORCE})
+diff -ur mysql-old/cmake/libutils.cmake mysql/cmake/libutils.cmake
+--- mysql-old/cmake/libutils.cmake 2014-01-18 22:28:40.430273470 -0100
 mysql/cmake/libutils.cmake 2014-01-18 22:28:52.801273941 -0100
+@@ -211,10 +211,11 @@
+ #  [linklib1  linklibN]
+ #  [EXPORTS exported_func1  exportedFuncN]
+ #  [OUTPUT_NAME output_name]
++#  [OUTPUT_DIR output_dir]
+ #)
+ MACRO(MERGE_LIBRARIES)
+   MYSQL_PARSE_ARGUMENTS(ARG
+-"EXPORTS;OUTPUT_NAME;COMPONENT;VERSION;SOVERSION"
++"EXPORTS;OUTPUT_NAME;COMPONENT;VERSION;SOVERSION;OUTPUT_DIR"
+ "STATIC;SHARED;MODULE;NOINSTALL"
+ ${ARGN}
+   )
+@@ -274,7 +275,11 @@
+ IF(ARG_COMPONENT)
+   SET(COMP COMPONENT ${ARG_COMPONENT}) 
+ ENDIF()
+-MYSQL_INSTALL_TARGETS(${TARGET} DESTINATION "${INSTALL_LIBDIR}" ${COMP})
++IF(ARG_OUTPUT_DIR)
++  MYSQL_INSTALL_TARGETS(${TARGET} DESTINATION "${ARG_OUTPUT_DIR}" ${COMP})
++ELSE()
++  MYS

[gentoo-commits] gentoo-x86 commit in sys-fs/lvm2/files: lvm2-2.02.106-static-pkgconfig-libs.patch lvm2-2.02.106-pthread-pkgconfig.patch

2014-05-12 Thread Samuli Suominen (ssuominen)
ssuominen14/05/12 18:14:13

  Added:lvm2-2.02.106-static-pkgconfig-libs.patch
lvm2-2.02.106-pthread-pkgconfig.patch
  Log:
  Version bump wrt #507812 by Alexander Tsoy; introduce USE="cache" and refresh 
2 patches so that they apply again (no real changes in them)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.1  sys-fs/lvm2/files/lvm2-2.02.106-static-pkgconfig-libs.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/files/lvm2-2.02.106-static-pkgconfig-libs.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/files/lvm2-2.02.106-static-pkgconfig-libs.patch?rev=1.1&content-type=text/plain

Index: lvm2-2.02.106-static-pkgconfig-libs.patch
===
--- configure.in
+++ configure.in
@@ -1040,6 +1040,7 @@
])
if test x$BLKID_WIPING = xyes; then
BLKID_PC="blkid"
+   BLKID_STATIC_LIBS=`$PKG_CONFIG --static --libs $BLKID_PC`
AC_DEFINE([BLKID_WIPING_SUPPORT], 1, [Define to 1 to use 
libblkid detection of signatures when wiping.])
fi
 fi
@@ -1068,6 +1069,7 @@
pkg_config_init
fi
PKG_CHECK_MODULES(UDEV, libudev >= 143, [UDEV_PC="libudev"])
+   UDEV_STATIC_LIBS=`$PKG_CONFIG --static --libs libudev`
AC_DEFINE([UDEV_SYNC_SUPPORT], 1, [Define to 1 to enable 
synchronisation with udev processing.])
 fi
 
@@ -1312,19 +1314,32 @@
 if test x$SELINUX = xyes; then
AC_CHECK_LIB([sepol], [sepol_check_context], [
AC_DEFINE([HAVE_SEPOL], 1, [Define to 1 if sepol_check_context 
is available.])
-   SELINUX_LIBS="-lsepol"])
+   SEPOL_LIBS="-lsepol"])
+
+   dnl -- init pkgconfig if required
+   if  test x$PKGCONFIG_INIT != x1; then
+   pkg_config_init
+   fi
+   PKG_CHECK_MODULES(SELINUX, libselinux, [
+   SELINUX_PC="libselinux"
+   SELINUX_STATIC_LIBS=`$PKG_CONFIG --static --libs libselinux`
+   SELINUX_LIBS="$SELINUX_LIBS $SEPOL_LIBS"
+   AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support 
for selinux.])
+   ],[
+   dnl -- old non-pkgconfig method, is buggy with static builds
 
AC_CHECK_LIB([selinux], [is_selinux_enabled], [
AC_CHECK_HEADERS([selinux/selinux.h],, hard_bailout)
AC_CHECK_HEADERS([selinux/label.h])
AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support 
for selinux.])
-   SELINUX_LIBS="-lselinux $SELINUX_LIBS"
+   SELINUX_LIBS="-lselinux $SEPOL_LIBS"
SELINUX_PC="libselinux"
HAVE_SELINUX=yes ], [
AC_MSG_WARN(Disabling selinux)
SELINUX_LIBS=
SELINUX_PC=
HAVE_SELINUX=no ])
+   ])
 fi
 
 

@@ -1638,6 +1653,7 @@
 

 AC_SUBST(APPLIB)
 AC_SUBST(AWK)
+AC_SUBST(BLKID_STATIC_LIBS)
 AC_SUBST(BLKID_PC)
 AC_SUBST(BLKID_WIPING)
 AC_SUBST(BUILD_CMIRRORD)
@@ -1731,6 +1747,7 @@
 AC_SUBST(SALCK_CFLAGS)
 AC_SUBST(SALCK_LIBS)
 AC_SUBST(SELINUX_LIBS)
+AC_SUBST(SELINUX_STATIC_LIBS)
 AC_SUBST(SELINUX_PC)
 AC_SUBST(SNAPSHOTS)
 AC_SUBST(STATICDIR)
@@ -1740,6 +1757,7 @@
 AC_SUBST(THIN_CHECK_CMD)
 AC_SUBST(THIN_DUMP_CMD)
 AC_SUBST(THIN_REPAIR_CMD)
+AC_SUBST(UDEV_STATIC_LIBS)
 AC_SUBST(UDEV_PC)
 AC_SUBST(UDEV_RULES)
 AC_SUBST(UDEV_SYNC)
--- make.tmpl.in
+++ make.tmpl.in
@@ -43,7 +43,7 @@
 
 LIBS = @LIBS@
 # Extra libraries always linked with static binaries
-STATIC_LIBS = $(SELINUX_LIBS) $(UDEV_LIBS) $(BLKID_LIBS)
+STATIC_LIBS = $(SELINUX_STATIC_LIBS) $(UDEV_STATIC_LIBS) $(BLKID_STATIC_LIBS)
 DEFS += @DEFS@
 # FIXME set this only where it's needed, not globally?
 CFLAGS += @CFLAGS@
@@ -57,10 +57,13 @@
 PTHREAD_LIBS = @PTHREAD_LIBS@
 READLINE_LIBS = @READLINE_LIBS@
 SELINUX_LIBS = @SELINUX_LIBS@
+SELINUX_STATIC_LIBS = @SELINUX_STATIC_LIBS@
 UDEV_CFLAGS = @UDEV_CFLAGS@
 UDEV_LIBS = @UDEV_LIBS@
+UDEV_STATIC_LIBS = @UDEV_STATIC_LIBS@
 BLKID_CFLAGS = @BLKID_CFLAGS@
 BLKID_LIBS = @BLKID_LIBS@
+BLKID_STATIC_LIBS = @BLKID_STATIC_LIBS@
 TESTING = @TESTING@
 
 # Setup directory variables



1.1  sys-fs/lvm2/files/lvm2-2.02.106-pthread-pkgconfig.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/files/lvm2-2.02.106-pthread-pkgconfig.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/lvm2/files/lvm2-2.02.106-pthread-pkgconfig.patch?rev=1.1&content-type=text/plain

Index: lvm2-2.02.106-pthread-pkgconfig.patch
===
Make sure that libdm usage always br

[gentoo-commits] gentoo-x86 commit in net-irc/iroffer-dinoex/files: iroffer-dinoex.logrotate

2014-05-12 Thread Mikle Kolyada (zlogene)
zlogene 14/05/12 18:12:31

  Modified: iroffer-dinoex.logrotate
  Log:
  Fix incorrect user/group name wrt bug #510026
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  net-irc/iroffer-dinoex/files/iroffer-dinoex.logrotate

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/iroffer-dinoex/files/iroffer-dinoex.logrotate?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/iroffer-dinoex/files/iroffer-dinoex.logrotate?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/iroffer-dinoex/files/iroffer-dinoex.logrotate?r1=1.1&r2=1.2

Index: iroffer-dinoex.logrotate
===
RCS file: 
/var/cvsroot/gentoo-x86/net-irc/iroffer-dinoex/files/iroffer-dinoex.logrotate,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- iroffer-dinoex.logrotate8 Feb 2013 11:44:38 -   1.1
+++ iroffer-dinoex.logrotate12 May 2014 18:12:30 -  1.2
@@ -1,8 +1,8 @@
-# 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/net-irc/iroffer-dinoex/files/iroffer-dinoex.logrotate,v 
1.1 2013/02/08 11:44:38 pinkbyte Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-irc/iroffer-dinoex/files/iroffer-dinoex.logrotate,v 
1.2 2014/05/12 18:12:30 zlogene Exp $
 
 /var/log/iroffer-dinoex/*.log {
missingok
-   su iroffer-dinoex iroffer-dinoex
+   su iroffer iroffer
 }






[gentoo-commits] gentoo-x86 commit in net-irc/iroffer-dinoex: ChangeLog

2014-05-12 Thread Mikle Kolyada (zlogene)
zlogene 14/05/12 18:12:31

  Modified: ChangeLog
  Log:
  Fix incorrect user/group name wrt bug #510026
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.9  net-irc/iroffer-dinoex/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-irc/iroffer-dinoex/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   15 Jun 2013 21:51:46 -  1.8
+++ ChangeLog   12 May 2014 18:12:31 -  1.9
@@ -1,6 +1,10 @@
 # ChangeLog for net-irc/iroffer-dinoex
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/iroffer-dinoex/ChangeLog,v 1.8 
2013/06/15 21:51:46 zlogene Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/iroffer-dinoex/ChangeLog,v 1.9 
2014/05/12 18:12:31 zlogene Exp $
+
+  12 May 2014; Mikle Kolyada 
+  files/iroffer-dinoex.logrotate:
+  Fix incorrect user/group name wrt bug #510026
 
   15 Jun 2013; Mikle Kolyada  iroffer-dinoex-3.29.ebuild:
   x86 stable wrt bug #473266






[gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r5.ebuild ChangeLog

2014-05-12 Thread Michal Gorny (mgorny)
mgorny  14/05/12 18:08:43

  Modified: ChangeLog
  Added:avahi-0.6.31-r5.ebuild
  Log:
  Enable multilib support, bug #503160.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.262net-dns/avahi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.262&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.262&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.261&r2=1.262

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- ChangeLog   9 Feb 2014 00:48:03 -   1.261
+++ ChangeLog   12 May 2014 18:08:43 -  1.262
@@ -1,6 +1,12 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.261 2014/02/09 
00:48:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.262 2014/05/12 
18:08:43 mgorny Exp $
+
+*avahi-0.6.31-r5 (12 May 2014)
+
+  12 May 2014; Michał Górny  +avahi-0.6.31-r5.ebuild,
+  +files/avahi-0.6.31-build-client-without-daemon.patch:
+  Enable multilib support, bug #503160.
 
 *avahi-0.6.31-r4 (09 Feb 2014)
 



1.1  net-dns/avahi/avahi-0.6.31-r5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r5.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r5.ebuild?rev=1.1&content-type=text/plain

Index: avahi-0.6.31-r5.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r5.ebuild,v 1.1 
2014/05/12 18:08:43 mgorny Exp $

EAPI="5"

PYTHON_COMPAT=( python{2_6,2_7} )
PYTHON_REQ_USE="gdbm"

WANT_AUTOMAKE=1.11

inherit autotools eutils flag-o-matic multilib multilib-minimal mono-env \
python-r1 systemd user

DESCRIPTION="System which facilitates service discovery on a local network"
HOMEPAGE="http://avahi.org/";
SRC_URI="http://avahi.org/download/${P}.tar.gz";

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 
kernel_linux mdnsresponder-compat mono nls python qt4 test utils"

REQUIRED_USE="
utils? ( || ( gtk gtk3 ) )
python? ( dbus gdbm )
mono? ( dbus )
howl-compat? ( dbus )
mdnsresponder-compat? ( dbus )
"

COMMON_DEPEND="
dev-libs/libdaemon
dev-libs/expat
dev-libs/glib:2[${MULTILIB_USEDEP}]
gdbm? ( sys-libs/gdbm[${MULTILIB_USEDEP}] )
qt4? ( dev-qt/qtcore:4 )
gtk? ( x11-libs/gtk+:2 )
gtk3? ( x11-libs/gtk+:3 )
dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
kernel_linux? ( sys-libs/libcap )
introspection? ( dev-libs/gobject-introspection )
mono? (
dev-lang/mono
gtk? ( dev-dotnet/gtk-sharp )
)
python? (
${PYTHON_DEPS}
gtk? ( dev-python/pygtk )
dbus? ( dev-python/dbus-python )
)
bookmarks? (
dev-python/twisted-core
dev-python/twisted-web
)
"

DEPEND="
${COMMON_DEPEND}
dev-util/intltool
virtual/pkgconfig[${MULTILIB_USEDEP}]
doc? (
app-doc/doxygen
)
"

RDEPEND="
${COMMON_DEPEND}
howl-compat? ( !net-misc/howl )
mdnsresponder-compat? ( !net-misc/mDNSResponder )
"

MULTILIB_WRAPPED_HEADERS=(
# necessary until the UI libraries are ported
/usr/include/avahi-qt4/qt-watch.h
/usr/include/avahi-ui/avahi-ui.h
)

pkg_preinst() {
enewgroup netdev
enewgroup avahi
enewuser avahi -1 -1 -1 avahi

if use autoipd; then
enewgroup avahi-autoipd
enewuser avahi-autoipd -1 -1 -1 avahi-autoipd
fi
}

pkg_setup() {
use mono && mono-env_pkg_setup
}

src_prepare() {
if use ipv6; then
sed -i \
-e s/use-ipv6=no/use-ipv6=yes/ \
avahi-daemon/avahi-daemon.conf || die
fi

sed -i\
-e 
"s:\\.\\./\\.\\./\\.\\./doc/avahi-docs/html/:../../../doc/${PF}/html/:" \
doxygen_to_devhelp.xsl || die

# Make gtk utils optional
epatch "${FILESDIR}"/${PN}-0.6.30-optional-gtk-utils.patch

# Fix init scripts for >=open

[gentoo-commits] gentoo-x86 commit in net-dns/avahi/files: avahi-0.6.31-build-client-without-daemon.patch

2014-05-12 Thread Michal Gorny (mgorny)
mgorny  14/05/12 18:08:43

  Added:avahi-0.6.31-build-client-without-daemon.patch
  Log:
  Enable multilib support, bug #503160.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  
net-dns/avahi/files/avahi-0.6.31-build-client-without-daemon.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/files/avahi-0.6.31-build-client-without-daemon.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/files/avahi-0.6.31-build-client-without-daemon.patch?rev=1.1&content-type=text/plain

Index: avahi-0.6.31-build-client-without-daemon.patch
===
>From ce3b83de6aa689c0cefe0b1e85c03a627b537099 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
Date: Mon, 12 May 2014 19:46:22 +0200
Subject: [PATCH] Allow building client without the daemon.

There's no good reason to disallow that, and that's what we specifically
want to do for multilib.
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 0e190ba..c56cf01 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1185,7 +1185,7 @@ fi
 
 BUILD_CLIENT="no   (You need avahi-daemon and D-Bus!)"
 
-if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" ; then
+if "x$HAVE_DBUS" = "xyes" ; then
 BUILD_CLIENT=yes
 fi
 
-- 
1.9.3







[gentoo-commits] gentoo-x86 commit in x11-misc/xbattbar/files: xbattbar-1.4.5.patch

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 17:42:27

  Added:xbattbar-1.4.5.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.1  x11-misc/xbattbar/files/xbattbar-1.4.5.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xbattbar/files/xbattbar-1.4.5.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xbattbar/files/xbattbar-1.4.5.patch?rev=1.1&content-type=text/plain

Index: xbattbar-1.4.5.patch
===
--- a/Makefile
+++ b/Makefile
@@ -11,16 +11,16 @@
 all: $(TARGET) $(APM_CHECK)
 
 $(TARGET): obj/xbattbar.o
-   gcc -o $@ $< -lX11 $(LDFLAGS)
+   $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(shell $(PKG_CONFIG) --libs x11)
 
 obj/xbattbar.o: xbattbar.c obj/stamp
-   gcc -MMD -o $@ -c $< $(CFLAGS)
+   $(CC) $(CFLAGS) $(LDFLAGS) -MMD -o $@ -c $<
 
 $(APM_CHECK): obj/xbattbar-check-apm.o
-   gcc -o $@ $< $(LDFLAGS)
+   $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
 
 obj/xbattbar-check-apm.o: xbattbar-check-apm.c obj/stamp
-   gcc -MMD -D$(OS_TYPE) -o $@ -c $< $(CFLAGS)
+   $(CC) $(CFLAGS) $(LDFLAGS) -MMD -D$(OS_TYPE) -o $@ -c $<
 
 obj/stamp:
mkdir obj
@@ -32,12 +32,12 @@
 
 
 install: $(TARGET) $(APM_CHECK)
-   install -d -m 0755 $(DESTDIR)/usr/lib/$(PROJECT)
+   install -d -m 0755 $(DESTDIR)/usr/$(LIBDIR)/$(PROJECT)
install -d -m 0755 $(DESTDIR)/usr/bin
install -d -m 0755 $(DESTDIR)/usr/share/man/man1
-   install -m 0755 $(APM_CHECK) $(DESTDIR)/usr/lib/$(PROJECT)/
-   install -m 0755 xbattbar-check-acpi $(DESTDIR)/usr/lib/$(PROJECT)/
-   install -m 0755 xbattbar-check-sys  $(DESTDIR)/usr/lib/$(PROJECT)/
+   install -m 0755 $(APM_CHECK) $(DESTDIR)/usr/$(LIBDIR)/$(PROJECT)/
+   install -m 0755 xbattbar-check-acpi $(DESTDIR)/usr/$(LIBDIR)/$(PROJECT)/
+   install -m 0755 xbattbar-check-sys  $(DESTDIR)/usr/$(LIBDIR)/$(PROJECT)/
install -m 0755 $(TARGET) $(DESTDIR)/usr/bin/
install -m 0644 xbattbar.man $(DESTDIR)/usr/share/man/man1/$(PROJECT).1 
 






[gentoo-commits] gentoo-x86 commit in x11-misc/xbattbar: ChangeLog xbattbar-1.4.5.ebuild

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 17:42:27

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

Revision  ChangesPath
1.18 x11-misc/xbattbar/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xbattbar/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   5 Feb 2014 15:17:27 -   1.17
+++ ChangeLog   12 May 2014 17:42:27 -  1.18
@@ -1,6 +1,12 @@
 # ChangeLog for x11-misc/xbattbar
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbattbar/ChangeLog,v 1.17 
2014/02/05 15:17:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbattbar/ChangeLog,v 1.18 
2014/05/12 17:42:27 jer Exp $
+
+*xbattbar-1.4.5 (12 May 2014)
+
+  12 May 2014; Jeroen Roovers  +xbattbar-1.4.5.ebuild,
+  +files/xbattbar-1.4.5.patch:
+  Version bump.
 
 *xbattbar-1.4.4 (05 Feb 2014)
 



1.1  x11-misc/xbattbar/xbattbar-1.4.5.ebuild

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

Index: xbattbar-1.4.5.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbattbar/xbattbar-1.4.5.ebuild,v 
1.1 2014/05/12 17:42:27 jer Exp $

EAPI=5
PYTHON_COMPAT=( python2_{6,7} )
inherit eutils flag-o-matic multilib python-single-r1 toolchain-funcs

DESCRIPTION="Advanced Power Management battery status display for X"
HOMEPAGE="http://packages.qa.debian.org/x/xbattbar.html";
SRC_URI="mirror://debian/pool/main/x/${PN}/${PN}_${PV}.orig.tar.gz"

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

DEPEND="
dev-lang/perl
x11-libs/libX11
"
RDEPEND="
${DEPEND}
${PYTHON_DEPS}
!ppc? ( >=sys-power/acpi-1.5 )
" # ppc has APM

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

sed -i \
-e "s:usr/lib:usr/$(get_libdir):" \
xbattbar.c || die

tc-export PKG_CONFIG
}

src_compile() {
use kernel_linux && append-flags -Dlinux
emake \
CC=$(tc-getCC) \
LIBDIR="$(get_libdir)" \
LDFLAGS="${LDFLAGS}"
python_fix_shebang ${PN}-check-sys
}

src_install() {
emake DESTDIR="${D}" LIBDIR="$(get_libdir)" install
dodoc README
}






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

2014-05-12 Thread Michal Gorny (mgorny)
mgorny  14/05/12 17:40:52

  Modified: ChangeLog package.mask
  Log:
  Mask multilib avahi for review/testing.

Revision  ChangesPath
1.8950   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8949
retrieving revision 1.8950
diff -u -r1.8949 -r1.8950
--- ChangeLog   12 May 2014 16:27:33 -  1.8949
+++ ChangeLog   12 May 2014 17:40:51 -  1.8950
@@ -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.8949 2014/05/12 
16:27:33 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8950 2014/05/12 
17:40:51 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!
 
+  12 May 2014; Michał Górny  package.mask:
+  Mask multilib avahi for review/testing.
+
   12 May 2014; Luca Barbato  package.mask:
   Update the libav10 mask
 



1.15678  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15677
retrieving revision 1.15678
diff -u -r1.15677 -r1.15678
--- package.mask12 May 2014 16:27:33 -  1.15677
+++ package.mask12 May 2014 17:40:52 -  1.15678
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15677 2014/05/12 
16:27:33 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15678 2014/05/12 
17:40:52 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
@@ -476,6 +476,7 @@
 >=net-wireless/bluez-5.18-r1
 >=app-emulation/emul-linux-x86-soundlibs-20140406-r1
 >=dev-libs/libdaemon-0.14-r2
+>=net-dns/avahi-0.6.31-r5
 
 # Luca Barbato  (20 Feb 2014)
 # Beta ebuild, unmask to test the tree.






[gentoo-commits] gentoo-x86 commit in x11-misc/xsnap: ChangeLog xsnap-1.5.11.ebuild xsnap-1.5.15.ebuild

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 17:21:09

  Modified: ChangeLog xsnap-1.5.11.ebuild
  Added:xsnap-1.5.15.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.49 x11-misc/xsnap/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog   4 Jun 2013 01:37:39 -   1.48
+++ ChangeLog   12 May 2014 17:21:09 -  1.49
@@ -1,6 +1,12 @@
 # ChangeLog for x11-misc/xsnap
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.48 2013/06/04 
01:37:39 jer Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.49 2014/05/12 
17:21:09 jer Exp $
+
+*xsnap-1.5.15 (12 May 2014)
+
+  12 May 2014; Jeroen Roovers  xsnap-1.5.11.ebuild,
+  +xsnap-1.5.15.ebuild, +files/xsnap-1.5.15-root_name.patch:
+  Version bump.
 
 *xsnap-1.5.11 (04 Jun 2013)
 



1.2  x11-misc/xsnap/xsnap-1.5.11.ebuild

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

Index: xsnap-1.5.11.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xsnap/xsnap-1.5.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xsnap-1.5.11.ebuild 4 Jun 2013 01:37:39 -   1.1
+++ xsnap-1.5.11.ebuild 12 May 2014 17:21:09 -  1.2
@@ -1,9 +1,9 @@
-# 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/x11-misc/xsnap/xsnap-1.5.11.ebuild,v 1.1 
2013/06/04 01:37:39 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/xsnap-1.5.11.ebuild,v 1.2 
2014/05/12 17:21:09 jer Exp $
 
 EAPI=5
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="Program to interactively take a 'snapshot' of a region of the 
screen"
 HOMEPAGE="ftp://ftp.ac-grenoble.fr/ge/Xutils/";
@@ -36,7 +36,6 @@
 DOCS=( AUTHORS Changelog README )
 
 src_prepare() {
-#  epatch "${FILESDIR}"/${P}-prefix.patch
sed -i \
-e 's|/usr/share/locale|$(LOCALEDIR)|g' \
-e 's|/usr/share/man/man1|$(MANDIR)|g' \
@@ -62,8 +61,3 @@
tc-export CC
emake CCOPTIONS="${CFLAGS}" EXTRA_LDOPTIONS="${LDFLAGS}"
 }
-
-src_install() {
-#  dodir /usr/share/man/man1
-   default
-}



1.1  x11-misc/xsnap/xsnap-1.5.15.ebuild

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

Index: xsnap-1.5.15.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/xsnap-1.5.15.ebuild,v 1.1 
2014/05/12 17:21:09 jer Exp $

EAPI=5
inherit eutils toolchain-funcs

DESCRIPTION="Program to interactively take a 'snapshot' of a region of the 
screen"
HOMEPAGE="ftp://ftp.ac-grenoble.fr/ge/Xutils/";
SRC_URI="ftp://ftp.ac-grenoble.fr/ge/Xutils/${P}.tar.bz2";

LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux"
IUSE=""

COMMON_DEPEND="
media-libs/libpng
virtual/jpeg
x11-libs/libX11
x11-libs/libXft
x11-libs/libXpm
"
RDEPEND="
${COMMON_DEPEND}
media-fonts/font-misc-misc
"
DEPEND="
${COMMON_DEPEND}
app-text/rman
dev-lang/perl
x11-misc/imake
x11-proto/xproto
"

DOCS=( AUTHORS Changelog README )

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

sed -i \
-e 's|/usr/share/locale|$(LOCALEDIR)|g' \
-e 's|/usr/share/man/man1|$(MANDIR)|g' \
-e '/cd po.*install/s|cd.*|$(MAKE) -C po LOCALEDIR=$(LOCALEDIR) 
install|' \
-e '21s|.*|LOCALEDIR = /usr/share/locale|' \
Imakefile || die
sed -i \

[gentoo-commits] gentoo-x86 commit in x11-misc/xsnap/files: xsnap-1.5.15-root_name.patch

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 17:21:09

  Added:xsnap-1.5.15-root_name.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.1  x11-misc/xsnap/files/xsnap-1.5.15-root_name.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsnap/files/xsnap-1.5.15-root_name.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsnap/files/xsnap-1.5.15-root_name.patch?rev=1.1&content-type=text/plain

Index: xsnap-1.5.15-root_name.patch
===
--- a/xsnap.c
+++ b/xsnap.c
@@ -2254,7 +2254,7 @@
if (op_mode == 0)
exitXsnap (NULL, NULL, snap_pixmap, copy_gc);
 
-   if (!root_name)
+   if (*root_name == '\0')
strcpy(output_name, "(stdout)");
 
if (op_mode == 2) {






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

2014-05-12 Thread Michael Palimaka
commit: 880b5710f15677d20f579d187a3a9dbae7c2b43f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon May 12 17:06:15 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon May 12 17:06:15 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=880b5710

[kde-frameworks/khtml] Add missing dependency.

Package-Manager: portage-2.2.8-r1

---
 kde-frameworks/khtml/khtml-4.99.0.ebuild | 1 +
 kde-frameworks/khtml/khtml-.ebuild   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/kde-frameworks/khtml/khtml-4.99.0.ebuild 
b/kde-frameworks/khtml/khtml-4.99.0.ebuild
index 5c6bcbd..54ad046 100644
--- a/kde-frameworks/khtml/khtml-4.99.0.ebuild
+++ b/kde-frameworks/khtml/khtml-4.99.0.ebuild
@@ -44,6 +44,7 @@ RDEPEND="
media-libs/libpng:0=
media-libs/phonon[qt5]
sys-libs/zlib
+   virtual/jpeg:0
X? (
dev-qt/qtx11extras:5
x11-libs/libX11

diff --git a/kde-frameworks/khtml/khtml-.ebuild 
b/kde-frameworks/khtml/khtml-.ebuild
index d834502..8eaa1fe 100644
--- a/kde-frameworks/khtml/khtml-.ebuild
+++ b/kde-frameworks/khtml/khtml-.ebuild
@@ -44,6 +44,7 @@ RDEPEND="
media-libs/libpng:0=
media-libs/phonon[qt5]
sys-libs/zlib
+   virtual/jpeg:0
X? (
dev-qt/qtx11extras:5
x11-libs/libX11



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

2014-05-12 Thread Luca Barbato (lu_zero)
lu_zero 14/05/12 17:03:20

  Modified: ChangeLog libpostproc-.ebuild
  Log:
  Change the main repository
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.23 media-libs/libpostproc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libpostproc/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   11 Aug 2013 21:46:37 -  1.22
+++ ChangeLog   12 May 2014 17:03:20 -  1.23
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libpostproc
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libpostproc/ChangeLog,v 1.22 
2013/08/11 21:46:37 aballier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libpostproc/ChangeLog,v 1.23 
2014/05/12 17:03:20 lu_zero Exp $
+
+  12 May 2014; Luca Barbato  libpostproc-.ebuild:
+  Change main repository
 
   11 Aug 2013; Alexis Ballier 
   libpostproc-0.8.0.20121125.ebuild, libpostproc-.ebuild:



1.9  media-libs/libpostproc/libpostproc-.ebuild

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

Index: libpostproc-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/libpostproc/libpostproc-.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libpostproc-.ebuild 11 Aug 2013 21:46:37 -  1.8
+++ libpostproc-.ebuild 12 May 2014 17:03:20 -  1.9
@@ -1,19 +1,19 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libpostproc/libpostproc-.ebuild,v 1.8 
2013/08/11 21:46:37 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libpostproc/libpostproc-.ebuild,v 1.9 
2014/05/12 17:03:20 lu_zero Exp $
 
 EAPI="4"
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then
SCM="git-2"
-   EGIT_REPO_URI="git://github.com/dwbuiten/postproc.git"
+   EGIT_REPO_URI="git://github.com/lu-zero/postproc.git"
 fi
 
 inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}
 
 DESCRIPTION="Video post processing library"
-HOMEPAGE="https://github.com/dwbuiten/postproc";
+HOMEPAGE="https://github.com/lu-zero/postproc";
 if [ "${PV#}" != "${PV}" ] ; then
SRC_URI=""
 elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot






[gentoo-commits] gentoo-x86 commit in app-editors/emacs-vcs: ChangeLog emacs-vcs-24.3.91.ebuild emacs-vcs-24.4.50_pre20140512.ebuild emacs-vcs-24.4.50_pre20140430.ebuild emacs-vcs-24.3.90.ebuild

2014-05-12 Thread Ulrich Mueller (ulm)
ulm 14/05/12 17:01:28

  Modified: ChangeLog
  Added:emacs-vcs-24.3.91.ebuild
emacs-vcs-24.4.50_pre20140512.ebuild
  Removed:  emacs-vcs-24.4.50_pre20140430.ebuild
emacs-vcs-24.3.90.ebuild
  Log:
  New snapshot of trunk. New pretest from upstream. Remove previous versions 
that are vulnerable to security bug 509830.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.158app-editors/emacs-vcs/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- ChangeLog   5 May 2014 07:05:54 -   1.157
+++ ChangeLog   12 May 2014 17:01:28 -  1.158
@@ -1,6 +1,15 @@
 # ChangeLog for app-editors/emacs-vcs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v 1.157 
2014/05/05 07:05:54 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v 1.158 
2014/05/12 17:01:28 ulm Exp $
+
+*emacs-vcs-24.4.50_pre20140512 (12 May 2014)
+*emacs-vcs-24.3.91 (12 May 2014)
+
+  12 May 2014; Ulrich Müller  -emacs-vcs-24.3.90.ebuild,
+  +emacs-vcs-24.3.91.ebuild, -emacs-vcs-24.4.50_pre20140430.ebuild,
+  +emacs-vcs-24.4.50_pre20140512.ebuild:
+  New snapshot of trunk. New pretest from upstream. Remove previous versions
+  that are vulnerable to security bug 509830.
 
   05 May 2014; Ulrich Müller 
   -emacs-vcs-24.3.50_pre20140331.ebuild, emacs-vcs-24.3.90.ebuild,



1.1  app-editors/emacs-vcs/emacs-vcs-24.3.91.ebuild

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

Index: emacs-vcs-24.3.91.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-vcs/emacs-vcs-24.3.91.ebuild,v 1.1 
2014/05/12 17:01:28 ulm Exp $

EAPI=5

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

if [[ ${PV##*.} =  ]]; then
EBZR_PROJECT="emacs"
EBZR_BRANCH="emacs-24"
EBZR_REPO_URI="bzr://bzr.savannah.gnu.org/emacs/${EBZR_BRANCH}/"
# "Nosmart" is much faster for initial branching.
EBZR_INITIAL_URI="nosmart+${EBZR_REPO_URI}"
EBZR_UNPACK_DIR="${WORKDIR}/emacs"
EBZR_WORKDIR_CHECKOUT="t"   #434746
inherit bzr
S="${EBZR_UNPACK_DIR}"
else
SRC_URI="http://dev.gentoo.org/~ulm/distfiles/emacs-${PV}.tar.xz
mirror://gnu-alpha/emacs/pretest/emacs-${PV}.tar.xz"
# FULL_VERSION keeps the full version number, which is needed in
# order to determine some path information correctly for copy/move
# operations later on
FULL_VERSION="${PV%%_*}"
S="${WORKDIR}/emacs-${FULL_VERSION}"
fi

DESCRIPTION="The extensible, customizable, self-documenting real-time display 
editor"
HOMEPAGE="http://www.gnu.org/software/emacs/";

LICENSE="GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2"
SLOT="24"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="acl alsa aqua athena dbus games gconf gfile gif gnutls gpm gsettings gtk 
+gtk3 gzip-el hesiod imagemagick +inotify jpeg kerberos libxml2 livecd m17n-lib 
motif pax_kernel png selinux sound source svg tiff toolkit-scroll-bars wide-int 
X Xaw3d xft +xpm zlib"
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
acl? ( virtual/acl )
alsa? ( media-libs/alsa-lib )
dbus? ( sys-apps/dbus )
gfile? ( >=dev-libs/glib-2.28.6 )
gnutls? ( net-libs/gnutls )
gpm? ( sys-libs/gpm )
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )
libxml2? ( >=dev-libs/libxml2-2.2.0 )
selinux? ( sys-libs/libselinux )
zlib? ( sys-libs/zlib )
X? (
x11-libs/libXmu
x11-libs/libXt
x11-misc/xbitmaps
gconf? ( >=gnom

[gentoo-commits] gentoo-x86 commit in x11-libs/c++-gtk-utils: c++-gtk-utils-2.2.6.ebuild ChangeLog c++-gtk-utils-2.0.23.ebuild

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 16:56:27

  Modified: ChangeLog
  Added:c++-gtk-utils-2.2.6.ebuild
c++-gtk-utils-2.0.23.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.19 x11-libs/c++-gtk-utils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/c++-gtk-utils/ChangeLog?rev=1.19&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/c++-gtk-utils/ChangeLog?rev=1.19&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/c++-gtk-utils/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/c++-gtk-utils/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   4 Jun 2013 18:53:01 -   1.18
+++ ChangeLog   12 May 2014 16:56:27 -  1.19
@@ -1,6 +1,13 @@
 # ChangeLog for x11-libs/c++-gtk-utils
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/c++-gtk-utils/ChangeLog,v 1.18 
2013/06/04 18:53:01 ssuominen Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/c++-gtk-utils/ChangeLog,v 1.19 
2014/05/12 16:56:27 jer Exp $
+
+*c++-gtk-utils-2.2.6 (12 May 2014)
+*c++-gtk-utils-2.0.23 (12 May 2014)
+
+  12 May 2014; Jeroen Roovers  +c++-gtk-utils-2.0.23.ebuild,
+  +c++-gtk-utils-2.2.6.ebuild:
+  Version bump.
 
 *c++-gtk-utils-2.2.0 (04 Jun 2013)
 



1.1  x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.6.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.6.ebuild?rev=1.1&content-type=text/plain

Index: c++-gtk-utils-2.2.6.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.6.ebuild,v 1.1 
2014/05/12 16:56:27 jer Exp $

EAPI=5
inherit eutils

DESCRIPTION="A library containing a number of classes and functions for 
programming GTK+ programs using C++"
HOMEPAGE="http://cxx-gtk-utils.sourceforge.net/";
SRC_URI="mirror://sourceforge/${PN/++/xx}/${P}.tar.gz"

LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="+gtk nls static-libs"
SLOT="0"

RDEPEND="
>=dev-libs/glib-2.26
gtk? ( x11-libs/gtk+:3 )
"
DEPEND="
${RDEPEND}
nls? ( sys-devel/gettext )
virtual/pkgconfig
"

DOCS=( ChangeLog )

src_configure() {
econf \
$(use_enable nls) \
$(use_with gtk) \
$(use_enable static-libs static) \
--docdir=/usr/share/doc/${PF} \
--htmldir=/usr/share/doc/${PF}/html
}

src_install() {
default
prune_libtool_files
}



1.1  x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.23.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.23.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.23.ebuild?rev=1.1&content-type=text/plain

Index: c++-gtk-utils-2.0.23.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.23.ebuild,v 
1.1 2014/05/12 16:56:27 jer Exp $

EAPI=5
inherit eutils

DESCRIPTION="A library containing a number of classes and functions for 
programming GTK+ programs using C++"
HOMEPAGE="http://cxx-gtk-utils.sourceforge.net/";
SRC_URI="mirror://sourceforge/${PN/++/xx}/${P}.tar.gz"

LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="+gtk nls static-libs"
SLOT="3"

RDEPEND="
>=dev-libs/glib-2.26
gtk? ( x11-libs/gtk+:3 )
"
DEPEND="
${RDEPEND}
nls? ( sys-devel/gettext )
virtual/pkgconfig
"

DOCS=( ChangeLog )

src_configure() {
econf \
$(use_enable nls) \
$(use_with gtk) \
$(use_enable static-libs static) \
--docdir=/usr/share/doc/${PF} \
--htmldir=/usr/share/doc/${PF}/html
}

src_install() {
default
prune_libtool_files
}






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

2014-05-12 Thread Michael Palimaka
commit: 5ca465a8b3cdf9c97d4a46b277046a4333262029
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon May 12 16:48:44 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon May 12 16:48:44 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5ca465a8

[kde-frameworks/kdeclarative] Remove unused dependency.

Package-Manager: portage-2.2.8-r1

---
 kde-frameworks/kdeclarative/kdeclarative-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-frameworks/kdeclarative/kdeclarative-.ebuild 
b/kde-frameworks/kdeclarative/kdeclarative-.ebuild
index 0cc00d5..bad42b2 100644
--- a/kde-frameworks/kdeclarative/kdeclarative-.ebuild
+++ b/kde-frameworks/kdeclarative/kdeclarative-.ebuild
@@ -16,7 +16,6 @@ DEPEND="
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kguiaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)



[gentoo-commits] gentoo-x86 commit in net-misc/youtube-dl: youtube-dl-2014.05.12.ebuild ChangeLog youtube-dl-2014.04.30.1.ebuild youtube-dl-2014.04.03.2.ebuild youtube-dl-2014.04.07.1.ebuild youtube-d

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 16:46:41

  Modified: ChangeLog
  Added:youtube-dl-2014.05.12.ebuild
  Removed:  youtube-dl-2014.04.30.1.ebuild
youtube-dl-2014.04.03.2.ebuild
youtube-dl-2014.04.07.1.ebuild
youtube-dl-2014.04.19.ebuild
youtube-dl-2014.04.21.6.ebuild
youtube-dl-2014.04.11.2.ebuild
youtube-dl-2014.04.01.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.337net-misc/youtube-dl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v
retrieving revision 1.336
retrieving revision 1.337
diff -u -r1.336 -r1.337
--- ChangeLog   5 May 2014 16:11:46 -   1.336
+++ ChangeLog   12 May 2014 16:46:41 -  1.337
@@ -1,6 +1,15 @@
 # ChangeLog for net-misc/youtube-dl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.336 
2014/05/05 16:11:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.337 
2014/05/12 16:46:41 jer Exp $
+
+*youtube-dl-2014.05.12 (12 May 2014)
+
+  12 May 2014; Jeroen Roovers  
-youtube-dl-2014.04.01.3.ebuild,
+  -youtube-dl-2014.04.03.2.ebuild, -youtube-dl-2014.04.07.1.ebuild,
+  -youtube-dl-2014.04.11.2.ebuild, -youtube-dl-2014.04.19.ebuild,
+  -youtube-dl-2014.04.21.6.ebuild, -youtube-dl-2014.04.30.1.ebuild,
+  +youtube-dl-2014.05.12.ebuild:
+  Version bump.
 
 *youtube-dl-2014.05.05 (05 May 2014)
 



1.1  net-misc/youtube-dl/youtube-dl-2014.05.12.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.05.12.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.05.12.ebuild?rev=1.1&content-type=text/plain

Index: youtube-dl-2014.05.12.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.05.12.ebuild,v 1.1 
2014/05/12 16:46:41 jer Exp $

EAPI=5

PYTHON_COMPAT=(python{2_6,2_7,3_3,3_4})
DISTUTILS_SINGLE_IMPL=true
inherit bash-completion-r1 distutils-r1 eutils

DESCRIPTION="Download videos from YouTube.com (and mores sites...)"
HOMEPAGE="http://rg3.github.com/youtube-dl/";
SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz";

LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="offensive test"

DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[coverage(+)] )
"

S="${WORKDIR}/${PN}"

src_prepare() {
if ! use offensive; then
sed -i -e "/__version__/s|'$|-gentoo_no_offensive_sites'|g" \
youtube_dl/version.py || die
local xxx=(
extremetube fourtube mofosex pornhd pornhub pornotube 
redtube
spankwire thisav trutube tube8 xbef xhamster xnxx xtube 
xvideos youjizz youporn
)
sed -i -e $( printf '/%s/d;' ${xxx[@]} ) 
youtube_dl/extractor/__init__.py || die
rm $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \
test/test_age_restriction.py || die
fi
}

src_compile() {
distutils-r1_src_compile
}

src_test() {
emake test
}

src_install() {
python_domodule youtube_dl
dobin bin/${PN}
dodoc CHANGELOG README.txt
doman ${PN}.1
newbashcomp ${PN}.bash-completion ${PN}
python_fix_shebang "${ED}"
}






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

2014-05-12 Thread Michael Palimaka
commit: 50c9b980c72d409fff0e88f47d6b4c6b1bc9e9eb
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon May 12 16:33:18 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon May 12 16:33:18 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=50c9b980

[kde-base/kdbusaddons] Add X USE flag.

Upstream commit: 7446dacc1a58b3c00223ef943929b0ade388429a.

Package-Manager: portage-2.2.8-r1

---
 kde-frameworks/kdbusaddons/kdbusaddons-.ebuild | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/kde-frameworks/kdbusaddons/kdbusaddons-.ebuild 
b/kde-frameworks/kdbusaddons/kdbusaddons-.ebuild
index bf43d4e..a47c482 100644
--- a/kde-frameworks/kdbusaddons/kdbusaddons-.ebuild
+++ b/kde-frameworks/kdbusaddons/kdbusaddons-.ebuild
@@ -10,11 +10,20 @@ inherit kde5
 DESCRIPTION="Framework for registering services and applications according to 
freedesktop standards"
 LICENSE="LGPL-2+"
 KEYWORDS=""
-IUSE=""
+IUSE="X"
 
 RDEPEND="
dev-qt/qtdbus:5
+   X? ( dev-qt/qtx11extras:5 )
 "
 DEPEND="${RDEPEND}
nls? ( dev-qt/linguist-tools:5 )
 "
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package X Qt5X11Extras)
+   )
+
+   kde5_src_configure
+}



[gentoo-commits] proj/qt:master commit in: dev-qt/qtcore/, dev-qt/qtcore/files/

2014-05-12 Thread Davide Pesavento
commit: 70c3a1179797cd8c09c6894e4c34640212511766
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon May 12 16:32:09 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon May 12 16:32:09 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=70c3a117

[dev-qt/qtcore:5] Backport upstream patchset to fix bug #451456.

Package-Manager: portage-2.2.10

---
 .../0001-fix-default-QMAKE_PKGCONFIG_LIBDIR.patch  | 31 +++
 ...-replacement-in-installed-qml-plugin-prl-.patch | 39 +
 ...place-windows-paths-in-installed-qml-plug.patch | 27 ++
 ...pt-to-replace-include-paths-in-meta-files.patch | 57 +
 .../files/0005-reshuffle-code-for-clarity.patch| 89 
 ...e-setup-of-libdir-replacement-in-prl-file.patch | 98 ++
 ...ith-system-paths-when-installing-meta-fil.patch | 64 ++
 dev-qt/qtcore/qtcore-5.3.0_rc.ebuild   | 11 +++
 8 files changed, 416 insertions(+)

diff --git a/dev-qt/qtcore/files/0001-fix-default-QMAKE_PKGCONFIG_LIBDIR.patch 
b/dev-qt/qtcore/files/0001-fix-default-QMAKE_PKGCONFIG_LIBDIR.patch
new file mode 100644
index 000..d2d828d
--- /dev/null
+++ b/dev-qt/qtcore/files/0001-fix-default-QMAKE_PKGCONFIG_LIBDIR.patch
@@ -0,0 +1,31 @@
+From 50bc2b25d8dc3e420be63da7af3b2bc8bd38bb2b Mon Sep 17 00:00:00 2001
+From: Oswald Buddenhagen 
+Date: Mon, 14 Apr 2014 17:07:26 +0200
+Subject: [PATCH 1/7] fix default QMAKE_PKGCONFIG_LIBDIR
+
+it needs neither native separators, nor a trailing separator.
+
+the QMAKE_PKGCONFIG_INCDIR default was already ok.
+
+Change-Id: I1048b3870fd3ca09aa76b41aecda7d90402aa64a
+Reviewed-by: Joerg Bornemann 
+---
+ qmake/generators/makefile.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp
+index a20e8ff..3870d1e 100644
+--- a/qmake/generators/makefile.cpp
 b/qmake/generators/makefile.cpp
+@@ -3217,7 +3217,7 @@ MakefileGenerator::writePkgConfigFile()
+ QString prefix = pkgConfigPrefix();
+ QString libDir = project->first("QMAKE_PKGCONFIG_LIBDIR").toQString();
+ if(libDir.isEmpty())
+-libDir = prefix + Option::dir_sep + "lib" + Option::dir_sep;
++libDir = prefix + "/lib";
+ QString includeDir = project->first("QMAKE_PKGCONFIG_INCDIR").toQString();
+ if(includeDir.isEmpty())
+ includeDir = prefix + "/include";
+-- 
+1.9.2
+

diff --git 
a/dev-qt/qtcore/files/0002-enable-path-replacement-in-installed-qml-plugin-prl-.patch
 
b/dev-qt/qtcore/files/0002-enable-path-replacement-in-installed-qml-plugin-prl-.patch
new file mode 100644
index 000..efc9c08
--- /dev/null
+++ 
b/dev-qt/qtcore/files/0002-enable-path-replacement-in-installed-qml-plugin-prl-.patch
@@ -0,0 +1,39 @@
+From 8d04d622b9ebbe8a6d1ec4d1362b6fc01e56eece Mon Sep 17 00:00:00 2001
+From: Oswald Buddenhagen 
+Date: Mon, 14 Apr 2014 16:28:17 +0200
+Subject: [PATCH 2/7] enable path replacement in installed qml plugin prl files
+ on all platforms
+
+amends 08a2d8df4, take 2.
+
+Change-Id: If827612caf15b0d5d79fea38fa4915b1d36743d6
+Reviewed-by: Joerg Bornemann 
+---
+ mkspecs/features/qml_plugin.prf | 14 ++
+ 1 file changed, 6 insertions(+), 8 deletions(-)
+
+diff --git a/mkspecs/features/qml_plugin.prf b/mkspecs/features/qml_plugin.prf
+index f373957..0b47a2b 100644
+--- a/mkspecs/features/qml_plugin.prf
 b/mkspecs/features/qml_plugin.prf
+@@ -101,11 +101,9 @@ load(qt_common)
+ 
+ load(qml_module)
+ 
+-unix|mingw {
+-!isEmpty(_QMAKE_SUPER_CACHE_): \
+-lib_replace.match = $$dirname(_QMAKE_SUPER_CACHE_)/[^/][^/]*/lib
+-else: \
+-lib_replace.match = $$MODULE_BASE_OUTDIR
+-lib_replace.replace = $$[QT_INSTALL_LIBS/raw]
+-QMAKE_PRL_INSTALL_REPLACE += lib_replace
+-}
++!isEmpty(_QMAKE_SUPER_CACHE_): \
++lib_replace.match = $$dirname(_QMAKE_SUPER_CACHE_)/[^/][^/]*/lib
++else: \
++lib_replace.match = $$MODULE_BASE_OUTDIR
++lib_replace.replace = $$[QT_INSTALL_LIBS/raw]
++QMAKE_PRL_INSTALL_REPLACE += lib_replace
+-- 
+1.9.2
+

diff --git 
a/dev-qt/qtcore/files/0003-properly-replace-windows-paths-in-installed-qml-plug.patch
 
b/dev-qt/qtcore/files/0003-properly-replace-windows-paths-in-installed-qml-plug.patch
new file mode 100644
index 000..318dc63
--- /dev/null
+++ 
b/dev-qt/qtcore/files/0003-properly-replace-windows-paths-in-installed-qml-plug.patch
@@ -0,0 +1,27 @@
+From a5e4d3d4db03ba3092d0d415cee6c5ed1a7b4f5b Mon Sep 17 00:00:00 2001
+From: Oswald Buddenhagen 
+Date: Mon, 14 Apr 2014 17:17:49 +0200
+Subject: [PATCH 3/7] properly replace windows paths in installed qml plugin
+ prl files
+
+amends 53f48a4b, take 2.
+
+Change-Id: Ia20d7879e4e1b6a34d5bb9e36b4fd7f17139b5fe
+Reviewed-by: Joerg Bornemann 
+---
+ mkspecs/features/qml_plugin.prf | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/mkspecs/features/qml_plugin.prf b/mkspecs/features/qml_plugin.prf
+index 0b47a2b..7314cb1 100644
+--- a/mkspe

[gentoo-commits] proj/gamerlay:master commit in: games-strategy/openxcom/

2014-05-12 Thread Azamat H. Hackimov
commit: 37fb6867dec809c7b9e1fda748f4aaefcc48c43d
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Mon May 12 16:28:29 2014 +
Commit: Azamat H. Hackimov  gentoo  ru>
CommitDate: Mon May 12 16:28:29 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=37fb6867

[games-strategy/openxcom] Version bump

Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: A018DE8C

---
 .../{openxcom-0.9_p20140427.ebuild => openxcom-0.9_p20140512.ebuild}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-strategy/openxcom/openxcom-0.9_p20140427.ebuild 
b/games-strategy/openxcom/openxcom-0.9_p20140512.ebuild
similarity index 95%
rename from games-strategy/openxcom/openxcom-0.9_p20140427.ebuild
rename to games-strategy/openxcom/openxcom-0.9_p20140512.ebuild
index 493050c..7c359fe 100644
--- a/games-strategy/openxcom/openxcom-0.9_p20140427.ebuild
+++ b/games-strategy/openxcom/openxcom-0.9_p20140512.ebuild
@@ -9,9 +9,9 @@ inherit cmake-utils games git-2
 DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
 HOMEPAGE="http://openxcom.org/";
 # For translation files
-SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2014_04_27_0630.zip";
+SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2014_05_12_0530.zip";
 EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git";
-EGIT_COMMIT=1daa72dbeefeb9ea24ad0b9032f7b64b3a048d60
+EGIT_COMMIT=225f19ab6a9313905cd21ab937b2fd00f5c5c77a
 
 LICENSE="GPL-3"
 SLOT="0"



[gentoo-commits] gentoo-x86 commit in media-video/libav: ChangeLog libav-10.1.ebuild libav-9.13.ebuild

2014-05-12 Thread Luca Barbato (lu_zero)
lu_zero 14/05/12 16:28:50

  Modified: ChangeLog
  Added:libav-10.1.ebuild libav-9.13.ebuild
  Log:
  New point releases
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.185media-video/libav/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/libav/ChangeLog,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -r1.184 -r1.185
--- ChangeLog   28 Apr 2014 18:10:02 -  1.184
+++ ChangeLog   12 May 2014 16:28:50 -  1.185
@@ -1,6 +1,13 @@
 # ChangeLog for media-video/libav
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/libav/ChangeLog,v 1.184 
2014/04/28 18:10:02 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/libav/ChangeLog,v 1.185 
2014/05/12 16:28:50 lu_zero Exp $
+
+*libav-10.1 (12 May 2014)
+*libav-9.13 (12 May 2014)
+
+  12 May 2014; Luca Barbato  +libav-9.13.ebuild,
+  +libav-10.1.ebuild:
+  New point releases
 
   28 Apr 2014; Michał Górny  libav-9.10-r1.ebuild:
   Replace multilib_build_binaries with multilib_is_native_abi, in order to put



1.1  media-video/libav/libav-10.1.ebuild

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

Index: libav-10.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/libav/libav-10.1.ebuild,v 1.1 
2014/05/12 16:28:50 lu_zero Exp $

EAPI=5

if [[ ${PV} == * ]] ; then
SCM="git-2"
EGIT_REPO_URI="git://git.libav.org/libav.git"
[[ ${PV%} != "" ]] && EGIT_BRANCH="release/${PV%.}"
fi

inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}

DESCRIPTION="Complete solution to record, convert and stream audio and video."
HOMEPAGE="http://libav.org/";
if [[ ${PV} == * ]] ; then
SRC_URI=""
elif [[ ${PV%_p*} != ${PV} ]] ; then # Gentoo snapshot
SRC_URI="http://dev.gentoo.org/~lu_zero/libav/${P}.tar.xz";
else # Official release
SRC_URI="http://${PN}.org/releases/${P}.tar.xz";
fi

SRC_URI+=" test? ( http://dev.gentoo.org/~lu_zero/libav/fate-10.tar.xz )"

LICENSE="LGPL-2.1  gpl? ( GPL-3 )"
SLOT="0/10"
[[ ${PV} == * ]] || KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc 
~ppc64
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
~x64-solaris ~x86-solaris"
IUSE="aac alsa amr bindist +bzip2 cdio cpudetection custom-cflags debug doc
+encode faac fdk frei0r +gpl gsm +hardcoded-tables ieee1394 jack jpeg2k 
mp3
+network openssl opus oss pic pulseaudio rtmp schroedinger sdl speex ssl
static-libs test theora threads tools truetype v4l vaapi vdpau vorbis 
vpx X
x264 xvid +zlib"

# String for CPU features in the useflag[:configure_option] form
# if :configure_option isn't set, it will use 'useflag' as configure option
CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext neon 
ssse3 vis"
for i in ${CPU_FEATURES} ; do
IUSE+=" ${i%:*}"
done

TOOLS="aviocat graph2dot ismindex pktdumper qt-faststart trasher"

RDEPEND="
!media-video/ffmpeg:0
alsa? ( media-libs/alsa-lib )
amr? ( media-libs/opencore-amr )
bzip2? ( app-arch/bzip2 )
cdio? (
|| (
dev-libs/libcdio-paranoia
=media-sound/lame-3.98.3 )
theora? (
>=media-libs/libtheora-1.1.1[encode]
media-libs/libogg
)
vorbis? ( media-libs/libvorbis media-libs/libogg )
x264? ( >=media-libs/x264-0.0.20111017:= )
xvid? ( >=media-libs/xvid-1.1.0 )
)
frei0r? ( media-plugins/frei0r-plugins )
gsm? ( >=media-sound/gsm-1.0.12-r1 )
ieee1394? (
media-libs/libdc1394
sys-libs/libraw1394
)
jack? ( media-sound/jack-audio-connection-kit )
jpeg2k? ( >=media-libs/openjpeg-1.3-r2:0 )
opus? ( media-libs/opus )
pulseaudio? ( media-sound/pulseaudio )
rtmp? ( >=media-video/rtmpdump-2.2f )
ssl? (
openssl? ( dev-libs/openssl )
!openssl? ( net-libs/gnutls )
  

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

2014-05-12 Thread Luca Barbato (lu_zero)
lu_zero 14/05/12 16:27:34

  Modified: ChangeLog package.mask
  Log:
  Update the libav10 mask

Revision  ChangesPath
1.8949   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8948
retrieving revision 1.8949
diff -u -r1.8948 -r1.8949
--- ChangeLog   12 May 2014 04:49:47 -  1.8948
+++ ChangeLog   12 May 2014 16:27:33 -  1.8949
@@ -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.8948 2014/05/12 
04:49:47 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8949 2014/05/12 
16:27:33 lu_zero 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!
 
+  12 May 2014; Luca Barbato  package.mask:
+  Update the libav10 mask
+
   12 May 2014; Ulrich Müller  package.mask:
   Remove masks for dev-libs/clens and dev-java/randomguid, packages removed.
 



1.15677  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15676
retrieving revision 1.15677
diff -u -r1.15676 -r1.15677
--- package.mask12 May 2014 04:49:47 -  1.15676
+++ package.mask12 May 2014 16:27:33 -  1.15677
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15676 2014/05/12 
04:49:47 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15677 2014/05/12 
16:27:33 lu_zero 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
@@ -84,13 +84,13 @@
 >=app-emulation/lxc-1.0.0
 
 # Tom Wijsman  (03 May 2014)
-# Needs to be further tested and revised by both Java and Ruby herds. 
+# Needs to be further tested and revised by both Java and Ruby herds.
 >=dev-java/jruby-1.7.12
 
 # Tom Wijsman  (02 May 2014)
 # Bluetooth support in MATE has incompatibilities with recent BlueZ versions.
-# If you want to try to get this working, unmask net-wireless/mate-bluetooth 
as 
-# well as the bluetooth USE flag on mate-extra/mate-user-share; I can't 
support 
+# If you want to try to get this working, unmask net-wireless/mate-bluetooth as
+# well as the bluetooth USE flag on mate-extra/mate-user-share; I can't support
 # this until the relevant upstreams have moved forward with their 
compatibility.
 #
 # https://bugs.gentoo.org/show_bug.cgi?id=508086
@@ -302,7 +302,7 @@
 dev-cpp/libsexymm
 
 # Patrick Lauer  (09 Apr 2014)
-# Dead upstream, has known dataloss bugs. 
+# Dead upstream, has known dataloss bugs.
 # Please use something more sane: rsnapshot, backuppc, obnam, ...
 app-backup/rdiff-backup
 app-backup/pybackpack
@@ -366,7 +366,7 @@
 
 # Luca Barbato  (30 Mar 2014)
 # Current stable for upstream, pending a tinderbox run.
-~media-video/libav-10
+=media-video/libav-10*
 
 # Chí-Thanh Christopher Nguyễn  (26 Mar 2014)
 # Affected by multiple vulnerabilities, #445916, #471098 and #472280






[gentoo-commits] gentoo-x86 commit in app-emacs/nxml-gentoo-schemas: nxml-gentoo-schemas-20111129.ebuild ChangeLog

2014-05-12 Thread Ulrich Mueller (ulm)
ulm 14/05/12 16:13:35

  Modified: nxml-gentoo-schemas-2029.ebuild ChangeLog
  Log:
  Change HOMEPAGE to be a plain string without variables, bug 408917.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.3  
app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-2029.ebuild

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

Index: nxml-gentoo-schemas-2029.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-2029.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nxml-gentoo-schemas-2029.ebuild 26 Sep 2012 06:25:08 -  1.2
+++ nxml-gentoo-schemas-2029.ebuild 12 May 2014 16:13:35 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-2029.ebuild,v
 1.2 2012/09/26 06:25:08 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-2029.ebuild,v
 1.3 2014/05/12 16:13:35 ulm Exp $
 
 EAPI=4
 
@@ -8,7 +8,7 @@
 inherit elisp
 
 DESCRIPTION="Extension for nxml-mode with Gentoo-specific schemas"
-HOMEPAGE="http://dev.gentoo.org/~flameeyes/${PN}/";
+HOMEPAGE="http://dev.gentoo.org/~flameeyes/nxml-gentoo-schemas/";
 SRC_URI="http://dev.gentoo.org/~flameeyes/${PN}/${P}.tar.bz2";
 
 LICENSE="HPND"
@@ -20,8 +20,8 @@
 src_compile() { :; }
 
 src_install() {
-   insinto ${SITEETC}/${PN}
+   insinto "${SITEETC}/${PN}"
doins schemas.xml *.rnc
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
dodoc DONATING
 }



1.23 app-emacs/nxml-gentoo-schemas/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/nxml-gentoo-schemas/ChangeLog?rev=1.23&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/nxml-gentoo-schemas/ChangeLog?rev=1.23&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/nxml-gentoo-schemas/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/nxml-gentoo-schemas/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   26 Sep 2012 06:25:08 -  1.22
+++ ChangeLog   12 May 2014 16:13:35 -  1.23
@@ -1,6 +1,10 @@
 # ChangeLog for app-emacs/nxml-gentoo-schemas
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/nxml-gentoo-schemas/ChangeLog,v 
1.22 2012/09/26 06:25:08 ulm Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/nxml-gentoo-schemas/ChangeLog,v 
1.23 2014/05/12 16:13:35 ulm Exp $
+
+  12 May 2014; Ulrich Müller 
+  nxml-gentoo-schemas-2029.ebuild:
+  Change HOMEPAGE to be a plain string without variables, bug 408917.
 
   26 Sep 2012; Ulrich Müller 
   nxml-gentoo-schemas-2029.ebuild:






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

2014-05-12 Thread Anthony G. Basile (blueness)
blueness14/05/12 16:00:05

  Modified: ChangeLog
  Added:hardened-sources-3.14.3-r2.ebuild
  Log:
  vanilla-3.14.3 + genpatches-3.14-6 + grsecurity-3.0-3.14.3-201405112005
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1047   sys-kernel/hardened-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1046
retrieving revision 1.1047
diff -u -r1.1046 -r1.1047
--- ChangeLog   12 May 2014 15:57:53 -  1.1046
+++ ChangeLog   12 May 2014 16:00:04 -  1.1047
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1046 2014/05/12 15:57:53 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1047 2014/05/12 16:00:04 blueness Exp $
+
+*hardened-sources-3.14.3-r2 (12 May 2014)
+
+  12 May 2014; Anthony G. Basile 
+  +hardened-sources-3.14.3-r2.ebuild:
+  vanilla-3.14.3 + genpatches-3.14-6 + grsecurity-3.0-3.14.3-201405112005
 
 *hardened-sources-3.2.58-r3 (12 May 2014)
 



1.1  
sys-kernel/hardened-sources/hardened-sources-3.14.3-r2.ebuild

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

Index: hardened-sources-3.14.3-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.14.3-r2.ebuild,v
 1.1 2014/05/12 16:00:04 blueness Exp $

EAPI="5"

ETYPE="sources"
K_WANT_GENPATCHES="base"
K_GENPATCHES_VER="6"
K_DEBLOB_AVAILABLE="1"

inherit kernel-2
detect_version

HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-3"
HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2";
SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"

UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2"
UNIPATCH_EXCLUDE="
1500_XATTR_USER_PREFIX.patch
2900_dev-root-proc-mount-fix.patch"

DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})"
HOMEPAGE="http://www.gentoo.org/proj/en/hardened/";
IUSE="deblob"

KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"

RDEPEND=">=sys-devel/gcc-4.5"

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT="sys-apps/gradm-3.0*"

ewarn
ewarn "Users of grsecurity's RBAC system must ensure they are using"
ewarn "${GRADM_COMPAT}, which is compatible with ${PF}."
ewarn "It is strongly recommended that the following command is issued"
ewarn "prior to booting a ${PF} kernel for the first time:"
ewarn
ewarn "emerge -na =${GRADM_COMPAT}"
ewarn
}






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

2014-05-12 Thread Anthony G. Basile (blueness)
blueness14/05/12 15:57:53

  Modified: ChangeLog
  Added:hardened-sources-3.2.58-r3.ebuild
  Log:
  vanilla-3.2.58 + genpatches-3.2.16 + grsecurity-3.0-3.2.58-201405112002
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1046   sys-kernel/hardened-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v
retrieving revision 1.1045
retrieving revision 1.1046
diff -u -r1.1045 -r1.1046
--- ChangeLog   10 May 2014 23:58:36 -  1.1045
+++ ChangeLog   12 May 2014 15:57:53 -  1.1046
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/hardened-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1045 2014/05/10 23:58:36 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/ChangeLog,v 
1.1046 2014/05/12 15:57:53 blueness Exp $
+
+*hardened-sources-3.2.58-r3 (12 May 2014)
+
+  12 May 2014; Anthony G. Basile 
+  +hardened-sources-3.2.58-r3.ebuild:
+  vanilla-3.2.58 + genpatches-3.2.16 + grsecurity-3.0-3.2.58-201405112002
 
   11 May 2014; Anthony G. Basile 
   hardened-sources-3.13.10.ebuild:



1.1  
sys-kernel/hardened-sources/hardened-sources-3.2.58-r3.ebuild

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

Index: hardened-sources-3.2.58-r3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.2.58-r3.ebuild,v
 1.1 2014/05/12 15:57:53 blueness Exp $

EAPI="5"

ETYPE="sources"
K_WANT_GENPATCHES="base extras"
K_GENPATCHES_VER="16"
K_DEBLOB_AVAILABLE="1"

inherit kernel-2
detect_version

HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-4"
HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2";
SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"

UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2"
UNIPATCH_EXCLUDE="4200_fbcondecor-0.9.6.patch"

DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})"
HOMEPAGE="http://www.gentoo.org/proj/en/hardened/";
IUSE="deblob"

KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"

RDEPEND=">=sys-devel/gcc-4.5"

pkg_postinst() {
kernel-2_pkg_postinst

local GRADM_COMPAT="sys-apps/gradm-3.0*"

ewarn
ewarn "Users of grsecurity's RBAC system must ensure they are using"
ewarn "${GRADM_COMPAT}, which is compatible with ${PF}."
ewarn "It is strongly recommended that the following command is issued"
ewarn "prior to booting a ${PF} kernel for the first time:"
ewarn
ewarn "emerge -na =${GRADM_COMPAT}"
ewarn
}






[gentoo-commits] gentoo-x86 commit in media-libs/libsdl2/files: libsdl2-2.0.3-static-libs.patch

2014-05-12 Thread Julian Ospald (hasufell)
hasufell14/05/12 15:56:05

  Added:libsdl2-2.0.3-static-libs.patch
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.1  media-libs/libsdl2/files/libsdl2-2.0.3-static-libs.patch

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

Index: libsdl2-2.0.3-static-libs.patch
===
--- SDL2-2.0.2.orig/Makefile.in
+++ SDL2-2.0.2/Makefile.in
@@ -33,10 +33,10 @@
 OBJECTS = @OBJECTS@
 VERSION_OBJECTS = @VERSION_OBJECTS@
 
-SDLMAIN_TARGET = libSDL2main.a
+SDLMAIN_TARGET = libSDL2main.la
 SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@
 
-SDLTEST_TARGET = libSDL2_test.a
+SDLTEST_TARGET = libSDL2_test.la
 SDLTEST_OBJECTS = @SDLTEST_OBJECTS@
 
 SRC_DIST = *.txt acinclude Android.mk autogen.sh android-project build-scripts 
cmake configure configure.in debian include Makefile.* sdl2-config.in sdl2.m4 
sdl2.pc.in SDL2.spec.in src test VisualC.html VisualC Xcode Xcode-iOS
@@ -123,15 +123,13 @@
 .PHONY: all update-revision install install-bin install-hdrs install-lib 
install-data uninstall uninstall-bin uninstall-hdrs uninstall-lib 
uninstall-data clean distclean dist $(OBJECTS:.lo=.d)
 
 $(objects)/$(TARGET): $(OBJECTS) $(VERSION_OBJECTS)
-   $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(VERSION_OBJECTS) 
$(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
+   $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) 
$(EXTRA_LDFLAGS) $(LT_LDFLAGS)
 
 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
-   $(AR) cru $@ $(SDLMAIN_OBJECTS)
-   $(RANLIB) $@
+   $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) 
$(EXTRA_LDFLAGS) $(LT_LDFLAGS) -all-static
 
 $(objects)/$(SDLTEST_TARGET): $(SDLTEST_OBJECTS)
-   $(AR) cru $@ $(SDLTEST_OBJECTS)
-   $(RANLIB) $@
+   $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) 
$(EXTRA_LDFLAGS) $(LT_LDFLAGS) -all-static
 
 install: all install-bin install-hdrs install-lib install-data
 install-bin:
@@ -152,10 +150,8 @@
 install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) 
$(objects)/$(SDLTEST_TARGET)
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)
$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) 
$(DESTDIR)$(libdir)/$(TARGET)
-   $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) 
$(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
-   $(RANLIB) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
-   $(INSTALL) -m 644 $(objects)/$(SDLTEST_TARGET) 
$(DESTDIR)$(libdir)/$(SDLTEST_TARGET)
-   $(RANLIB) $(DESTDIR)$(libdir)/$(SDLTEST_TARGET)
+   $(LIBTOOL) --mode=install $(INSTALL) -m 644 
$(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
+   $(LIBTOOL) --mode=install $(INSTALL) -m 644 
$(objects)/$(SDLTEST_TARGET) $(DESTDIR)$(libdir)/$(SDLTEST_TARGET)
 install-data:
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(datadir)/aclocal
$(INSTALL) -m 644 $(srcdir)/sdl2.m4 $(DESTDIR)$(datadir)/aclocal/sdl2.m4
--- SDL2-2.0.2.orig/configure.in
+++ SDL2-2.0.2/configure.in
@@ -2858,7 +2858,7 @@
 if test -f /lib/w32api/libuuid.a; then
 LIBUUID=/lib/w32api/libuuid.a
 else
-LIBUUID=-luuid
+LIBUUID=-Wl,-luuid
 fi
 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lwinmm -limm32 -lole32 
-loleaut32 -lshell32 -lversion $LIBUUID -XCClinker -static-libgcc"
 # The Windows platform requires special setup
@@ -3132,23 +3132,23 @@
 
 VERSION_OBJECTS=`echo $VERSION_SOURCES`
 VERSION_DEPENDS=`echo $VERSION_SOURCES`
-VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ 
]]*\)\.rc,$(objects)/\1.o,g'`
+VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ 
]]*\)\.rc,$(objects)/\1.lo,g'`
 VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ 
]]*\\)\\.rc,
-\\$(objects)/\\2.o: \\1/\\2.rc
-   \\$(WINDRES) \\$< \\$@,g"`
+\\$(objects)/\\2.lo: \\1/\\2.rc
+   \\$(LIBTOOL) --mode=compile --tag=RC \\$(WINDRES) -i \\$< -o \\$@,g"`
 
 SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES`
 SDLMAIN_DEPENDS=`echo $SDLMAIN_SOURCES`
-SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ 
]]*\)\.c,$(objects)/\1.o,g'`
+SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ 
]]*\)\.c,$(objects)/\1.lo,g'`
 SDLMAIN_DEPENDS=`echo "$SDLMAIN_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ 
]]*\\)\\.c,
-\\$(objects)/\\2.o: \\1/\\2.c
+\\$(objects)/\\2.lo: \\1/\\2.c
\\$(LIBTOOL) --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) 
$DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
 
 SDLTEST_OBJECTS=`echo $SDLTEST_SOURCES`
 SDLTEST_DEPENDS=`echo $SDLTEST_SOURCES`
-SDLTEST_OBJECTS=`echo "$SDLTEST_OBJECT

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

2014-05-12 Thread Julian Ospald (hasufell)
hasufell14/05/12 15:56:05

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

Revision  ChangesPath
1.16 media-libs/libsdl2/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   10 May 2014 16:46:06 -  1.15
+++ ChangeLog   12 May 2014 15:56:05 -  1.16
@@ -1,6 +1,12 @@
 # ChangeLog for media-libs/libsdl2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.15 
2014/05/10 16:46:06 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.16 
2014/05/12 15:56:05 hasufell Exp $
+
+*libsdl2-2.0.3 (12 May 2014)
+
+  12 May 2014; Julian Ospald  +libsdl2-2.0.3.ebuild,
+  +files/libsdl2-2.0.3-static-libs.patch:
+  version bump
 
   10 May 2014; Julian Ospald  libsdl2-2.0.2-r1.ebuild:
   add wayland support wrt #504136



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

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

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

# TODO: convert FusionSound #484250

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

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

LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE="3dnow alsa altivec +audio custom-cflags dbus fusionsound gles haptic 
+joystick mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib 
udev +video wayland X xinerama xscreensaver"
REQUIRED_USE="
alsa? ( audio )
fusionsound? ( audio )
gles? ( video )
nas? ( audio )
opengl? ( video )
pulseaudio? ( audio )
xinerama? ( X )
xscreensaver? ( X )"

RDEPEND="
alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
fusionsound? ( || ( >=media-libs/FusionSound-1.1.1 
>=dev-libs/DirectFB-1.7.1[fusionsound] ) )
gles? ( media-libs/mesa[${MULTILIB_USEDEP},gles2] )
nas? ( media-libs/nas[${MULTILIB_USEDEP}] )
opengl? (
virtual/opengl[${MULTILIB_USEDEP}]
virtual/glu[${MULTILIB_USEDEP}]
)
pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
tslib? ( x11-libs/tslib[${MULTILIB_USEDEP}] )
udev? ( virtual/udev[${MULTILIB_USEDEP}] )
wayland? (
dev-libs/wayland[${MULTILIB_USEDEP}]
media-libs/mesa[${MULTILIB_USEDEP},wayland]
x11-libs/libxkbcommon[${MULTILIB_USEDEP}]
)
X? (
x11-libs/libX11[${MULTILIB_USEDEP}]
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
x11-libs/libXi[${MULTILIB_USEDEP}]
x11-libs/libXrandr[${MULTILIB_USEDEP}]
x11-libs/libXt[${MULTILIB_USEDEP}]
x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
xscreensaver? ( x11-libs/libXScrnSaver[${MULTILIB_USEDEP}] )
)"
DEPEND="${RDEPEND}
X? (
x11-proto/xextproto[${MULTILIB_USEDEP}]
x11-proto/xproto[${MULTILIB_USEDEP}]
)
virtual/pkgconfig"

S=${WORKDIR}/${MY_P}

src_prepare() {
# https://bugzilla.libsdl.org/show_bug.cgi?id=1431
epatch "${FILESDIR}"/${P}-static-libs.patch
AT_M4DIR="/usr/share/aclocal acinclude" eautoreconf
}

multilib_src_configure() {
use custom-cflags || strip-flags

# sorted by `./configure --help`
ECONF_SOURCE="${S}" econf \
$(use_enable static-libs static) \
$(use_enable audio) \
$(use_enable video) \
--enable-render \
--e

[gentoo-commits] gentoo-x86 commit in dev-python/meld3: meld3-1.0.0.ebuild ChangeLog

2014-05-12 Thread Ian Delaney (idella4)
idella4 14/05/12 15:48:32

  Modified: ChangeLog
  Added:meld3-1.0.0.ebuild
  Log:
  bump; drop pypy2_0 py2.6 add py3 support
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.14 dev-python/meld3/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/meld3/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   31 Mar 2014 21:03:45 -  1.13
+++ ChangeLog   12 May 2014 15:48:32 -  1.14
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/meld3
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/meld3/ChangeLog,v 1.13 
2014/03/31 21:03:45 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/meld3/ChangeLog,v 1.14 
2014/05/12 15:48:32 idella4 Exp $
+
+*meld3-1.0.0 (12 May 2014)
+
+  12 May 2014; Ian Delaney  +meld3-1.0.0.ebuild:
+  bump; drop pypy2_0 py2.6 add py3 support
 
   31 Mar 2014; Michał Górny  meld3-0.6.9-r1.ebuild:
   Add support for the new PyPy slotting.



1.1  dev-python/meld3/meld3-1.0.0.ebuild

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

Index: meld3-1.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/meld3/meld3-1.0.0.ebuild,v 1.1 
2014/05/12 15:48:32 idella4 Exp $

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

inherit distutils-r1

DESCRIPTION="meld3 is an HTML/XML templating engine."
HOMEPAGE="https://github.com/supervisor/meld3 http://pypi.python.org/pypi/meld3";
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="ZPL"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
# tests use a local path.
RESTRICT=test

python_test() {
PYTHONPATH=. "${PYTHON}" ${PN}/test_${PN}.py || die "Tests failed under 
${EPYTHON}"
}






[gentoo-commits] gentoo-x86 commit in dev-python/passlib: passlib-1.6.2.ebuild ChangeLog

2014-05-12 Thread Ian Delaney (idella4)
idella4 14/05/12 15:45:15

  Modified: passlib-1.6.2.ebuild ChangeLog
  Log:
  drop py2.6 pypy2_0 add py3.4 support
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.3  dev-python/passlib/passlib-1.6.2.ebuild

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

Index: passlib-1.6.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- passlib-1.6.2.ebuild31 Mar 2014 20:29:28 -  1.2
+++ passlib-1.6.2.ebuild12 May 2014 15:45:14 -  1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.2.ebuild,v 
1.2 2014/03/31 20:29:28 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.2.ebuild,v 
1.3 2014/05/12 15:45:14 idella4 Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
 
 inherit distutils-r1
 
@@ -25,11 +25,13 @@
 
 python_test() {
# https://code.google.com/p/passlib/issues/detail?id=50
-   nosetests -w "${BUILD_DIR}"/lib \
-   -e test_90_django_reference -e test_91_django_generation \
-   -e test_77_fuzz_input -e test_config \
-   -e test_registry.py \
-   || die "Tests fail with ${EPYTHON}"
+   # py3 on testing choaks on the suite
+   if ! python_is_python3; then
+   nosetests -w "${BUILD_DIR}"/lib \
+   -e test_90_django_reference -e 
test_91_django_generation \
+   -e test_77_fuzz_input -e test_config \
+   -e test_registry.py || die "Tests fail with ${EPYTHON}"
+   fi
 }
 
 python_install_all() {



1.10 dev-python/passlib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   31 Mar 2014 20:29:28 -  1.9
+++ ChangeLog   12 May 2014 15:45:15 -  1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/passlib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.9 
2014/03/31 20:29:28 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.10 
2014/05/12 15:45:15 idella4 Exp $
+
+  12 May 2014; Ian Delaney  passlib-1.6.2.ebuild:
+  drop py2.6 pypy2_0 add py3.4 support
 
   31 Mar 2014; Michał Górny  passlib-1.6.1-r1.ebuild,
   passlib-1.6.2.ebuild:






[gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.13.ebuild ChangeLog

2014-05-12 Thread Eray Aslan (eras)
eras14/05/12 15:27:43

  Modified: ChangeLog
  Added:dovecot-2.2.13.ebuild
  Log:
  Security bump - bug #509954
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x77F1F175586A3B1F)

Revision  ChangesPath
1.477net-mail/dovecot/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.476
retrieving revision 1.477
diff -u -r1.476 -r1.477
--- ChangeLog   10 May 2014 19:23:06 -  1.476
+++ ChangeLog   12 May 2014 15:27:43 -  1.477
@@ -1,6 +1,12 @@
 # ChangeLog for net-mail/dovecot
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.476 
2014/05/10 19:23:06 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.477 
2014/05/12 15:27:43 eras Exp $
+
+*dovecot-2.2.13 (12 May 2014)
+
+  12 May 2014; Eray Aslan  +dovecot-2.2.13.ebuild,
+  +files/dovecot-10-ssl.patch:
+  Security bump - bug #509954
 
   10 May 2014; Eray Aslan  dovecot-2.2.12.ebuild:
   Adjust SRC_URI for rc releases - bug #509940



1.1  net-mail/dovecot/dovecot-2.2.13.ebuild

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

Index: dovecot-2.2.13.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.13.ebuild,v 1.1 
2014/05/12 15:27:43 eras Exp $

EAPI=5
inherit eutils multilib ssl-cert systemd user versionator

MY_P="${P/_/.}"
major_minor="$(get_version_component_range 1-2)"
sieve_version="0.4.2"
if [[ ${PV} == *_rc* ]] ; then
rc_dir="rc/"
else
rc_dir=""
fi
SRC_URI="http://dovecot.org/releases/${major_minor}/${rc_dir}${MY_P}.tar.gz
sieve? (

http://www.rename-it.nl/dovecot/${major_minor}/${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
)
managesieve? (

http://www.rename-it.nl/dovecot/${major_minor}/${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
) "
DESCRIPTION="An IMAP and POP3 server written with security primarily in mind"
HOMEPAGE="http://www.dovecot.org/";

SLOT="0"
LICENSE="LGPL-2.1 MIT"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~x86"

IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
IUSE_DOVECOT_COMPRESS="bzip2 lzma lz4 zlib"
IUSE_DOVECOT_OTHER="caps doc ipv6 lucene managesieve selinux sieve solr +ssl 
static-libs suid tcpd"

IUSE="${IUSE_DOVECOT_AUTH} ${IUSE_DOVECOT_STORAGE} ${IUSE_DOVECOT_COMPRESS} 
${IUSE_DOVECOT_OTHER}"

DEPEND="bzip2? ( app-arch/bzip2 )
caps? ( sys-libs/libcap )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
lucene? ( >=dev-cpp/clucene-2.3 )
lzma? ( app-arch/xz-utils )
lz4? ( app-arch/lz4 )
mysql? ( virtual/mysql )
pam? ( virtual/pam )
postgres? ( dev-db/postgresql-base 
!dev-db/postgresql-base[ldap,threads] )
selinux? ( sec-policy/selinux-dovecot )
solr? ( net-misc/curl dev-libs/expat )
sqlite? ( dev-db/sqlite )
ssl? ( dev-libs/openssl )
tcpd? ( sys-apps/tcp-wrappers )
vpopmail? ( net-mail/vpopmail )
zlib? ( sys-libs/zlib )
virtual/libiconv"

RDEPEND="${DEPEND}
net-mail/mailbase"

S=${WORKDIR}/${MY_P}

pkg_setup() {
if use managesieve && ! use sieve; then
ewarn "managesieve USE flag selected but sieve USE flag 
unselected"
ewarn "sieve USE flag will be turned on"
fi
# default internal user
enewgroup dovecot 97
enewuser dovecot 97 -1 /dev/null dovecot
# default login user
enewuser dovenull -1 -1 /dev/null
# add "mail" group for suid'ing. Better security isolation.
if use suid; then
enewgroup mail
fi
}

src_prepare() {
epatch "${FILESDIR}/${PN}-10-ssl.patch"
}

src_configure() {
local conf=""

if use postgres || use mysql || use sqlite; then
conf="${conf} --with-sql"
fi

local storages=""
for storage in ${IUSE_DOVECOT_STORAGE//+/}; do
use ${storage} && storages="${storage

[gentoo-commits] gentoo-x86 commit in net-mail/dovecot/files: dovecot-10-ssl.patch

2014-05-12 Thread Eray Aslan (eras)
eras14/05/12 15:27:43

  Added:dovecot-10-ssl.patch
  Log:
  Security bump - bug #509954
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x77F1F175586A3B1F)

Revision  ChangesPath
1.1  net-mail/dovecot/files/dovecot-10-ssl.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/files/dovecot-10-ssl.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/files/dovecot-10-ssl.patch?rev=1.1&content-type=text/plain

Index: dovecot-10-ssl.patch
===
# bug 508552
--- doc/example-config/conf.d/10-ssl.conf   2013-11-24 13:37:39.0 
+
+++ doc/example-config/conf.d/10-ssl.conf   2014-05-12 14:42:26.0 
+
@@ -51,6 +51,15 @@
 # SSL ciphers to use
 #ssl_cipher_list = ALL:!LOW:!SSLv2:!EXP:!aNULL
 
+# ##
+# You are strongly encouraged to change the above two settings to
+#
+#ssl_protocols = !SSLv2 !SSLv3
+#ssl_cipher_list = ALL:!EXPORT:!LOW:!MEDIUM:!aNULL:+RC4:@STRENGTH
+#
+# if you are not required to support legacy mail clients.
+# ##
+
 # Prefer the server's order of ciphers over client's.
 #ssl_prefer_server_ciphers = no
 






[gentoo-commits] gentoo-x86 commit in games-rpg/sumwars: ChangeLog sumwars-0.5.8.ebuild

2014-05-12 Thread Julian Ospald (hasufell)
hasufell14/05/12 15:24:03

  Modified: ChangeLog
  Added:sumwars-0.5.8.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.13 games-rpg/sumwars/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/sumwars/ChangeLog?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/sumwars/ChangeLog?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/sumwars/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-rpg/sumwars/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   17 Aug 2013 20:30:45 -  1.12
+++ ChangeLog   12 May 2014 15:24:03 -  1.13
@@ -1,6 +1,11 @@
 # ChangeLog for games-rpg/sumwars
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-rpg/sumwars/ChangeLog,v 1.12 
2013/08/17 20:30:45 calchan Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-rpg/sumwars/ChangeLog,v 1.13 
2014/05/12 15:24:03 hasufell Exp $
+
+*sumwars-0.5.8 (12 May 2014)
+
+  12 May 2014; Julian Ospald  +sumwars-0.5.8.ebuild:
+  version bump
 
   17 Aug 2013; Denis Dupeyron  sumwars-0.5.6-r2.ebuild:
   Improve cegui dependency for better resolution.



1.1  games-rpg/sumwars/sumwars-0.5.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/sumwars/sumwars-0.5.8.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/sumwars/sumwars-0.5.8.ebuild?rev=1.1&content-type=text/plain

Index: sumwars-0.5.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-rpg/sumwars/sumwars-0.5.8.ebuild,v 1.1 
2014/05/12 15:24:03 hasufell Exp $

EAPI=4

inherit cmake-utils eutils flag-o-matic gnome2-utils games

DESCRIPTION="a multi-player, 3D action role-playing game"
HOMEPAGE="http://sumwars.org";
SRC_URI="mirror://sourceforge/sumwars/${P//_/-}-src.tar.bz2"

LICENSE="GPL-3 CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+tools debug"

LANGS="de en it pl pt ru uk"
for L in ${LANGS} ; do
IUSE="${IUSE} linguas_${L}"
done
unset L

RDEPEND="
>=dev-games/cegui-0.8[ogre]
>=dev-games/ogre-1.7.4-r1[freeimage,opengl]
dev-games/ois
dev-games/physfs
>=dev-lang/lua-5.1
>=dev-libs/tinyxml-2.6.2-r2
media-libs/freealut
media-libs/openal
media-libs/libogg
media-libs/libvorbis
>=net-libs/enet-1.3.0
x11-libs/libX11
x11-libs/libXrandr
tools? ( dev-libs/boost )"
DEPEND="${RDEPEND}"

S=${WORKDIR}/${PN}-${PV%_*}

src_configure() {
# QA
append-flags -fno-strict-aliasing

use debug && CMAKE_BUILD_TYPE=Debug

local l langs
for l in ${LANGS}; do
if use linguas_${l}; then
langs="${langs} ${l}"
fi
done

[[ -z "${langs}" ]] && langs="en"

# configure sumwars with cmake
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX=""
-DSUMWARS_LANGUAGES="${langs}"
-DSUMWARS_NO_TINYXML=ON
-DSUMWARS_NO_ENET=ON
-DSUMWARS_DOC_DIR="/usr/share/doc/${PF}"
-DSUMWARS_EXECUTABLE_DIR="${GAMES_BINDIR}"
-DSUMWARS_SHARE_DIR="${GAMES_DATADIR}/${PN}"
-DSUMWARS_STANDALONE_MODE=OFF
-DSUMWARS_POST_BUILD_COPY=OFF
-DSUMWARS_PORTABLE_MODE=OFF
-DSUMWARS_RANDOM_REGIONS=ON
$(cmake-utils_use tools SUMWARS_BUILD_TOOLS)
)

cmake-utils_src_configure
}

src_compile() {
cmake-utils_src_compile
}

src_install() {
cmake-utils_src_install
newicon -s 128 share/icon/SumWarsIcon_128x128.png ${PN}.png
make_desktop_entry ${PN} "Summoning Wars"
prepgamesdirs
}

pkg_preinst() {
games_pkg_preinst
gnome2_icon_savelist
}

pkg_postinst() {
games_pkg_postinst
gnome2_icon_cache_update
}

pkg_postrm() {
gnome2_icon_cache_update
}






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

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 15:13:07

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

Revision  ChangesPath
1.119net-analyzer/mrtg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mrtg/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog   10 May 2014 18:39:24 -  1.118
+++ ChangeLog   12 May 2014 15:13:07 -  1.119
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/mrtg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mrtg/ChangeLog,v 1.118 
2014/05/10 18:39:24 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mrtg/ChangeLog,v 1.119 
2014/05/12 15:13:07 jer Exp $
+
+  12 May 2014; Jeroen Roovers  mrtg-2.17.4-r1.ebuild:
+  Stable for HPPA (bug #509992).
 
   10 May 2014; Jeroen Roovers  mrtg-2.17.4-r1.ebuild:
   Raise dev-perl/Socket6 dependency (bug #321701). Raise dev-perl/SNMP_Session



1.4  net-analyzer/mrtg/mrtg-2.17.4-r1.ebuild

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

Index: mrtg-2.17.4-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mrtg/mrtg-2.17.4-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mrtg-2.17.4-r1.ebuild   10 May 2014 18:39:24 -  1.3
+++ mrtg-2.17.4-r1.ebuild   12 May 2014 15:13:07 -  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-analyzer/mrtg/mrtg-2.17.4-r1.ebuild,v 
1.3 2014/05/10 18:39:24 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mrtg/mrtg-2.17.4-r1.ebuild,v 
1.4 2014/05/12 15:13:07 jer Exp $
 
 EAPI=5
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND="
>=dev-perl/SNMP_Session-1.13-r2






[gentoo-commits] gentoo-x86 commit in dev-perl/SNMP_Session: ChangeLog SNMP_Session-1.13-r2.ebuild

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 15:12:37

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

Revision  ChangesPath
1.35 dev-perl/SNMP_Session/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/SNMP_Session/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   10 May 2014 18:39:14 -  1.34
+++ ChangeLog   12 May 2014 15:12:37 -  1.35
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/SNMP_Session
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/SNMP_Session/ChangeLog,v 1.34 
2014/05/10 18:39:14 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/SNMP_Session/ChangeLog,v 1.35 
2014/05/12 15:12:37 jer Exp $
+
+  12 May 2014; Jeroen Roovers  SNMP_Session-1.13-r2.ebuild:
+  Stable for HPPA (bug #509992).
 
 *SNMP_Session-1.13-r2 (10 May 2014)
 



1.2  dev-perl/SNMP_Session/SNMP_Session-1.13-r2.ebuild

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

Index: SNMP_Session-1.13-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/SNMP_Session/SNMP_Session-1.13-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SNMP_Session-1.13-r2.ebuild 10 May 2014 18:39:14 -  1.1
+++ SNMP_Session-1.13-r2.ebuild 12 May 2014 15:12:37 -  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-perl/SNMP_Session/SNMP_Session-1.13-r2.ebuild,v 1.1 
2014/05/10 18:39:14 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/SNMP_Session/SNMP_Session-1.13-r2.ebuild,v 1.2 
2014/05/12 15:12:37 jer Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="Artistic-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~sparc-solaris 
~x86-solaris"
 
 PATCHES=(
"${FILESDIR}"/${P}-Socket6.patch






[gentoo-commits] dev/ultrabug:master commit in: dev-db/mongodb/files/, dev-db/mongodb/

2014-05-12 Thread Alexys Jacob
commit: 635fd3c9ba53e5e2550200b8d924e82368d4f65b
Author: Ultrabug  gentoo  org>
AuthorDate: Mon May 12 15:11:13 2014 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon May 12 15:11:13 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/ultrabug.git;a=commit;h=635fd3c9

work on bug #508190

---
 dev-db/mongodb/Manifest|  11 ++
 dev-db/mongodb/files/mms-agent.initd-r2|  24 +++
 dev-db/mongodb/files/mongodb-2.6.1-fix-scons.patch |  35 +
 dev-db/mongodb/files/mongodb.conf-r2   |  33 +
 dev-db/mongodb/files/mongodb.confd-r2  |  12 ++
 dev-db/mongodb/files/mongodb.initd-r2  |  26 
 dev-db/mongodb/files/mongos.conf-r2|  30 
 dev-db/mongodb/files/mongos.confd-r2   |  12 ++
 dev-db/mongodb/files/mongos.initd-r2   |  26 
 dev-db/mongodb/mongodb-2.6.1.ebuild| 164 +
 10 files changed, 373 insertions(+)

diff --git a/dev-db/mongodb/Manifest b/dev-db/mongodb/Manifest
index c5a53ce..f6f2ac8 100644
--- a/dev-db/mongodb/Manifest
+++ b/dev-db/mongodb/Manifest
@@ -1,16 +1,27 @@
 AUX mms-agent.confd 205 SHA256 
29e678e722268311fb59f5af57ac3fbadb9e930cd3cb1ce9e4dc33d30e021e40 SHA512 
e81e68ebad2d409a9e631de0aaf264eab99b3faa5c313a7c96a6672a6c51d3243100f5ef599bf2a347b4f9e1b1a6ebf95fa890cb614d9745c58430fadd8ee13a
 WHIRLPOOL 
24d98082e138dbcee0a276c4874d88a23f7f53d1bf0f6a7f2e979c005413f14809269622ecd013913221a267eb1fc806130d69915ce5cd38a646b498912ca729
 AUX mms-agent.initd 1277 SHA256 
fda9a9eb7e2abceef572ffbad0987b74670b6b5e0c50d93f58ef8141825a2cea SHA512 
32bdcadf7395f371809b253934f8c3dd0074e6aafccfab091f8bf699524eb32ffdc787b479e08056e2fac933f1627a5f1cc03842a2f8b939f8b68bb2e6da71c2
 WHIRLPOOL 
a9f78afe5286e2762c27ab0a272e4e5719e070cbd9ab5f551ef322346bb3ff46d0b49c76906fe63f8c78c9bf6a11d720d2908044d5666e5dd98afdef55fca76e
+AUX mms-agent.initd-r2 608 SHA256 
6c44dcd08fbf15a84673f6475ee0996d9cf0afea3a5ff9c3f82dee1e7990b11f SHA512 
e0e780c4ad8097f912cc88d645af8fab08b9cd6562963c42dfddaa99dc4956959ae249dcc79c2f9998d180523c058de4fe8ced62f1b9d25bcab96d81cdda898a
 WHIRLPOOL 
5a36fec62ea36bc16114f093a047a7225df7e53b47ba830b0944473981d9b12f6c847ec9826b1598ced3d963ffa9685852d9e6aece14e753021fd60b67cd21c1
 AUX mongodb-2.2-r1-fix-boost.patch 870 SHA256 
885991e16aecc66d88b40418531a66449ab8e434ca677acc7814e7485231e841 SHA512 
902c11e15e26be6c64053b4f3c0d0fda1670373fa3a5805063b49957843173b3663f6271ae541bb07aedf884a9861099bb1f452761f7baeaa819f14eb0755336
 WHIRLPOOL 
b5df66a5e90202db903989c66b7423103ca1a666a477175c1746c94d5cf250ac4ceb2d237737ee2bfc158a8f9c611916e91d5133ba94e544abbaaec8b0d0361a
 AUX mongodb-2.4.8-fix-grsec.patch 824 SHA256 
65a50faa697f4e76eaf87b459121b8ba7c04d028a5524939296db2ca701cf2fb SHA512 
7dac727a63dab7713a85f7d483f68a6fe9ed7c5ef06324a899a558d118857e9937c5e48e1fe2ae2063d1442c17b68b60b6c14934184a2badf4ecc9b3f68731bd
 WHIRLPOOL 
feef78707135bd128c21a5c344bbf25eef1ef796b236461656baa6299a0335759fff42103c36aebca1afcb23697f4ff42df382ceb2d05d0f90e913cfdac0e597
 AUX mongodb-2.5.4-fix-scons.patch 1355 SHA256 
02b90cf2a6f35df5021d8985b1bddd8c0f65d4764f59469c3c51e46864bac02f SHA512 
f2f0e1439bab449951696f6d49f32e89dba0f848391475354d0b4d34e325a88604c8e87d2fe85701b5dcb7958a22714df283e79ba61bbd0b93f5b20d0914923c
 WHIRLPOOL 
7fb2929f03744819395c00ef2eefc3fcb91fa00dc436348a69dbca55d2ac1c18c9d76c7d29dfb47aff751088d9798061f588bb4b22a94353229d39d65f6090af
+AUX mongodb-2.6.1-fix-scons.patch 1386 SHA256 
18c454168e6c4feac4b67a3ff18e811d486284cb014ba0ededc039433c1caf28 SHA512 
a67a1b2f75783ac3520f3ea5765e7a57669c23969a8242f481594e3a28e400a3656068e65ebaac0765b66433eb56c30280762fe3f6fe49b9b255c3b80dd24a29
 WHIRLPOOL 
7828f0314e6fa8e44cdfdbe90255e94158aa3136e71a3afff001c2308b4ef31bc8f0001083d68f00a767baff69c8bb0034f65a50e970deda45acd540fe5de772
 AUX mongodb.conf 246 SHA256 
8010ce728d657524cd76b5afda7ffbc1cc389642336b12b89cec5df2b09fc0e4 SHA512 
05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c
 WHIRLPOOL 
17a27daaa7892140d741256cf9acaf2f2909a545f350c936183aeb7b6671c25a3dc11f191b01ed008195965b8cc39b49f1a3a8c69cfd90c4ca57b9fa2732beff
+AUX mongodb.conf-r2 696 SHA256 
8c1ecfd94e0a6f3acebd5d3ac7a75a19818772b86dcd4c066c33d9d790c420b9 SHA512 
973b0ad866498c2696ee63080b61aeca2a917065a2b3bd0f470b2a70dee4630c8a80fe8d99a4bcc166f14d944c7de1debec24df8c97fb7f9b5fb0d781985ca58
 WHIRLPOOL 
290631e082228076a366356c142efb91d7d1e1c5ae7ef937cac3d9c20930fdabfc3b1bb42a2e0e80f2b85daac6c399a6f7d0a0a1eafe45c54795bb2bfb22291f
 AUX mongodb.confd 361 SHA256 
a4ca29c577428c02cd0b0a8b46756df5f53a05519c9d13c270533cf99b9b819d SHA512 
9bcd870742c31bf25f34188ddc3c414de1103e9860dea9f54eee276b89bc2cf1226abab1749c5cda6a6fb0880e541373754e5e83d63cc7189d4b9c274fd555c3
 WHIRLPOOL 
35d785763d0cb1e21516a3fa15332d6c93d35e6faea02b60f81c389878dd89fe026504c6cfce5e9abfc8353f74b0e959a7501373d2a389f269c6952d33e8d2e8

[gentoo-commits] proj/infra-status:master commit in: lib/

2014-05-12 Thread Alex Legler
commit: 45d9d907f809c246d635c09b95635282a3dd5140
Author: Alex Legler  a3li  li>
AuthorDate: Mon May 12 15:00:01 2014 +
Commit: Alex Legler  gentoo  org>
CommitDate: Mon May 12 15:00:01 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/infra-status.git;a=commit;h=45d9d907

Return NA when a service has no data for a given host.

---
 lib/service_registry.rb | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/lib/service_registry.rb b/lib/service_registry.rb
index e374f1f..c6d208a 100644
--- a/lib/service_registry.rb
+++ b/lib/service_registry.rb
@@ -7,6 +7,7 @@ module State
   UP=1
   DOWN=2
   WARNING=3
+  NA=0
 end
 
 module HelperMethods
@@ -44,6 +45,10 @@ module HelperMethods
 status_data['services'][host][service]['is_flapping'] != 0
   end
 
+  def has_service?(host, service)
+status_data['services'][host].has_key?(service)
+  end
+
   def default(host, service = nil)
 if service == nil
   if host_flapping? host
@@ -54,6 +59,8 @@ module HelperMethods
 State::DOWN
   end
 else
+  return State::NA unless has_service? host, service
+
   if service_flapping? host, service
 State::WARNING
   elsif service_up? host, service



[gentoo-commits] gentoo-x86 commit in dev-python/bcrypt: bcrypt-1.0.2-r1.ebuild ChangeLog

2014-05-12 Thread Ian Delaney (idella4)
idella4 14/05/12 14:56:43

  Modified: bcrypt-1.0.2-r1.ebuild ChangeLog
  Log:
  drop py2.6 add py3.4 support
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild

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

Index: bcrypt-1.0.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bcrypt-1.0.2-r1.ebuild  8 May 2014 21:56:21 -   1.1
+++ bcrypt-1.0.2-r1.ebuild  12 May 2014 14:56:43 -  1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild,v 
1.1 2014/05/08 21:56:21 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild,v 
1.2 2014/05/12 14:56:43 idella4 Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
 
 inherit distutils-r1
 



1.5  dev-python/bcrypt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bcrypt/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   8 May 2014 21:56:21 -   1.4
+++ ChangeLog   12 May 2014 14:56:43 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/bcrypt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/ChangeLog,v 1.4 
2014/05/08 21:56:21 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/ChangeLog,v 1.5 
2014/05/12 14:56:43 idella4 Exp $
+
+  12 May 2014; Ian Delaney  bcrypt-1.0.2-r1.ebuild:
+  drop py2.6 add py3.4 support
 
 *bcrypt-1.0.2-r1 (08 May 2014)
 






[gentoo-commits] gentoo-x86 commit in media-sound/mpg123: mpg123-1.18.1.ebuild ChangeLog

2014-05-12 Thread Jeroen Roovers (jer)
jer 14/05/12 14:56:22

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

Revision  ChangesPath
1.2  media-sound/mpg123/mpg123-1.18.1.ebuild

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

Index: mpg123-1.18.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpg123/mpg123-1.18.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mpg123-1.18.1.ebuild17 Feb 2014 22:54:01 -  1.1
+++ mpg123-1.18.1.ebuild12 May 2014 14:56:22 -  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/mpg123/mpg123-1.18.1.ebuild,v 
1.1 2014/02/17 22:54:01 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/mpg123-1.18.1.ebuild,v 
1.2 2014/05/12 14:56:22 jer Exp $
 
 EAPI=5
 inherit eutils toolchain-funcs libtool multilib-minimal
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 IUSE="3dnow 3dnowext alsa altivec coreaudio int-quality ipv6 jack mmx nas oss 
portaudio pulseaudio sdl sse"
 
 # No MULTILIB_USEDEP here since we only build libmpg123 for non native ABIs.



1.303media-sound/mpg123/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v
retrieving revision 1.302
retrieving revision 1.303
diff -u -r1.302 -r1.303
--- ChangeLog   9 Mar 2014 02:16:05 -   1.302
+++ ChangeLog   12 May 2014 14:56:22 -  1.303
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/mpg123
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.302 
2014/03/09 02:16:05 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.303 
2014/05/12 14:56:22 jer Exp $
+
+  12 May 2014; Jeroen Roovers  mpg123-1.18.1.ebuild:
+  Stable for HPPA (bug #500262).
 
 *mpg123-1.19.0 (09 Mar 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-python/funcparserlib: funcparserlib-0.3.6.ebuild ChangeLog

2014-05-12 Thread Ian Delaney (idella4)
idella4 14/05/12 14:49:36

  Modified: funcparserlib-0.3.6.ebuild ChangeLog
  Log:
  drop py2.6 pypy2_0 add py3.4 support
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.3  dev-python/funcparserlib/funcparserlib-0.3.6.ebuild

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

Index: funcparserlib-0.3.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/funcparserlib/funcparserlib-0.3.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- funcparserlib-0.3.6.ebuild  31 Mar 2014 20:54:37 -  1.2
+++ funcparserlib-0.3.6.ebuild  12 May 2014 14:49:36 -  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/dev-python/funcparserlib/funcparserlib-0.3.6.ebuild,v 
1.2 2014/03/31 20:54:37 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/funcparserlib/funcparserlib-0.3.6.ebuild,v 
1.3 2014/05/12 14:49:36 idella4 Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
 
 inherit distutils-r1
 
@@ -23,8 +23,6 @@
 
 python_test() {
local m=unittest
-   [[ ${EPYTHON} == python2.6 ]] && m=unittest2.__main__
-
cd "${BUILD_DIR}"/lib || die
"${PYTHON}" -m ${m} discover || die "Tests fail with ${EPYTHON}"
 }



1.3  dev-python/funcparserlib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/funcparserlib/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   31 Mar 2014 20:54:37 -  1.2
+++ ChangeLog   12 May 2014 14:49:36 -  1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/funcparserlib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/funcparserlib/ChangeLog,v 1.2 
2014/03/31 20:54:37 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/funcparserlib/ChangeLog,v 1.3 
2014/05/12 14:49:36 idella4 Exp $
+
+  12 May 2014; Ian Delaney  funcparserlib-0.3.6.ebuild:
+  drop py2.6 pypy2_0 add py3.4 support
 
   31 Mar 2014; Michał Górny  funcparserlib-0.3.6.ebuild:
   Add support for the new PyPy slotting.






[gentoo-commits] gentoo-x86 commit in net-libs/polarssl: polarssl-1.3.7.ebuild ChangeLog

2014-05-12 Thread Julian Ospald (hasufell)
hasufell14/05/12 14:27:36

  Modified: ChangeLog
  Added:polarssl-1.3.7.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.74 net-libs/polarssl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   19 Apr 2014 14:59:51 -  1.73
+++ ChangeLog   12 May 2014 14:27:36 -  1.74
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/polarssl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.73 
2014/04/19 14:59:51 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.74 
2014/05/12 14:27:36 hasufell Exp $
+
+*polarssl-1.3.7 (12 May 2014)
+
+  12 May 2014; Julian Ospald  +polarssl-1.3.7.ebuild:
+  version bump
 
 *polarssl-1.3.6 (19 Apr 2014)
 



1.1  net-libs/polarssl/polarssl-1.3.7.ebuild

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

Index: polarssl-1.3.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.3.7.ebuild,v 
1.1 2014/05/12 14:27:36 hasufell Exp $

EAPI=5

inherit eutils multilib cmake-utils multilib-minimal

DESCRIPTION="Cryptographic library for embedded systems"
HOMEPAGE="http://polarssl.org/";
SRC_URI="http://polarssl.org/download/${P}-gpl.tgz";

LICENSE="GPL-2"
SLOT="0/6"
KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd"
IUSE="doc havege programs sse2 static-libs test zlib"

RDEPEND="
programs? (
dev-libs/openssl:0
amd64? ( abi_x86_32? (
|| (
dev-libs/openssl:0[abi_x86_32]
app-emulation/emul-linux-x86-baselibs
)
) )
)
zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
test? ( dev-lang/perl )"

enable_polarssl_option() {
local myopt="$@"
# check that config.h syntax is the same at version bump
sed -i \
-e "s://#define ${myopt}:#define ${myopt}:" \
include/polarssl/config.h || die
}

src_prepare() {
use sse2 && enable_polarssl_option POLARSSL_HAVE_SSE2
use zlib && enable_polarssl_option POLARSSL_ZLIB_SUPPORT
use havege && enable_polarssl_option POLARSSL_HAVEGE_C
}

multilib_src_configure() {
local mycmakeargs=(
$(cmake-utils_use_enable programs PROGRAMS)
$(cmake-utils_use_enable zlib ZLIB_SUPPORT)
$(cmake-utils_use_use static-libs STATIC_POLARSSL_LIBRARY)
$(cmake-utils_use_enable test TESTING)
-DUSE_SHARED_POLARSSL_LIBRARY=ON
-DINSTALL_POLARSSL_HEADERS=ON
-DLIB_INSTALL_DIR="/usr/$(get_libdir)"
)

cmake-utils_src_configure
}

multilib_src_compile() {
cmake-utils_src_compile
use doc && multilib_is_native_abi && emake apidoc
}

multilib_src_test() {
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/library" \
cmake-utils_src_test
}

multilib_src_install() {
cmake-utils_src_install
}

multilib_src_install_all() {
einstalldocs

use doc && dohtml -r apidoc

if use programs ; then
# avoid file collisions with sys-apps/coreutils
local p e
for p in "${ED%/}"/usr/bin/* ; do
if [[ -x "${p}" && ! -d "${p}" ]] ; then
mv "${p}" "${ED%/}"/usr/bin/polarssl_`basename 
"${p}"` || die
fi
done
for e in aes hash pkey ssl test ; do
docinto "${e}"
dodoc programs/"${e}"/*.c
dodoc programs/"${e}"/*.txt
done
fi
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/sass: ChangeLog sass-3.3.7.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 14:25:34

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

Revision  ChangesPath
1.50 dev-ruby/sass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog   20 Apr 2014 08:37:52 -  1.49
+++ ChangeLog   12 May 2014 14:25:34 -  1.50
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/sass
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v 1.49 2014/04/20 
08:37:52 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v 1.50 2014/05/12 
14:25:34 graaff Exp $
+
+*sass-3.3.7 (12 May 2014)
+
+  12 May 2014; Hans de Graaff  +sass-3.3.7.ebuild:
+  Version bump.
 
   20 Apr 2014; Hans de Graaff  sass-3.2.18.ebuild:
   Add ruby21.



1.1  dev-ruby/sass/sass-3.3.7.ebuild

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

Index: sass-3.3.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/sass-3.3.7.ebuild,v 1.1 
2014/05/12 14:25:34 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21 jruby"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="README.md"

RUBY_FAKEGEM_EXTRAINSTALL="rails init.rb VERSION VERSION_NAME"

inherit ruby-fakegem versionator

DESCRIPTION="An extension of CSS3, adding nested rules, variables, mixins, 
selector inheritance, and more."
HOMEPAGE="http://sass-lang.com/";
LICENSE="MIT"

KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
SLOT="$(get_version_component_range 1-2)"
IUSE=""

ruby_add_bdepend "doc? ( >=dev-ruby/yard-0.5.3 )"

ruby_add_rdepend ">=dev-ruby/listen-1.3.1:1 !!https://github.com/nex3/sass/issues/563
sed -i -e '24s/filename_fn//' test/sass/plugin_test.rb 
|| die
sed -i -e '/test_random/,/^  end/ s:^:#:' 
test/sass/functions_test.rb || die
;;
*)
;;
esac
}

each_ruby_test() {
RUBOCOP=false ${RUBY} -S rake test || die
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/listen: ChangeLog listen-1.3.1-r2.ebuild listen-1.3.1-r1.ebuild

2014-05-12 Thread Hans de Graaff (graaff)
graaff  14/05/12 14:23:55

  Modified: ChangeLog
  Added:listen-1.3.1-r2.ebuild
  Removed:  listen-1.3.1-r1.ebuild
  Log:
  Add ruby21. Move into slot 1 since 0.x and 1.x are not compatible.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.29 dev-ruby/listen/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   20 Apr 2014 08:34:05 -  1.28
+++ ChangeLog   12 May 2014 14:23:55 -  1.29
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/listen
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v 1.28 2014/04/20 
08:34:05 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v 1.29 2014/05/12 
14:23:55 graaff Exp $
+
+*listen-1.3.1-r2 (12 May 2014)
+
+  12 May 2014; Hans de Graaff  -listen-1.3.1-r1.ebuild,
+  +listen-1.3.1-r2.ebuild:
+  Add ruby21. Move into slot 1 since 0.x and 1.x are not compatible.
 
 *listen-0.7.3-r1 (20 Apr 2014)
 



1.1  dev-ruby/listen/listen-1.3.1-r2.ebuild

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

Index: listen-1.3.1-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/listen-1.3.1-r2.ebuild,v 1.1 
2014/05/12 14:23:55 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21 jruby"

RUBY_FAKEGEM_RECIPE_TEST="rspec"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"

RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"

inherit ruby-fakegem

DESCRIPTION="Listens to file modifications and notifies you about the changes."
HOMEPAGE="https://github.com/guard/listen";
SRC_URI="https://github.com/guard/listen/archive/v${PV}.tar.gz -> ${P}-git.tgz"

LICENSE="MIT"
SLOT="1"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-macos"
IUSE=""

ruby_add_rdepend ">=dev-ruby/rb-inotify-0.9.0"

all_ruby_prepare() {
sed -i -e '/[Cc]overalls/d' spec/spec_helper.rb || die
# Drop failing test
sed -i -e '/#85/,+17d' spec/listen/directory_record_spec.rb || die

# Drop dependencies for file system events not available on Gentoo.
sed -i -e '/\(fsevent\|kqueue\)/d' ${RUBY_FAKEGEM_GEMSPEC} || die
}






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

2014-05-12 Thread Richard Farina (zerochaos)
zerochaos14/05/12 14:22:17

  Modified: blueman-.ebuild ChangeLog
  Log:
  upstream merged the bluez5 branch into master
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.2  net-wireless/blueman/blueman-.ebuild

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

Index: blueman-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- blueman-.ebuild 5 May 2014 08:22:45 -   1.1
+++ blueman-.ebuild 12 May 2014 14:22: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-wireless/blueman/blueman-.ebuild,v 
1.1 2014/05/05 08:22:45 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v 
1.2 2014/05/12 14:22:17 zerochaos Exp $
 
 EAPI="5"
 
@@ -14,7 +14,6 @@
 if [[ ${PV} == "" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN}-project/${PN}.git";
-   EGIT_BRANCH="bluez5"
KEYWORDS=""
 else
SRC_URI="http://download.tuxfamily.org/${PN}/${P}.tar.gz";



1.19 net-wireless/blueman/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   5 May 2014 08:22:45 -   1.18
+++ ChangeLog   12 May 2014 14:22:17 -  1.19
@@ -1,6 +1,9 @@
 # ChangeLog for net-wireless/blueman
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v 1.18 
2014/05/05 08:22:45 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v 1.19 
2014/05/12 14:22:17 zerochaos Exp $
+
+  12 May 2014; Rick Farina  blueman-.ebuild:
+  upstream merged the bluez5 branch into master
 
 *blueman- (05 May 2014)
 






  1   2   >