[gentoo-commits] gentoo-x86 commit in dev-python/bpython/files: bpython-0.13-test_repl.patch

2014-07-05 Thread Ian Delaney (idella4)
idella4 14/07/05 06:28:04

  Added:bpython-0.13-test_repl.patch
  Log:
  update test phase
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.1  dev-python/bpython/files/bpython-0.13-test_repl.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bpython/files/bpython-0.13-test_repl.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bpython/files/bpython-0.13-test_repl.patch?rev=1.1content-type=text/plain

Index: bpython-0.13-test_repl.patch
===
https://bitbucket.org/thomasballinger/bpython-for-clean-patch/commits/94c4664c1303
# HG changeset patch
# User Thomas Ballinger thomasballin...@gmail.com
# Date 1404088731 14400
# Branch 0.13-bugfix
# Node ID 94c4664c130303b1ae53629d6ebcff04f5d5d7ae
# Parent  106c49981f5e2db325d543d24c063f9c38013023
simplest possible fix for test that changes in py3.3

diff --git a/bpython/test/test_repl.py b/bpython/test/test_repl.py
--- a/bpython/test/test_repl.py
+++ b/bpython/test/test_repl.py
@@ -1,4 +1,5 @@
 import os
+import sys
 import unittest
 from itertools import islice
 from mock import Mock
@@ -280,8 +281,12 @@
 
 self.assertTrue(self.repl.complete())
 self.assertTrue(hasattr(self.repl.completer,'matches'))
-self.assertEqual(self.repl.completer.matches,
-['UnboundLocalError(', '__doc__'])
+if sys.version_info[0] == 3 and sys.version_info[1] = 3:
+self.assertEqual(self.repl.completer.matches,
+['ChildProcessError(', 'UnboundLocalError(', '__doc__'])
+else:
+self.assertEqual(self.repl.completer.matches,
+['UnboundLocalError(', '__doc__'])
 
 # 2. Attribute tests
 def test_simple_attribute_complete(self):







[gentoo-commits] gentoo-x86 commit in dev-python/bpython: bpython-0.13.ebuild ChangeLog

2014-07-05 Thread Ian Delaney (idella4)
idella4 14/07/05 06:28:05

  Modified: bpython-0.13.ebuild ChangeLog
  Log:
  update test phase
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.3  dev-python/bpython/bpython-0.13.ebuild

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

Index: bpython-0.13.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bpython/bpython-0.13.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bpython-0.13.ebuild 4 Jul 2014 15:55:26 -   1.2
+++ bpython-0.13.ebuild 5 Jul 2014 06:28: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/bpython/bpython-0.13.ebuild,v 
1.2 2014/07/04 15:55:26 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bpython/bpython-0.13.ebuild,v 
1.3 2014/07/05 06:28:04 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3} )
@@ -28,7 +28,8 @@
 
 DOCS=( AUTHORS  CHANGELOG  TODO sample-config sample.theme light.theme )
 
-PATCHES=( ${FILESDIR}/${PN}-desktop.patch )
+PATCHES=( ${FILESDIR}/${PN}-desktop.patch
+   ${FILESDIR}/${P}-test_repl.patch )
 
 # Req'd for clean build by each impl
 DISTUTILS_IN_SOURCE_BUILD=1
@@ -53,10 +54,7 @@
pushd build/lib  /dev/null
# 
https://bitbucket.org/bobf/bpython/issue/289/test-failures-in-latest-release-py27-py33
sed -e s':test_enter:_:' -i bpython/test/test_repl.py || die
-   if python_is_python3; then
-   sed -e s':test_fuzzy_global_complete:_:' \
-   -i bpython/test/test_repl.py || die
-   fi
+
${PYTHON} -m unittest discover ||
popd  /dev/null
 }



1.40 dev-python/bpython/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bpython/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   4 Jul 2014 15:55:26 -   1.39
+++ ChangeLog   5 Jul 2014 06:28:05 -   1.40
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/bpython
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bpython/ChangeLog,v 1.39 
2014/07/04 15:55:26 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bpython/ChangeLog,v 1.40 
2014/07/05 06:28:05 idella4 Exp $
+
+  05 Jul 2014; Ian Delaney idel...@gentoo.org
+  +files/bpython-0.13-test_repl.patch, bpython-0.13.ebuild:
+  update test phase
 
   04 Jul 2014; Ian Delaney idel...@gentoo.org bpython-0.13.ebuild:
   tidy






[gentoo-commits] gentoo-x86 commit in app-accessibility/eflite/files: eflite-0.4.1-flite14.patch

2014-07-05 Thread Pacho Ramos (pacho)
pacho   14/07/05 07:26:14

  Added:eflite-0.4.1-flite14.patch
  Log:
  Make it compatible with flite-1.4 (#463556 by Chris Brannon)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.1  app-accessibility/eflite/files/eflite-0.4.1-flite14.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/eflite/files/eflite-0.4.1-flite14.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/eflite/files/eflite-0.4.1-flite14.patch?rev=1.1content-type=text/plain

Index: eflite-0.4.1-flite14.patch
===
diff -Naur eflite-0.4.1/Makefile.in eflite-0.4.1-new/Makefile.in
--- eflite-0.4.1/Makefile.in2007-01-18 18:01:09.0 -0600
+++ eflite-0.4.1-new/Makefile.in2010-07-23 20:06:45.0 -0500
@@ -34,7 +34,7 @@
$(CC) $(LDFLAGS) -o $@ $^ -lm $(LIBS) $(FLITE_LIBS) $(AUDIOLIBS)
 
 fs.o: fs.c
-   $(CC) $(CFLAGS) @AUDIODEFS@ -I. -I$(flite_include_dir) 
-DREGISTER_VOX=register_$(subst cmu_us_kal16,cmu_us_kal,$(FL_VOX)) -DSTANDALONE 
-DEFLITE -c -o $@ $
+   $(CC) $(CFLAGS) @AUDIODEFS@ -I. -I$(flite_include_dir) 
-DREGISTER_VOX=register_$(FL_VOX) -DSTANDALONE -DEFLITE -c -o $@ $
 
 tone.o: tone.c
$(CC) $(CFLAGS) -I$(flite_include_dir) -DEFLITE -c -o $@ $






[gentoo-commits] gentoo-x86 commit in app-accessibility/eflite: eflite-0.4.1-r1.ebuild ChangeLog

2014-07-05 Thread Pacho Ramos (pacho)
pacho   14/07/05 07:26:14

  Modified: ChangeLog
  Added:eflite-0.4.1-r1.ebuild
  Log:
  Make it compatible with flite-1.4 (#463556 by Chris Brannon)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.35 app-accessibility/eflite/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/eflite/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   23 May 2012 22:57:36 -  1.34
+++ ChangeLog   5 Jul 2014 07:26:14 -   1.35
@@ -1,6 +1,12 @@
 # ChangeLog for app-accessibility/eflite
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/eflite/ChangeLog,v 1.34 
2012/05/23 22:57:36 vapier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/eflite/ChangeLog,v 1.35 
2014/07/05 07:26:14 pacho Exp $
+
+*eflite-0.4.1-r1 (05 Jul 2014)
+
+  05 Jul 2014; Pacho Ramos pa...@gentoo.org +eflite-0.4.1-r1.ebuild,
+  +files/eflite-0.4.1-flite14.patch:
+  Make it compatible with flite-1.4 (#463556 by Chris Brannon)
 
   23 May 2012; Mike Frysinger vap...@gentoo.org eflite-0.4.1.ebuild:
   Inherit user eclass for enewuser/etc...
@@ -128,4 +134,3 @@
   21 Mar 2004; Jeremy Huddleston eradica...@gentoo.org eflite-0.3.8.ebuild,
   metadata.xml, files/eflite-0.3.8-shared_flite.patch:
   Initial import.  Ebuild by dmwaters and me.  Closes bug #45178.
-



1.1  app-accessibility/eflite/eflite-0.4.1-r1.ebuild

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

Index: eflite-0.4.1-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-accessibility/eflite/eflite-0.4.1-r1.ebuild,v 1.1 
2014/07/05 07:26:14 pacho Exp $

EAPI=5
inherit autotools eutils user

DESCRIPTION=A speech server that allows emacspeak and other screen readers to 
interact with festival lite.
HOMEPAGE=http://eflite.sourceforge.net;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~ppc ~sparc ~x86
IUSE=+16k_voice

DEPEND==app-accessibility/flite-1.4
RDEPEND=${DEPEND}

src_prepare() {
sed -i 's:/etc/es.conf:/etc/eflite/es.conf:g' *
epatch ${FILESDIR}/${PN}-0.4.1-flite14.patch
eautoreconf
}

src_configure() {
local myconf
if use 16k_voice; then
myconf='--with-vox=cmu_us_kal16'
fi
econf ${myconf}
}

src_install() {
einstall
dodoc ChangeLog README INSTALL eflite_test.txt

insinto /etc/eflite
doins ${FILESDIR}/es.conf

newinitd ${FILESDIR}/eflite.rc eflite
}

pkg_postinst() {
enewgroup speech
}






[gentoo-commits] gentoo-x86 commit in net-p2p/gtk-gnutella: gtk-gnutella-1.1.0.ebuild ChangeLog

2014-07-05 Thread Hans de Graaff (graaff)
graaff  14/07/05 07:28:37

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

Revision  ChangesPath
1.160net-p2p/gtk-gnutella/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog?rev=1.160view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog?rev=1.160content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog?r1=1.159r2=1.160

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog   10 May 2014 18:11:13 -  1.159
+++ ChangeLog   5 Jul 2014 07:28:37 -   1.160
@@ -1,6 +1,11 @@
 # ChangeLog for net-p2p/gtk-gnutella
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog,v 1.159 
2014/05/10 18:11:13 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog,v 1.160 
2014/07/05 07:28:37 graaff Exp $
+
+*gtk-gnutella-1.1.0 (05 Jul 2014)
+
+  05 Jul 2014; Hans de Graaff gra...@gentoo.org +gtk-gnutella-1.1.0.ebuild:
+  Version bump.
 
   10 May 2014; Hans de Graaff gra...@gentoo.org -gtk-gnutella-1.0.0.ebuild,
   -gtk-gnutella-1.0.0-r1.ebuild:



1.1  net-p2p/gtk-gnutella/gtk-gnutella-1.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-1.1.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-1.1.0.ebuild?rev=1.1content-type=text/plain

Index: gtk-gnutella-1.1.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-1.1.0.ebuild,v 1.1 
2014/07/05 07:28:37 graaff Exp $

EAPI=5

inherit eutils

IUSE=nls dbus ssl +gtk

DESCRIPTION=A GTK+ Gnutella client
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.bz2
HOMEPAGE=http://gtk-gnutella.sourceforge.net/;

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

RDEPEND=
dev-libs/glib:2
sys-libs/zlib
gtk? ( =x11-libs/gtk+-2.2.1:2 )
dbus? ( =sys-apps/dbus-0.35.2 )
ssl? ( =net-libs/gnutls-2.2.5 )
nls? ( =sys-devel/gettext-0.11.5 )
DEPEND=${RDEPEND}
virtual/pkgconfig

src_prepare() {
strip-linguas -i po

echo # Gentoo-selected LINGUAS  po/LINGUAS
for ling in ${LINGUAS}; do
echo $ling  po/LINGUAS
done
}

src_configure() {
# There is no option to turn off optimization through the build.sh
# script.
sed -i -e s/Configure -Oder/Configure -Oder -Doptimize=none/ build.sh 
|| die

# The build script does not support the equivalent --enable
# options so we must construct the configuration by hand.

local myconf

if ! use nls; then
myconf=${myconf} --disable-nls
fi

if ! use dbus; then
myconf=${myconf} --disable-dbus
fi

if ! use ssl; then
myconf=${myconf} --disable-gnutls
fi

if use gtk; then
myconf=${myconf} --gtk2
else
myconf=${myconf} --topless
fi

./build.sh \
--configure-only \
--prefix=/usr \
--cc=$(tc-getCC) \
${myconf}
}

src_compile() {
# Build system is not parallel-safe, bug 500760
emake -j1
}

src_install() {
dodir /usr/bin
emake INSTALL_PREFIX=${D} install || die Install failed
dodoc AUTHORS ChangeLog README TODO

# Touch the symbols file into the future to avoid warnings from
# gtk-gnutella later on, since we will most likely strip the binary.
touch --date=next minute ${D}/usr/lib/gtk-gnutella/gtk-gnutella.nm 
|| die
}






[gentoo-commits] gentoo-x86 commit in dev-libs/librelp/files: - New directory

2014-07-05 Thread Tiziano Mueller (dev-zero)
dev-zero14/07/05 07:59:19

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-libs/librelp/files added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-libs/librelp: librelp-1.2.7-r1.ebuild ChangeLog

2014-07-05 Thread Tiziano Mueller (dev-zero)
dev-zero14/07/05 08:02:24

  Modified: ChangeLog
  Added:librelp-1.2.7-r1.ebuild
  Log:
  Always DEPEND on gnutls for the headers (bug #513754), only RDEPEND for 
gnutls depends now on the flag. Add a patch from upstream to prevent segfaults 
with keepalive. Use autotools-utils eclass for src_install (solves bug #475012 
properly).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x1A5D023975B0583D!)

Revision  ChangesPath
1.27 dev-libs/librelp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/librelp/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   4 May 2014 14:17:14 -   1.26
+++ ChangeLog   5 Jul 2014 08:02:24 -   1.27
@@ -1,6 +1,16 @@
 # ChangeLog for dev-libs/librelp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/librelp/ChangeLog,v 1.26 
2014/05/04 14:17:14 ultrabug Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/librelp/ChangeLog,v 1.27 
2014/07/05 08:02:24 dev-zero Exp $
+
+*librelp-1.2.7-r1 (05 Jul 2014)
+
+  05 Jul 2014; Tiziano Müller dev-z...@gentoo.org
+  +files/librelp-1.2.7-prevent-segfault-with-keepalive.patch,
+  +librelp-1.2.7-r1.ebuild:
+  Always DEPEND on gnutls for the headers (bug #513754), only RDEPEND for 
gnutls
+  depends now on the flag. Add a patch from upstream to prevent segfaults with
+  keepalive. Use autotools-utils eclass for src_install (solves bug #475012
+  properly).
 
 *librelp-1.2.7 (04 May 2014)
 



1.1  dev-libs/librelp/librelp-1.2.7-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/librelp-1.2.7-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/librelp-1.2.7-r1.ebuild?rev=1.1content-type=text/plain

Index: librelp-1.2.7-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/librelp/librelp-1.2.7-r1.ebuild,v 
1.1 2014/07/05 08:02:24 dev-zero Exp $

EAPI=5

inherit autotools-utils

DESCRIPTION=An easy to use library for the RELP protocol.
HOMEPAGE=http://www.librelp.com/;
SRC_URI=http://download.rsyslog.com/${PN}/${P}.tar.gz;

LICENSE=GPL-3 doc? ( FDL-1.3 )
SLOT=0
KEYWORDS=~amd64 ~arm ~hppa ~sparc ~x86
IUSE=debug doc +ssl static-libs

RDEPEND=
ssl? ( =net-libs/gnutls-2.12.23-r1 )


DEPEND=
=net-libs/gnutls-2.12.23-r1
virtual/pkgconfig


AUTOTOOLS_IN_SOURCE_BUILD=1

PATCHES=( ${FILESDIR}/${P}-prevent-segfault-with-keepalive.patch )

src_configure() {
# gnutls-headers are always required (in src/tcp.h) despite the flag, 
bug #513754
local myeconfargs=(
$(use_enable debug)
$(use_enable ssl tls)
)

autotools-utils_src_configure
}

src_install() {
use doc  HTML_DOCS=( doc/relp.html )
autotools-utils_src_install
}






[gentoo-commits] gentoo-x86 commit in dev-libs/librelp/files: librelp-1.2.7-prevent-segfault-with-keepalive.patch

2014-07-05 Thread Tiziano Mueller (dev-zero)
dev-zero14/07/05 08:02:24

  Added:librelp-1.2.7-prevent-segfault-with-keepalive.patch
  Log:
  Always DEPEND on gnutls for the headers (bug #513754), only RDEPEND for 
gnutls depends now on the flag. Add a patch from upstream to prevent segfaults 
with keepalive. Use autotools-utils eclass for src_install (solves bug #475012 
properly).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x1A5D023975B0583D!)

Revision  ChangesPath
1.1  
dev-libs/librelp/files/librelp-1.2.7-prevent-segfault-with-keepalive.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/files/librelp-1.2.7-prevent-segfault-with-keepalive.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/files/librelp-1.2.7-prevent-segfault-with-keepalive.patch?rev=1.1content-type=text/plain

Index: librelp-1.2.7-prevent-segfault-with-keepalive.patch
===
From 0ca7f807958e8365b2fd2f3fd833814c83594bdc Mon Sep 17 00:00:00 2001
From: Tomas Heinrich thein...@redhat.com
Date: Sun, 1 Jun 2014 16:44:59 +0200
Subject: [PATCH] Reorder code, prevent access of uninitialized data

---
 src/tcp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/tcp.c b/src/tcp.c
index 1e0fd11..e21db51 100644
--- a/src/tcp.c
+++ b/src/tcp.c
@@ -713,12 +713,12 @@ relpTcpAcceptConnReq(relpTcp_t **ppThis, int sock, 
relpSrv_t *pSrv)
ABORT_FINALIZE(RELP_RET_ACCEPT_ERR);
}
 
-   if(pSrv-bKeepAlive)
-   EnableKeepAlive(pThis, pSrv, iNewSock);
-
/* construct our object so that we can use it... */
CHKRet(relpTcpConstruct(pThis, pEngine, RELP_SRV_CONN, pSrv));
 
+   if(pSrv-bKeepAlive)
+   EnableKeepAlive(pThis, pSrv, iNewSock);
+
/* TODO: obtain hostname, normalize (callback?), save it */
CHKRet(relpTcpSetRemHost(pThis, (struct sockaddr*) addr));
pThis-pEngine-dbgprint(remote host is '%s', ip '%s'\n, 
pThis-pRemHostName, pThis-pRemHostIP);
-- 
1.9.3







[gentoo-commits] gentoo-x86 commit in dev-lang/erlang: erlang-17.1.ebuild ChangeLog

2014-07-05 Thread Dirkjan Ochtman (djc)
djc 14/07/05 08:10:52

  Modified: ChangeLog
  Added:erlang-17.1.ebuild
  Log:
  Version bump erlang to 17.1 (fixes bug 515998)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
30380381)

Revision  ChangesPath
1.254dev-lang/erlang/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/erlang/ChangeLog,v
retrieving revision 1.253
retrieving revision 1.254
diff -u -r1.253 -r1.254
--- ChangeLog   8 May 2014 08:19:02 -   1.253
+++ ChangeLog   5 Jul 2014 08:10:52 -   1.254
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/erlang
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/erlang/ChangeLog,v 1.253 
2014/05/08 08:19:02 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/erlang/ChangeLog,v 1.254 
2014/07/05 08:10:52 djc Exp $
+
+*erlang-17.1 (05 Jul 2014)
+
+  05 Jul 2014; Dirkjan Ochtman d...@gentoo.org +erlang-17.1.ebuild:
+  Version bump erlang to 17.1 (fixes bug 515998)
 
 *erlang-17.0-r1 (08 May 2014)
 



1.1  dev-lang/erlang/erlang-17.1.ebuild

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

Index: erlang-17.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/erlang/erlang-17.1.ebuild,v 1.1 
2014/07/05 08:10:52 djc Exp $

EAPI=4
WX_GTK_VER=2.8

inherit autotools elisp-common eutils java-pkg-opt-2 multilib systemd 
versionator wxwidgets

# NOTE: If you need symlinks for binaries please tell maintainers or
# open up a bug to let it be created.

DESCRIPTION=Erlang programming language, runtime environment, and large 
collection of libraries
HOMEPAGE=http://www.erlang.org/;
SRC_URI=http://www.erlang.org/download/otp_src_${PV}.tar.gz
http://erlang.org/download/otp_doc_man_${PV}.tar.gz
doc? ( http://erlang.org/download/otp_doc_html_${PV}.tar.gz )

LICENSE=ErlPL-1.1
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris
IUSE=compat-ethread doc emacs halfword hipe java kpoll odbc smp sctp ssl 
systemd tk wxwidgets

RDEPEND==dev-lang/perl-5.6.1
ssl? ( =dev-libs/openssl-0.9.7d )
emacs? ( virtual/emacs )
java? ( =virtual/jdk-1.2 )
odbc? ( dev-db/unixODBC )
DEPEND=${RDEPEND}
wxwidgets? ( x11-libs/wxGTK:2.8[X,opengl] virtual/glu )
sctp? ( net-misc/lksctp-tools )
tk? ( dev-lang/tk )

S=${WORKDIR}/otp_src_${PV}

SITEFILE=50${PN}-gentoo.el

pkg_setup() {
if use halfword ; then
use amd64 || die halfword support is limited to amd64
fi
}

src_prepare() {
use odbc || sed -i 's: odbc : :' lib/Makefile

# bug 263129, don't ignore LDFLAGS, reported upstream
sed -e 's:LDFLAGS = \$(DED_LDFLAGS):LDFLAGS += \$(DED_LDFLAGS):' -i 
${S}/lib/megaco/src/flex/Makefile.in

# don't ignore LDFLAGS, reported upstream
sed -e 's:LDFLAGS =  \$(ODBC_LIB) \$(EI_LDFLAGS):LDFLAGS += 
\$(ODBC_LIB) \$(EI_LDFLAGS):' -i ${S}/lib/odbc/c_src/Makefile.in

if ! use wxwidgets; then
sed -i 's: wx : :' lib/Makefile
rm -rf lib/wx
fi

# Nasty workaround, reported upstream
cp ${S}/lib/configure.in.src ${S}/lib/configure.in

# bug 383697
sed -i '1i#define OF(x) x' erts/emulator/drivers/common/gzio.c
cd erts  eautoreconf
}

src_configure() {
use java || export JAVAC=false

econf \
--enable-threads \
$(use_enable sctp) \
$(use_enable systemd) \
$(use_enable halfword halfword-emulator) \
$(use_enable hipe) \
$(use_with ssl ssl ${EPREFIX}/usr) \
$(use_enable ssl dynamic-ssl-lib) \
$(use_enable kpoll kernel-poll) \
$(use_enable smp smp-support) \
$(use compat-ethread  echo 
--enable-ethread-pre-pentium4-compatibility) \
$(use x64-macos  echo --enable-darwin-64bit)
}

src_compile() {
use java || export JAVAC=false
emake

if use emacs ; then
pushd lib/tools/emacs

[gentoo-commits] gentoo-x86 commit in dev-lang/erlang: ChangeLog erlang-16.2-r1.ebuild erlang-17.0.ebuild

2014-07-05 Thread Dirkjan Ochtman (djc)
djc 14/07/05 08:12:08

  Modified: ChangeLog
  Removed:  erlang-16.2-r1.ebuild erlang-17.0.ebuild
  Log:
  Remove old versions
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
30380381)

Revision  ChangesPath
1.255dev-lang/erlang/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/erlang/ChangeLog,v
retrieving revision 1.254
retrieving revision 1.255
diff -u -r1.254 -r1.255
--- ChangeLog   5 Jul 2014 08:10:52 -   1.254
+++ ChangeLog   5 Jul 2014 08:12:08 -   1.255
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/erlang
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/erlang/ChangeLog,v 1.254 
2014/07/05 08:10:52 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/erlang/ChangeLog,v 1.255 
2014/07/05 08:12:08 djc Exp $
+
+  05 Jul 2014; Dirkjan Ochtman d...@gentoo.org -erlang-16.2-r1.ebuild,
+  -erlang-17.0.ebuild:
+  Remove old versions
 
 *erlang-17.1 (05 Jul 2014)
 






[gentoo-commits] gentoo-x86 commit in app-admin/hddtemp: hddtemp-0.3_beta15-r24.ebuild hddtemp-0.3_beta15-r25.ebuild hddtemp-0.3_beta15-r7.ebuild ChangeLog

2014-07-05 Thread Sven Vermeulen (swift)
swift   14/07/05 08:21:00

  Modified: hddtemp-0.3_beta15-r24.ebuild
hddtemp-0.3_beta15-r25.ebuild
hddtemp-0.3_beta15-r7.ebuild ChangeLog
  Log:
  Adding USE=selinux dependency to sec-policy/selinux-hddtemp
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2EDD52403B68AF47)

Revision  ChangesPath
1.3  app-admin/hddtemp/hddtemp-0.3_beta15-r24.ebuild

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

Index: hddtemp-0.3_beta15-r24.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r24.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hddtemp-0.3_beta15-r24.ebuild   27 Apr 2014 11:00:47 -  1.2
+++ hddtemp-0.3_beta15-r24.ebuild   5 Jul 2014 08:21:00 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r24.ebuild,v 1.2 
2014/04/27 11:00:47 aidecoe Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r24.ebuild,v 1.3 
2014/07/05 08:21:00 swift Exp $
 
 EAPI=4
 
@@ -16,9 +16,9 @@
 LICENSE=GPL-2
 SLOT=0
 KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86
-IUSE=network-cron nls
+IUSE=network-cron nls selinux
 
-DEPEND=
+DEPEND=selinux? ( sec-policy/selinux-hddtemp )
 RDEPEND=${DEPEND}
 
 S=${WORKDIR}/${MY_P}



1.3  app-admin/hddtemp/hddtemp-0.3_beta15-r25.ebuild

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

Index: hddtemp-0.3_beta15-r25.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r25.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hddtemp-0.3_beta15-r25.ebuild   2 May 2014 17:42:01 -   1.2
+++ hddtemp-0.3_beta15-r25.ebuild   5 Jul 2014 08:21:00 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r25.ebuild,v 1.2 
2014/05/02 17:42:01 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r25.ebuild,v 1.3 
2014/07/05 08:21:00 swift Exp $
 
 EAPI=5
 inherit eutils autotools readme.gentoo systemd
@@ -15,9 +15,9 @@
 LICENSE=GPL-2
 SLOT=0
 KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86
-IUSE=network-cron nls
+IUSE=network-cron nls selinux
 
-DEPEND=
+DEPEND=selinux? ( sec-policy/selinux-hddtemp )
 RDEPEND=${DEPEND}
 
 S=${WORKDIR}/${MY_P}



1.11 app-admin/hddtemp/hddtemp-0.3_beta15-r7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r7.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r7.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r7.ebuild?r1=1.10r2=1.11

Index: hddtemp-0.3_beta15-r7.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r7.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- hddtemp-0.3_beta15-r7.ebuild2 May 2014 17:42:01 -   1.10
+++ hddtemp-0.3_beta15-r7.ebuild5 Jul 2014 08:21:00 -   1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r7.ebuild,v 1.10 
2014/05/02 17:42:01 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r7.ebuild,v 1.11 
2014/07/05 08:21:00 swift Exp $
 
 EAPI=5
 inherit eutils autotools readme.gentoo systemd
@@ -15,9 +15,9 @@
 LICENSE=GPL-2
 SLOT=0
 KEYWORDS=alpha amd64 arm hppa ia64 ppc sparc x86
-IUSE=nls
+IUSE=nls selinux
 
-DEPEND=
+DEPEND=selinux? ( sec-policy/selinux-hddtemp )
 RDEPEND=${DEPEND}
 
 S=${WORKDIR}/${MY_P}



1.157

[gentoo-commits] gentoo-x86 commit in dev-util/android-studio: android-studio-0.8.1.135.1248636.ebuild ChangeLog

2014-07-05 Thread Sven Vermeulen (swift)
swift   14/07/05 08:40:37

  Modified: ChangeLog
  Added:android-studio-0.8.1.135.1248636.ebuild
  Log:
  Fix bug #515552 - Bump android studio to 0.8.1.135.1248636, thanks to C.J. 
Wijtmans and Jason Zaman
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2EDD52403B68AF47)

Revision  ChangesPath
1.4  dev-util/android-studio/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/android-studio/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   23 Jun 2014 18:54:41 -  1.3
+++ ChangeLog   5 Jul 2014 08:40:37 -   1.4
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/android-studio
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/android-studio/ChangeLog,v 1.3 
2014/06/23 18:54:41 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/android-studio/ChangeLog,v 1.4 
2014/07/05 08:40:37 swift Exp $
+
+*android-studio-0.8.1.135.1248636 (05 Jul 2014)
+
+  05 Jul 2014; Sven Vermeulen sw...@gentoo.org
+  +android-studio-0.8.1.135.1248636.ebuild:
+  Fix bug #515552 - Bump android studio to 0.8.1.135.1248636, thanks to C.J.
+  Wijtmans and Jason Zaman
 
 *android-studio-0.6.1.135.1224218 (23 Jun 2014)
 



1.1  
dev-util/android-studio/android-studio-0.8.1.135.1248636.ebuild

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

Index: android-studio-0.8.1.135.1248636.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-util/android-studio/android-studio-0.8.1.135.1248636.ebuild,v
 1.1 2014/07/05 08:40:37 swift Exp $

EAPI=5
inherit eutils versionator

RESTRICT=strip
QA_TEXTRELS=opt/${P}/bin/libbreakgen.so
STUDIO_V=$(get_version_component_range 1-3)
BUILD_V=$(get_version_component_range 4-5)
DESCRIPTION=A new Android development environment based on IntelliJ IDEA
HOMEPAGE=http://developer.android.com/sdk/installing/studio.html;
SRC_URI=http://dl.google.com/dl/android/studio/ide-zips/${STUDIO_V}/${PN}-ide-${BUILD_V}-linux.zip;

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

DEPEND=app-arch/zip
RDEPEND==virtual/jdk-1.7
S=${WORKDIR}/${PN}

src_install() {
local dir=/opt/${PN}

insinto ${dir}
doins -r *
fperms 755 ${dir}/bin/studio.sh ${dir}/bin/fsnotifier 
${dir}/bin/fsnotifier64

newicon bin/idea.png ${PN}.png
make_wrapper ${PN} ${dir}/bin/studio.sh
make_desktop_entry ${PN} Android Studio ${PN} Development;IDE
}






[gentoo-commits] gentoo-x86 commit in dev-db/pgxnclient: pgxnclient-1.2-r1.ebuild ChangeLog pgxnclient-1.2.ebuild

2014-07-05 Thread Ian Delaney (idella4)
idella4 14/07/05 08:41:51

  Modified: ChangeLog
  Added:pgxnclient-1.2-r1.ebuild
  Removed:  pgxnclient-1.2.ebuild
  Log:
  revbump; conversion - distutils-r1, add missing dep setuptools, add test 
phase, remove old, fixes Bug 515020
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  dev-db/pgxnclient/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/pgxnclient/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   17 Jan 2013 07:36:31 -  1.1
+++ ChangeLog   5 Jul 2014 08:41:51 -   1.2
@@ -1,6 +1,13 @@
 # ChangeLog for dev-db/pgxnclient
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/pgxnclient/ChangeLog,v 1.1 
2013/01/17 07:36:31 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/pgxnclient/ChangeLog,v 1.2 
2014/07/05 08:41:51 idella4 Exp $
+
+*pgxnclient-1.2-r1 (05 Jul 2014)
+
+  05 Jul 2014; Ian Delaney idel...@gentoo.org +pgxnclient-1.2-r1.ebuild,
+  -pgxnclient-1.2.ebuild:
+  revbump; conversion - distutils-r1, add missing dep setuptools, add test
+  phase, remove old, fixes Bug 515020
 
 *pgxnclient-1.2 (17 Jan 2013)
 



1.1  dev-db/pgxnclient/pgxnclient-1.2-r1.ebuild

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

Index: pgxnclient-1.2-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgxnclient/pgxnclient-1.2-r1.ebuild,v 
1.1 2014/07/05 08:41:51 idella4 Exp $

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

inherit distutils-r1

DESCRIPTION=PostgreSQL Extension Network Client
HOMEPAGE=http://pgxnclient.projects.postgresql.org/ 
http://pypi.python.org/pypi/${PN};
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

LICENSE=BSD
SLOT=0
IUSE=test

RDEPEND==dev-db/postgresql-server-9.1
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]

python_test() {
# suite written onlt for py2
pushd ${PN}  /dev/null
if ! python_is_python3; then
PYTHONPATH=../ ${PYTHON} -m unittest discover || die tests 
failed
fi
popd  dev/null
}






[gentoo-commits] gentoo-x86 commit in kde-misc/kdeconnect: kdeconnect-0.7.2.ebuild ChangeLog

2014-07-05 Thread Manuel Rueger (mrueg)
mrueg   14/07/05 08:57:59

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

Revision  ChangesPath
1.7  kde-misc/kdeconnect/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-misc/kdeconnect/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   30 Jun 2014 23:02:43 -  1.6
+++ ChangeLog   5 Jul 2014 08:57:59 -   1.7
@@ -1,6 +1,11 @@
 # ChangeLog for kde-misc/kdeconnect
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdeconnect/ChangeLog,v 1.6 
2014/06/30 23:02:43 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdeconnect/ChangeLog,v 1.7 
2014/07/05 08:57:59 mrueg Exp $
+
+*kdeconnect-0.7.2 (05 Jul 2014)
+
+  05 Jul 2014; Manuel Rüger mr...@gentoo.org +kdeconnect-0.7.2.ebuild:
+  Version bump.
 
 *kdeconnect-0.7.1 (30 Jun 2014)
 



1.1  kde-misc/kdeconnect/kdeconnect-0.7.2.ebuild

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

Index: kdeconnect-0.7.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/kde-misc/kdeconnect/kdeconnect-0.7.2.ebuild,v 1.1 
2014/07/05 08:57:59 mrueg Exp $

EAPI=5

MY_PN=${PN}-kde
DECLARATIVE_REQUIRED=always
KDE_LINGUAS=bg bs ca cs da de es fi fr gl hu it ja ko lt nl pl pt pt_BR ro ru 
sk sv tr uk

inherit kde4-base

if [[ ${KDE_BUILD_TYPE} != live ]]; then
MY_P=${MY_PN}-${PV}
SRC_URI=mirror://kde/unstable/${PN}/${PV}/src/${MY_P}.tar.xz
KEYWORDS=~amd64 ~x86
else
EGIT_REPO_URI=git://anongit.kde.org/${MY_PN}
KEYWORDS=
fi

DESCRIPTION=Adds communication between KDE and your smartphone
HOMEPAGE=http://www.kde.org/;

LICENSE=GPL-2+
SLOT=4
IUSE=debug

DEPEND=
app-crypt/qca:2
dev-libs/qjson

RDEPEND=${DEPEND}
$(add_kdebase_dep plasma-workspace)
app-crypt/qca-ossl:2
net-dns/avahi


[[ ${KDE_BUILD_TYPE} != live ]]  S=${WORKDIR}/${MY_P}

src_prepare(){
sed -i -e s:QtCrypto/QtCrypto:QtCrypto: core/networkpackage.cpp || die
kde4-base_src_prepare
}

pkg_postinst(){
elog
elog Optional dependency:
elog sys-fs/sshfs-fuse (for 'remote filesystem browser' plugin)
elog
elog The Android .apk file is available via
elog 
https://play.google.com/store/apps/details?id=org.kde.kdeconnect_tp;
elog
}






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

2014-07-05 Thread Manuel Rueger (mrueg)
mrueg   14/07/05 09:10:24

  Modified: activesupport-3.2.19.ebuild
activesupport-3.2.18.ebuild ChangeLog
  Log:
  Remove ruby18 cases.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.2  dev-ruby/activesupport/activesupport-3.2.19.ebuild

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

Index: activesupport-3.2.19.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.2.19.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- activesupport-3.2.19.ebuild 3 Jul 2014 05:37:33 -   1.1
+++ activesupport-3.2.19.ebuild 5 Jul 2014 09:10:23 -   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-ruby/activesupport/activesupport-3.2.19.ebuild,v 
1.1 2014/07/03 05:37:33 graaff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.2.19.ebuild,v 
1.2 2014/07/05 09:10:23 mrueg Exp $
 
 EAPI=5
 
@@ -58,10 +58,6 @@
 
 each_ruby_prepare() {
case ${RUBY} in
-   *ruby18)
-   # Skip failing ruby18 tests related to JSON 
serialization
-   rm test/message_encryptor_test.rb 
test/message_verifier_test.rb || die
-   ;;
*jruby)
# Ignore failing tests on jruby in the interest of a 
security update
sed -i -e 
'/test_not_allowed_to_expand_parameter_entities_to_files/,/^end/ s:^:#:' \



1.2  dev-ruby/activesupport/activesupport-3.2.18.ebuild

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

Index: activesupport-3.2.18.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.2.18.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- activesupport-3.2.18.ebuild 6 May 2014 18:50:41 -   1.1
+++ activesupport-3.2.18.ebuild 5 Jul 2014 09:10:23 -   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-ruby/activesupport/activesupport-3.2.18.ebuild,v 
1.1 2014/05/06 18:50:41 graaff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.2.18.ebuild,v 
1.2 2014/07/05 09:10:23 mrueg Exp $
 
 EAPI=5
 
@@ -58,10 +58,6 @@
 
 each_ruby_prepare() {
case ${RUBY} in
-   *ruby18)
-   # Skip failing ruby18 tests related to JSON 
serialization
-   rm test/message_encryptor_test.rb 
test/message_verifier_test.rb || die
-   ;;
*jruby)
# Ignore failing tests on jruby in the interest of a 
security update
sed -i -e 
'/test_not_allowed_to_expand_parameter_entities_to_files/,/^end/ s:^:#:' \



1.263dev-ruby/activesupport/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog   3 Jul 2014 06:19:30 -   1.262
+++ ChangeLog   5 Jul 2014 09:10:23 -   1.263
@@ -1,6 +1,10 @@
 # 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.262 
2014/07/03 06:19:30 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.263 
2014/07/05 09:10:23 mrueg Exp $
+
+  05 Jul 2014; Manuel Rüger mr...@gentoo.org 

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

2014-07-05 Thread Manuel Rueger (mrueg)
mrueg   14/07/05 09:11:46

  Modified: rubygems-2.0.14-r1.ebuild rubygems-2.0.3.ebuild
rubygems-2.0.14.ebuild ChangeLog
  Log:
  Remove ruby18 cases.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.4  dev-ruby/rubygems/rubygems-2.0.14-r1.ebuild

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

Index: rubygems-2.0.14-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.0.14-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rubygems-2.0.14-r1.ebuild   2 Jul 2014 10:33:11 -   1.3
+++ rubygems-2.0.14-r1.ebuild   5 Jul 2014 09:11:46 -   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-ruby/rubygems/rubygems-2.0.14-r1.ebuild,v 1.3 
2014/07/02 10:33:11 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.0.14-r1.ebuild,v 1.4 
2014/07/05 09:11:46 mrueg Exp $
 
 EAPI=5
 
@@ -58,11 +58,6 @@
 
 each_ruby_prepare() {
case ${RUBY} in
-   *ruby18)
-   # Remove test failing on ruby18. According to travis.yml
-   # upstream no longer cares.
-   sed -i -e '/test_install_location_extra_slash/,/^  end/ 
s:^:#:' test/rubygems/test_gem_package.rb || die
-   ;;
*jruby)
sed -i -e '/test_install_location_extra_slash/,/^  end/ 
s:^:#:' test/rubygems/test_gem_package.rb || die
# Remove failing tests. Before we did not run any tests 
at



1.14 dev-ruby/rubygems/rubygems-2.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rubygems/rubygems-2.0.3.ebuild?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rubygems/rubygems-2.0.3.ebuild?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rubygems/rubygems-2.0.3.ebuild?r1=1.13r2=1.14

Index: rubygems-2.0.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.0.3.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- rubygems-2.0.3.ebuild   2 Jul 2014 10:33:11 -   1.13
+++ rubygems-2.0.3.ebuild   5 Jul 2014 09:11:46 -   1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.0.3.ebuild,v 
1.13 2014/07/02 10:33:11 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.0.3.ebuild,v 
1.14 2014/07/05 09:11:46 mrueg Exp $
 
 EAPI=5
 
@@ -58,11 +58,6 @@
 
 each_ruby_prepare() {
case ${RUBY} in
-   *ruby18)
-   # Remove test failing on ruby18. According to travis.yml
-   # upstream no longer cares.
-   sed -i -e '/test_install_location_extra_slash/,/^  end/ 
s:^:#:' test/rubygems/test_gem_package.rb || die
-   ;;
*jruby)
sed -i -e '/test_install_location_extra_slash/,/^  end/ 
s:^:#:' test/rubygems/test_gem_package.rb || die
# Remove failing tests. Before we did not run any tests 
at



1.13 dev-ruby/rubygems/rubygems-2.0.14.ebuild

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

Index: rubygems-2.0.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.0.14.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- rubygems-2.0.14.ebuild  2 Jul 2014 10:33:11 -   1.12
+++ rubygems-2.0.14.ebuild  5 Jul 2014 09:11:46 -   1.13
@@ -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/rubygems/rubygems-2.0.14.ebuild,v 
1.12 2014/07/02 10:33:11 mrueg Exp $
+# $Header: 

[gentoo-commits] proj/mozilla:master commit in: dev-libs/nss/, dev-libs/nspr/

2014-07-05 Thread Ian Stakenvicius
commit: 0d7b3f8482e4c7bb64fe37812e2e452173154e75
Author: Ian Stakenvicius axs AT gentoo DOT org
AuthorDate: Sat Jul  5 09:21:11 2014 +
Commit: Ian Stakenvicius axs AT gentoo DOT org
CommitDate: Sat Jul  5 09:21:11 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/mozilla.git;a=commit;h=0d7b3f84

updated nss ebuild to match the tree, removed old nspr ebuild

---
 dev-libs/nspr/nspr-4.10.4.ebuild   |  95 
 dev-libs/nss/Manifest  |   1 -
 .../nss/{nss-3.16-r1.ebuild = nss-3.16.1.ebuild}  |  79 +++---
 dev-libs/nss/nss-3.16.ebuild   | 270 -
 4 files changed, 43 insertions(+), 402 deletions(-)

diff --git a/dev-libs/nspr/nspr-4.10.4.ebuild b/dev-libs/nspr/nspr-4.10.4.ebuild
deleted file mode 100644
index 4a61b84..000
--- a/dev-libs/nspr/nspr-4.10.4.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.4.ebuild,v 1.1 
2014/03/20 13:31:07 polynomial-c Exp $
-
-EAPI=5
-WANT_AUTOCONF=2.1
-
-inherit autotools eutils multilib toolchain-funcs versionator
-
-MIN_PV=$(get_version_component_range 2)
-
-DESCRIPTION=Netscape Portable Runtime
-HOMEPAGE=http://www.mozilla.org/projects/nspr/;
-SRC_URI=ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${PV}/src/${P}.tar.gz;
-
-LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 )
-SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
-IUSE=debug
-
-src_prepare() {
-   mkdir build inst
-   cd ${S}/nspr/
-   epatch ${FILESDIR}/${PN}-4.6.1-lang.patch
-   epatch ${FILESDIR}/${PN}-4.7.0-prtime.patch
-   epatch ${FILESDIR}/${PN}-4.7.1-solaris.patch
-   epatch ${FILESDIR}/${PN}-4.7.4-solaris.patch
-   # epatch ${FILESDIR}/${PN}-4.8.3-aix-gcc.patch
-   epatch ${FILESDIR}/${PN}-4.8.4-darwin-install_name.patch
-   epatch ${FILESDIR}/${PN}-4.8.9-link-flags.patch
-   # We do not need to pass -L$libdir via nspr-config --libs
-   epatch ${FILESDIR}/${PN}-4.9.5_nspr_config.patch
-
-   # We must run eautoconf to regenerate configure
-   eautoconf
-
-   # make sure it won't find Perl out of Prefix
-   sed -i -e s/perl5//g ${S}/nspr/configure || die
-
-   # Respect LDFLAGS
-   sed -i -e 's/\$(MKSHLIB) \$(OBJS)/\$(MKSHLIB) \$(LDFLAGS) \$(OBJS)/g' \
-   ${S}/nspr/config/rules.mk || die
-}
-
-src_configure() {
-   cd ${S}/build
-
-   # We use the standard BUILD_xxx but nspr uses HOST_xxx
-   tc-export_build_env BUILD_CC
-   export HOST_CC=${BUILD_CC} HOST_CFLAGS=${BUILD_CFLAGS} 
HOST_LDFLAGS=${BUILD_LDFLAGS}
-   tc-export AR CC CXX RANLIB
-   [[ ${CBUILD} != ${CHOST} ]] \
-export CROSS_COMPILE=1 \
-   || unset CROSS_COMPILE
-
-   local myconf
-   echo  ${T}/test.c
-   ${CC} ${CFLAGS} ${CPPFLAGS} -c ${T}/test.c -o ${T}/test.o || die
-   case $(file ${T}/test.o) in
-   *32-bit*x86-64*|*64-bit*|*ppc64*|*x86_64*) myconf+= 
--enable-64bit;;
-   *32-bit*|*ppc*|*i386*) ;;
-   *) die Failed to detect whether your arch is 64bits or 32bits, 
disable distcc if you're using it, please;;
-   esac
-
-   # Ancient autoconf needs help finding the right tools.
-   LC_ALL=C ECONF_SOURCE=../nspr \
-   ac_cv_path_AR=${AR} \
-   econf \
-   --libdir=${EPREFIX}/usr/$(get_libdir) \
-   $(use_enable debug) \
-   $(use_enable !debug optimize) \
-   ${myconf}
-}
-
-src_compile() {
-   cd ${S}/build
-   emake
-}
-
-src_install() {
-   # Their build system is royally confusing, as usual
-   MINOR_VERSION=${MIN_PV} # Used for .so version
-   cd ${S}/build
-   emake DESTDIR=${D} install
-
-   cd ${ED}/usr/$(get_libdir)
-   einfo removing static libraries as upstream has requested!
-   rm *.a || die failed to remove static libraries.
-
-   # install nspr-config
-   dobin ${S}/build/config/nspr-config
-
-   # Remove stupid files in /usr/bin
-   rm ${ED}/usr/bin/prerr.properties || die failed to cleanup unneeded 
files
-}

diff --git a/dev-libs/nss/Manifest b/dev-libs/nss/Manifest
index 9fbe9cf..b75a965 100644
--- a/dev-libs/nss/Manifest
+++ b/dev-libs/nss/Manifest
@@ -1,4 +1,3 @@
 DIST nss-3.14.1-add_spi+cacerts_ca_certs.patch 25018 SHA256 
82ca25982828fd7153ad15fc6e81408c115476eeeb4045d3a71469380b56824b SHA512 
2aafbd972b073061bfd66a66a4b50060691957f2910f716f7a69d22d655c499f186f05db2101bea5248a00949f339327ba8bfffec024c61c8ee908766201ae00
 WHIRLPOOL 
c9fe397e316dac7983b187acf7227078ebd8f8da5df53f77f2564489e85f123c4d2afb88d56e8dc14b9ebfffe8a71ade4724b3c1ea683c5c4c487cb3a64eda43
 DIST 

[gentoo-commits] gentoo-x86 commit in gnome-base/gnome: gnome-3.10.0.ebuild ChangeLog

2014-07-05 Thread Tobias Klausmann (klausman)
klausman14/07/05 09:22:08

  Modified: gnome-3.10.0.ebuild ChangeLog
  Log:
  Dekeyword Gnome 3 on alpha
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
CE5D54E8)

Revision  ChangesPath
1.6  gnome-base/gnome/gnome-3.10.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/gnome-3.10.0.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/gnome-3.10.0.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/gnome-3.10.0.ebuild?r1=1.5r2=1.6

Index: gnome-3.10.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome/gnome-3.10.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gnome-3.10.0.ebuild 9 Mar 2014 11:59:02 -   1.5
+++ gnome-3.10.0.ebuild 5 Jul 2014 09:22:08 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/gnome-3.10.0.ebuild,v 1.5 
2014/03/09 11:59:02 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/gnome-3.10.0.ebuild,v 1.6 
2014/07/05 09:22:08 klausman Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 # when unmasking for an arch
 # double check none of the deps are still masked !
-KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86
+KEYWORDS=amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86
 
 IUSE=accessibility +bluetooth +classic +cdr cups +extras
 



1.476gnome-base/gnome/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/ChangeLog?rev=1.476view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/ChangeLog?rev=1.476content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/ChangeLog?r1=1.475r2=1.476

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome/ChangeLog,v
retrieving revision 1.475
retrieving revision 1.476
diff -u -r1.475 -r1.476
--- ChangeLog   6 May 2014 02:19:52 -   1.475
+++ ChangeLog   5 Jul 2014 09:22:08 -   1.476
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/gnome
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/ChangeLog,v 1.475 
2014/05/06 02:19:52 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/ChangeLog,v 1.476 
2014/07/05 09:22:08 klausman Exp $
+
+  05 Jul 2014; Tobias Klausmann klaus...@gentoo.org gnome-3.10.0.ebuild:
+  Dekeyword Gnome 3 on alpha
 
   06 May 2014; Patrick Lauer patr...@gentoo.org metadata.xml:
   Remove unneeded useflag description from metadata.xml






[gentoo-commits] gentoo-x86 commit in dev-lua/luaexpat: luaexpat-1.3.0.ebuild ChangeLog luaexpat-1.3.0-r1.ebuild

2014-07-05 Thread Jeroen Roovers (jer)
jer 14/07/05 09:32:08

  Modified: luaexpat-1.3.0.ebuild ChangeLog
luaexpat-1.3.0-r1.ebuild
  Log:
  Marked ~hppa (bug #516406).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  dev-lua/luaexpat/luaexpat-1.3.0.ebuild

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

Index: luaexpat-1.3.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- luaexpat-1.3.0.ebuild   17 Apr 2014 00:15:37 -  1.1
+++ luaexpat-1.3.0.ebuild   5 Jul 2014 09:32:08 -   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-lua/luaexpat/luaexpat-1.3.0.ebuild,v 
1.1 2014/04/17 00:15:37 zx2c4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0.ebuild,v 
1.2 2014/07/05 09:32:08 jer Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~amd64 ~arm ~x86
+KEYWORDS=~amd64 ~arm ~hppa ~x86
 IUSE=
 
 RDEPEND==dev-lang/lua-5.1[deprecated]



1.18 dev-lua/luaexpat/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   19 Jun 2014 08:16:35 -  1.17
+++ ChangeLog   5 Jul 2014 09:32:08 -   1.18
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lua/luaexpat
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v 1.17 
2014/06/19 08:16:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v 1.18 
2014/07/05 09:32:08 jer Exp $
+
+  05 Jul 2014; Jeroen Roovers j...@gentoo.org luaexpat-1.3.0.ebuild,
+  luaexpat-1.3.0-r1.ebuild:
+  Marked ~hppa (bug #516406).
 
   19 Jun 2014; Michał Górny mgo...@gentoo.org luaexpat-1.3.0-r1.ebuild:
   Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug



1.3  dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild

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

Index: luaexpat-1.3.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- luaexpat-1.3.0-r1.ebuild19 Jun 2014 08:16:35 -  1.2
+++ luaexpat-1.3.0-r1.ebuild5 Jul 2014 09:32:08 -   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-lua/luaexpat/luaexpat-1.3.0-r1.ebuild,v 
1.2 2014/06/19 08:16:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild,v 
1.3 2014/07/05 09:32:08 jer Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~amd64 ~arm ~x86
+KEYWORDS=~amd64 ~arm ~hppa ~x86
 IUSE=
 
 RDEPEND==dev-lang/lua-5.1.5-r2[deprecated,${MULTILIB_USEDEP}]






[gentoo-commits] gentoo-x86 commit in net-dns/pdns-recursor: pdns-recursor-3.5.3-r1.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 10:51:36

  Modified: pdns-recursor-3.5.3-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #514946
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.3  net-dns/pdns-recursor/pdns-recursor-3.5.3-r1.ebuild

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

Index: pdns-recursor-3.5.3-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-dns/pdns-recursor/pdns-recursor-3.5.3-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pdns-recursor-3.5.3-r1.ebuild   4 Jul 2014 19:32:18 -   1.2
+++ pdns-recursor-3.5.3-r1.ebuild   5 Jul 2014 10:51:36 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-dns/pdns-recursor/pdns-recursor-3.5.3-r1.ebuild,v 
1.2 2014/07/04 19:32:18 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-dns/pdns-recursor/pdns-recursor-3.5.3-r1.ebuild,v 
1.3 2014/07/05 10:51:36 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=amd64 ~x86
+KEYWORDS=amd64 x86
 IUSE=lua
 
 DEPEND=lua? ( =dev-lang/lua-5.1 )



1.47 net-dns/pdns-recursor/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/pdns-recursor/ChangeLog?rev=1.47view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/pdns-recursor/ChangeLog?rev=1.47content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/pdns-recursor/ChangeLog?r1=1.46r2=1.47

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   4 Jul 2014 19:32:18 -   1.46
+++ ChangeLog   5 Jul 2014 10:51:36 -   1.47
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/pdns-recursor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.46 
2014/07/04 19:32:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.47 
2014/07/05 10:51:36 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org 
pdns-recursor-3.5.3-r1.ebuild:
+  Stable for x86, wrt bug #514946
 
   04 Jul 2014; Agostino Sarubbo a...@gentoo.org 
pdns-recursor-3.5.3-r1.ebuild:
   Stable for amd64, wrt bug #514946






[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: dbus-1.8.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 10:51:32

  Modified: dbus-1.8.6.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #516080
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  sys-apps/dbus/dbus-1.8.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?r1=1.3r2=1.4

Index: dbus-1.8.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- dbus-1.8.6.ebuild   5 Jul 2014 02:05:01 -   1.3
+++ dbus-1.8.6.ebuild   5 Jul 2014 10:51:32 -   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/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.3 
2014/07/05 02:05:01 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.4 
2014/07/05 10:51:32 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -12,7 +12,7 @@
 
 LICENSE=|| ( AFL-2.1 GPL-2 )
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=debug doc selinux static-libs systemd test X
 
 RDEPEND==dev-libs/expat-2



1.428sys-apps/dbus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v
retrieving revision 1.427
retrieving revision 1.428
diff -u -r1.427 -r1.428
--- ChangeLog   5 Jul 2014 02:05:01 -   1.427
+++ ChangeLog   5 Jul 2014 10:51:32 -   1.428
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/dbus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.427 2014/07/05 
02:05:01 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.428 2014/07/05 
10:51:32 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
+  Stable for x86, wrt bug #516080
 
   05 Jul 2014; Jeroen Roovers j...@gentoo.org dbus-1.8.6.ebuild:
   Stable for HPPA (bug #516080).






[gentoo-commits] gentoo-x86 commit in net-analyzer/nfdump: nfdump-1.6.12.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 10:51:40

  Modified: nfdump-1.6.12.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #515278
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  net-analyzer/nfdump/nfdump-1.6.12.ebuild

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

Index: nfdump-1.6.12.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/nfdump-1.6.12.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nfdump-1.6.12.ebuild4 Jul 2014 19:32:23 -   1.3
+++ nfdump-1.6.12.ebuild5 Jul 2014 10:51:40 -   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/nfdump/nfdump-1.6.12.ebuild,v 
1.3 2014/07/04 19:32:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/nfdump-1.6.12.ebuild,v 
1.4 2014/07/05 10:51:40 ago Exp $
 
 EAPI=5
 inherit autotools eutils
@@ -15,7 +15,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=amd64 ~x86
+KEYWORDS=amd64 x86
 IUSE=compat15 debug ftconv nfprofile nftrack readpcap sflow
 
 CDEPEND=



1.39 net-analyzer/nfdump/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog   4 Jul 2014 19:32:23 -   1.38
+++ ChangeLog   5 Jul 2014 10:51:40 -   1.39
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nfdump
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/ChangeLog,v 1.38 
2014/07/04 19:32:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/ChangeLog,v 1.39 
2014/07/05 10:51:40 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org nfdump-1.6.12.ebuild:
+  Stable for x86, wrt bug #515278
 
   04 Jul 2014; Agostino Sarubbo a...@gentoo.org nfdump-1.6.12.ebuild:
   Stable for amd64, wrt bug #515278






[gentoo-commits] gentoo-x86 commit in dev-libs/lzo: lzo-2.08.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 10:51:44

  Modified: lzo-2.08.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #515238
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  dev-libs/lzo/lzo-2.08.ebuild

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

Index: lzo-2.08.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lzo-2.08.ebuild 4 Jul 2014 19:32:28 -   1.3
+++ lzo-2.08.ebuild 5 Jul 2014 10:51:44 -   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-libs/lzo/lzo-2.08.ebuild,v 1.3 
2014/07/04 19:32:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v 1.4 
2014/07/05 10:51:44 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=2
-KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=examples static-libs
 
 RDEPEND=abi_x86_32? (



1.83 dev-libs/lzo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.83view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.83content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?r1=1.82r2=1.83

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog   4 Jul 2014 19:32:28 -   1.82
+++ ChangeLog   5 Jul 2014 10:51:44 -   1.83
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/lzo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.82 2014/07/04 
19:32:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.83 2014/07/05 
10:51:44 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org lzo-2.08.ebuild:
+  Stable for x86, wrt bug #515238
 
   04 Jul 2014; Agostino Sarubbo a...@gentoo.org lzo-2.08.ebuild:
   Stable for amd64, wrt bug #515238






[gentoo-commits] gentoo-x86 commit in dev-dotnet/libgdiplus: libgdiplus-2.10.9-r2.ebuild libgdiplus-2.10.9-r1.ebuild ChangeLog libgdiplus-2.10.ebuild

2014-07-05 Thread Pacho Ramos (pacho)
pacho   14/07/05 10:59:00

  Modified: libgdiplus-2.10.9-r1.ebuild ChangeLog
  Added:libgdiplus-2.10.9-r2.ebuild
  Removed:  libgdiplus-2.10.ebuild
  Log:
  We cannot stabilize giflib 4.2.x yet (#512540)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.5  dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild

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

Index: libgdiplus-2.10.9-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libgdiplus-2.10.9-r1.ebuild 16 Dec 2013 13:40:00 -  1.4
+++ libgdiplus-2.10.9-r1.ebuild 5 Jul 2014 10:59:00 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild,v 1.4 
2013/12/16 13:40:00 polynomial-c Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild,v 1.5 
2014/07/05 10:59:00 pacho Exp $
 
 EAPI=5
 
@@ -25,7 +25,7 @@
x11-libs/libXt
=x11-libs/cairo-1.8.4[X]
media-libs/libexif
-   =media-libs/giflib-4.2.3
+   =media-libs/giflib-4.1.3
virtual/jpeg:0
media-libs/tiff:0
!cairo? ( =x11-libs/pango-1.20 )
@@ -35,7 +35,6 @@
 
 PATCHES=(${FILESDIR}/${P}-gold.patch
${FILESDIR}/${PN}-2.10.1-libpng15.patch
-   ${FILESDIR}/${PN}-2.10.9-giflib-quantizebuffer.patch
${FILESDIR}/${PN}-2.10.9-freetype251.patch)
 
 src_prepare() {



1.148dev-dotnet/libgdiplus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog   16 Dec 2013 13:40:00 -  1.147
+++ ChangeLog   5 Jul 2014 10:59:00 -   1.148
@@ -1,6 +1,12 @@
 # ChangeLog for dev-dotnet/libgdiplus
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.147 
2013/12/16 13:40:00 polynomial-c Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.148 
2014/07/05 10:59:00 pacho Exp $
+
+*libgdiplus-2.10.9-r2 (05 Jul 2014)
+
+  05 Jul 2014; Pacho Ramos pa...@gentoo.org +libgdiplus-2.10.9-r2.ebuild,
+  -libgdiplus-2.10.ebuild, libgdiplus-2.10.9-r1.ebuild:
+  We cannot stabilize giflib 4.2.x yet (#512540)
 
   16 Dec 2013; Lars Wendler polynomia...@gentoo.org
   libgdiplus-2.10.9-r1.ebuild, +files/libgdiplus-2.10.9-freetype251.patch:



1.1  dev-dotnet/libgdiplus/libgdiplus-2.10.9-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r2.ebuild?rev=1.1content-type=text/plain

Index: libgdiplus-2.10.9-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r2.ebuild,v 1.1 
2014/07/05 10:59:00 pacho Exp $

EAPI=5

inherit base eutils mono flag-o-matic

DESCRIPTION=Library for using System.Drawing with mono
HOMEPAGE=http://www.mono-project.com;

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~x86-solaris
SRC_URI=http://download.mono-project.com/sources/${PN}/${P}.tar.bz2;

IUSE=cairo

RDEPEND==dev-libs/glib-2.16:2
=media-libs/freetype-2.3.7
=media-libs/fontconfig-2.6
=media-libs/libpng-1.4:0
x11-libs/libXrender
x11-libs/libX11
x11-libs/libXt
=x11-libs/cairo-1.8.4[X]
media-libs/libexif
=media-libs/giflib-4.2.3
virtual/jpeg:0
 

[gentoo-commits] gentoo-x86 commit in dev-dotnet/libgdiplus: libgdiplus-2.10.9-r1.ebuild ChangeLog

2014-07-05 Thread Pacho Ramos (pacho)
pacho   14/07/05 11:00:02

  Modified: libgdiplus-2.10.9-r1.ebuild ChangeLog
  Log:
  amd64 stable, bug #504796
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.6  dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild?r1=1.5r2=1.6

Index: libgdiplus-2.10.9-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libgdiplus-2.10.9-r1.ebuild 5 Jul 2014 10:59:00 -   1.5
+++ libgdiplus-2.10.9-r1.ebuild 5 Jul 2014 11:00:02 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild,v 1.5 
2014/07/05 10:59:00 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-2.10.9-r1.ebuild,v 1.6 
2014/07/05 11:00:02 pacho Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~x86-solaris
+KEYWORDS=amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~x86-solaris
 SRC_URI=http://download.mono-project.com/sources/${PN}/${P}.tar.bz2;
 
 IUSE=cairo



1.149dev-dotnet/libgdiplus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog   5 Jul 2014 10:59:00 -   1.148
+++ ChangeLog   5 Jul 2014 11:00:02 -   1.149
@@ -1,6 +1,9 @@
 # ChangeLog for dev-dotnet/libgdiplus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.148 
2014/07/05 10:59:00 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.149 
2014/07/05 11:00:02 pacho Exp $
+
+  05 Jul 2014; Pacho Ramos pa...@gentoo.org libgdiplus-2.10.9-r1.ebuild:
+  amd64 stable, bug #504796
 
 *libgdiplus-2.10.9-r2 (05 Jul 2014)
 






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

2014-07-05 Thread Mikle Kolyada (zlogene)
zlogene 14/07/05 11:01:26

  Modified: herds.xml
  Log:
  Add myself to s390 herd

Revision  ChangesPath
1.1109   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.1109view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1109content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?r1=1.1108r2=1.1109

Index: herds.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v
retrieving revision 1.1108
retrieving revision 1.1109
diff -u -r1.1108 -r1.1109
--- herds.xml   13 Jun 2014 17:24:41 -  1.1108
+++ herds.xml   5 Jul 2014 11:01:25 -   1.1109
@@ -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.1108 
2014/06/13 17:24:41 rhill Exp $
+   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1109 
2014/07/05 11:01:25 zlogene Exp $
 
 --
 herds
@@ -1783,6 +1783,9 @@
 emaila...@gentoo.org/email
 nameAgostino Sarubbo/name
   /maintainer
+  maintainer
+emailzlog...@gentoo.org/email
+  /maintainer
 /herd
 herd
   namesh/name






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

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:11:10

  Modified: ChangeLog package.mask
  Log:
  Add 5.20 version of perl-core/Archive-Tar to perl-5.20 mask

Revision  ChangesPath
1.9136   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9135
retrieving revision 1.9136
diff -u -r1.9135 -r1.9136
--- ChangeLog   4 Jul 2014 23:28:09 -   1.9135
+++ ChangeLog   5 Jul 2014 11:11:09 -   1.9136
@@ -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.9135 2014/07/04 
23:28:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9136 2014/07/05 
11:11:09 dilfridge 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!
 
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
+  Add 5.20 version of perl-core/Archive-Tar to perl-5.20 mask
+
   04 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
   Add 5.20 version of perl-core/B-Debug to perl-5.20 mask
 



1.15832  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15831
retrieving revision 1.15832
diff -u -r1.15831 -r1.15832
--- package.mask4 Jul 2014 23:28:09 -   1.15831
+++ package.mask5 Jul 2014 11:11:09 -   1.15832
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15831 2014/07/04 
23:28:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15832 2014/07/05 
11:11:09 dilfridge 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
@@ -167,6 +167,7 @@
 # Masked for testing, will defenitely cause major breakage
 # Single modules with 5.20 versions added here too -dilfridge
 =dev-lang/perl-5.20*
+=virtual/perl-Archive-Tar-1.960.0
 =virtual/perl-B-Debug-1.190.0
 =perl-core/B-Debug-1.190.0
 






[gentoo-commits] gentoo-x86 commit in virtual/fam: fam-0-r1.ebuild ChangeLog

2014-07-05 Thread Pacho Ramos (pacho)
pacho   14/07/05 11:14:50

  Modified: fam-0-r1.ebuild ChangeLog
  Log:
  stable, bug #516118
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.3  virtual/fam/fam-0-r1.ebuild

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

Index: fam-0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/virtual/fam/fam-0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fam-0-r1.ebuild 18 Jun 2014 20:54:32 -  1.2
+++ fam-0-r1.ebuild 5 Jul 2014 11:14:50 -   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/virtual/fam/fam-0-r1.ebuild,v 1.2 
2014/06/18 20:54:32 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/fam/fam-0-r1.ebuild,v 1.3 
2014/07/05 11:14:50 pacho Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
 RDEPEND=|| ( =app-admin/gamin-0.1.10-r1[${MULTILIB_USEDEP}] 
=app-admin/fam-2.7.0-r6[${MULTILIB_USEDEP}] )



1.5  virtual/fam/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/fam/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   18 Jun 2014 20:54:32 -  1.4
+++ ChangeLog   5 Jul 2014 11:14:50 -   1.5
@@ -1,6 +1,9 @@
 # ChangeLog for virtual/fam
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/fam/ChangeLog,v 1.4 2014/06/18 
20:54:32 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/fam/ChangeLog,v 1.5 2014/07/05 
11:14:50 pacho Exp $
+
+  05 Jul 2014; Pacho Ramos pa...@gentoo.org fam-0-r1.ebuild:
+  stable, bug #516118
 
   18 Jun 2014; Michał Górny mgo...@gentoo.org fam-0-r1.ebuild:
   Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug






[gentoo-commits] gentoo-x86 commit in virtual/perl-Archive-Tar: perl-Archive-Tar-1.960.0.ebuild ChangeLog perl-Archive-Tar-1.900.0.ebuild perl-Archive-Tar-1.880.0.ebuild perl-Archive-Tar-1.860.0.ebuil

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:16:23

  Modified: ChangeLog perl-Archive-Tar-1.900.0.ebuild
  Added:perl-Archive-Tar-1.960.0.ebuild
  Removed:  perl-Archive-Tar-1.880.0.ebuild
perl-Archive-Tar-1.860.0.ebuild
perl-Archive-Tar-1.840.0.ebuild
  Log:
  Add perl-5.20 version and remove old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.70 virtual/perl-Archive-Tar/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Archive-Tar/ChangeLog?rev=1.70view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Archive-Tar/ChangeLog?rev=1.70content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Archive-Tar/ChangeLog?r1=1.69r2=1.70

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-Archive-Tar/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog   4 Jul 2014 23:06:30 -   1.69
+++ ChangeLog   5 Jul 2014 11:16:23 -   1.70
@@ -1,6 +1,14 @@
 # ChangeLog for virtual/perl-Archive-Tar
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Archive-Tar/ChangeLog,v 1.69 
2014/07/04 23:06:30 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Archive-Tar/ChangeLog,v 1.70 
2014/07/05 11:16:23 dilfridge Exp $
+
+*perl-Archive-Tar-1.960.0 (05 Jul 2014)
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  -perl-Archive-Tar-1.840.0.ebuild, -perl-Archive-Tar-1.860.0.ebuild,
+  -perl-Archive-Tar-1.880.0.ebuild, perl-Archive-Tar-1.900.0.ebuild,
+  +perl-Archive-Tar-1.960.0.ebuild:
+  Add perl-5.20 version and remove old
 
   04 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
   -perl-Archive-Tar-1.54.ebuild, -perl-Archive-Tar-1.72.ebuild,



1.16 virtual/perl-Archive-Tar/perl-Archive-Tar-1.900.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Archive-Tar/perl-Archive-Tar-1.900.0.ebuild?rev=1.16view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Archive-Tar/perl-Archive-Tar-1.900.0.ebuild?rev=1.16content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Archive-Tar/perl-Archive-Tar-1.900.0.ebuild?r1=1.15r2=1.16

Index: perl-Archive-Tar-1.900.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-Archive-Tar/perl-Archive-Tar-1.900.0.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- perl-Archive-Tar-1.900.0.ebuild 20 Jan 2014 20:44:27 -  1.15
+++ perl-Archive-Tar-1.900.0.ebuild 5 Jul 2014 11:16:23 -   1.16
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-Archive-Tar/perl-Archive-Tar-1.900.0.ebuild,v
 1.15 2014/01/20 20:44:27 vapier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-Archive-Tar/perl-Archive-Tar-1.900.0.ebuild,v
 1.16 2014/07/05 11:16:23 dilfridge Exp $
 
 DESCRIPTION=Virtual for ${PN#perl-}
 HOMEPAGE=
@@ -11,4 +11,4 @@
 KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix 
~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
-RDEPEND=~perl-core/${PN#perl-}-${PV}
+RDEPEND=|| ( =dev-lang/perl-5.18* ~perl-core/${PN#perl-}-${PV} )



1.1  virtual/perl-Archive-Tar/perl-Archive-Tar-1.960.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Archive-Tar/perl-Archive-Tar-1.960.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Archive-Tar/perl-Archive-Tar-1.960.0.ebuild?rev=1.1content-type=text/plain

Index: perl-Archive-Tar-1.960.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-Archive-Tar/perl-Archive-Tar-1.960.0.ebuild,v
 1.1 2014/07/05 11:16:23 dilfridge Exp $

EAPI=5

DESCRIPTION=Virtual for ${PN#perl-}
HOMEPAGE=
SRC_URI=

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

RDEPEND=|| ( =dev-lang/perl-5.20* 

[gentoo-commits] gentoo-x86 commit in perl-core/Archive-Tar: ChangeLog Archive-Tar-1.880.0.ebuild Archive-Tar-1.860.0.ebuild Archive-Tar-1.840.0.ebuild

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:17:08

  Modified: ChangeLog
  Removed:  Archive-Tar-1.880.0.ebuild
Archive-Tar-1.860.0.ebuild
Archive-Tar-1.840.0.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.65 perl-core/Archive-Tar/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/Archive-Tar/ChangeLog?rev=1.65view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/Archive-Tar/ChangeLog?rev=1.65content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/Archive-Tar/ChangeLog?r1=1.64r2=1.65

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/perl-core/Archive-Tar/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog   4 Jul 2014 23:07:15 -   1.64
+++ ChangeLog   5 Jul 2014 11:17:08 -   1.65
@@ -1,6 +1,11 @@
 # ChangeLog for perl-core/Archive-Tar
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/perl-core/Archive-Tar/ChangeLog,v 1.64 
2014/07/04 23:07:15 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/perl-core/Archive-Tar/ChangeLog,v 1.65 
2014/07/05 11:17:08 dilfridge Exp $
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  -Archive-Tar-1.840.0.ebuild, -Archive-Tar-1.860.0.ebuild,
+  -Archive-Tar-1.880.0.ebuild:
+  Remove old
 
   04 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
   -Archive-Tar-1.54.ebuild, -Archive-Tar-1.72.ebuild,






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

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:20:21

  Modified: ChangeLog package.mask
  Log:
  Add 5.20 version of Attribute::Handlers to perl-5.20 mask

Revision  ChangesPath
1.9137   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9136
retrieving revision 1.9137
diff -u -r1.9136 -r1.9137
--- ChangeLog   5 Jul 2014 11:11:09 -   1.9136
+++ ChangeLog   5 Jul 2014 11:20:20 -   1.9137
@@ -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.9136 2014/07/05 
11:11:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9137 2014/07/05 
11:20:20 dilfridge 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!
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
+  Add 5.20 version of Attribute::Handlers to perl-5.20 mask
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
   Add 5.20 version of perl-core/Archive-Tar to perl-5.20 mask
 
   04 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:



1.15833  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15832
retrieving revision 1.15833
diff -u -r1.15832 -r1.15833
--- package.mask5 Jul 2014 11:11:09 -   1.15832
+++ package.mask5 Jul 2014 11:20:20 -   1.15833
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15832 2014/07/05 
11:11:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15833 2014/07/05 
11:20:20 dilfridge 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
@@ -168,6 +168,7 @@
 # Single modules with 5.20 versions added here too -dilfridge
 =dev-lang/perl-5.20*
 =virtual/perl-Archive-Tar-1.960.0
+=virtual/perl-Attribute-Handlers-0.960.0
 =virtual/perl-B-Debug-1.190.0
 =perl-core/B-Debug-1.190.0
 






[gentoo-commits] gentoo-x86 commit in virtual/perl-Attribute-Handlers: ChangeLog perl-Attribute-Handlers-0.960.0.ebuild

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:21:54

  Modified: ChangeLog
  Added:perl-Attribute-Handlers-0.960.0.ebuild
  Log:
  Add perl-5.20 version
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.48 virtual/perl-Attribute-Handlers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Attribute-Handlers/ChangeLog?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Attribute-Handlers/ChangeLog?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Attribute-Handlers/ChangeLog?r1=1.47r2=1.48

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-Attribute-Handlers/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   4 Jul 2014 23:11:09 -   1.47
+++ ChangeLog   5 Jul 2014 11:21:54 -   1.48
@@ -1,6 +1,12 @@
 # ChangeLog for virtual/perl-Attribute-Handlers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Attribute-Handlers/ChangeLog,v 
1.47 2014/07/04 23:11:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Attribute-Handlers/ChangeLog,v 
1.48 2014/07/05 11:21:54 dilfridge Exp $
+
+*perl-Attribute-Handlers-0.960.0 (05 Jul 2014)
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  +perl-Attribute-Handlers-0.960.0.ebuild:
+  Add perl-5.20 version
 
   04 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
   -perl-Attribute-Handlers-0.88.ebuild,



1.1  
virtual/perl-Attribute-Handlers/perl-Attribute-Handlers-0.960.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Attribute-Handlers/perl-Attribute-Handlers-0.960.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Attribute-Handlers/perl-Attribute-Handlers-0.960.0.ebuild?rev=1.1content-type=text/plain

Index: perl-Attribute-Handlers-0.960.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-Attribute-Handlers/perl-Attribute-Handlers-0.960.0.ebuild,v
 1.1 2014/07/05 11:21:54 dilfridge Exp $

EAPI=5

DESCRIPTION=Virtual for ${PN#perl-}
HOMEPAGE=
SRC_URI=

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

RDEPEND=|| ( =dev-lang/perl-5.20* ~perl-core/${PN#perl-}-${PV} )






[gentoo-commits] gentoo-x86 commit in www-client/seamonkey: seamonkey-2.26.1.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:23:47

  Modified: seamonkey-2.26.1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #512896
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  www-client/seamonkey/seamonkey-2.26.1.ebuild

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

Index: seamonkey-2.26.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-2.26.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- seamonkey-2.26.1.ebuild 28 Jun 2014 09:58:22 -  1.3
+++ seamonkey-2.26.1.ebuild 5 Jul 2014 11:23:47 -   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/www-client/seamonkey/seamonkey-2.26.1.ebuild,v 1.3 
2014/06/28 09:58:22 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-2.26.1.ebuild,v 1.4 
2014/07/05 11:23:47 ago Exp $
 
 EAPI=5
 WANT_AUTOCONF=2.1
@@ -42,7 +42,7 @@
 else
# This is where arch teams should change the KEYWORDS.
 
-   KEYWORDS=amd64 ~arm ~ppc ~ppc64 ~x86
+   KEYWORDS=amd64 ~arm ~ppc ~ppc64 x86
 fi
 
 SLOT=0



1.493www-client/seamonkey/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.493view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.493content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.492r2=1.493

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.492
retrieving revision 1.493
diff -u -r1.492 -r1.493
--- ChangeLog   28 Jun 2014 09:58:22 -  1.492
+++ ChangeLog   5 Jul 2014 11:23:47 -   1.493
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/seamonkey
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.492 
2014/06/28 09:58:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.493 
2014/07/05 11:23:47 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org seamonkey-2.26.1.ebuild:
+  Stable for x86, wrt bug #512896
 
   28 Jun 2014; Agostino Sarubbo a...@gentoo.org seamonkey-2.26.1.ebuild:
   Stable for amd64, wrt bug #512896






[gentoo-commits] gentoo-x86 commit in www-client/seamonkey-bin: seamonkey-bin-2.26.1.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:23:51

  Modified: seamonkey-bin-2.26.1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #512896
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.3  www-client/seamonkey-bin/seamonkey-bin-2.26.1.ebuild

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

Index: seamonkey-bin-2.26.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.26.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- seamonkey-bin-2.26.1.ebuild 28 Jun 2014 09:58:26 -  1.2
+++ seamonkey-bin-2.26.1.ebuild 5 Jul 2014 11:23:50 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.26.1.ebuild,v 
1.2 2014/06/28 09:58:26 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.26.1.ebuild,v 
1.3 2014/07/05 11:23:50 ago Exp $
 
 EAPI=4
 
@@ -29,7 +29,7 @@
 RESTRICT=strip mirror binchecks
 QA_EXECSTACK=opt/seamonkey/*
 
-KEYWORDS=-* amd64 ~x86
+KEYWORDS=-* amd64 x86
 SLOT=0
 LICENSE=MPL-2.0 GPL-2 LGPL-2.1
 IUSE=startup-notification



1.206www-client/seamonkey-bin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey-bin/ChangeLog?rev=1.206view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey-bin/ChangeLog?rev=1.206content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey-bin/ChangeLog?r1=1.205r2=1.206

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v
retrieving revision 1.205
retrieving revision 1.206
diff -u -r1.205 -r1.206
--- ChangeLog   28 Jun 2014 09:58:26 -  1.205
+++ ChangeLog   5 Jul 2014 11:23:50 -   1.206
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/seamonkey-bin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v 1.205 
2014/06/28 09:58:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v 1.206 
2014/07/05 11:23:50 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org seamonkey-bin-2.26.1.ebuild:
+  Stable for x86, wrt bug #512896
 
   28 Jun 2014; Agostino Sarubbo a...@gentoo.org seamonkey-bin-2.26.1.ebuild:
   Stable for amd64, wrt bug #512896






[gentoo-commits] gentoo-x86 commit in dev-lang/php: php-5.4.30.ebuild php-5.5.14.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:24:14

  Modified: php-5.4.30.ebuild php-5.5.14.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #512492
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  dev-lang/php/php-5.4.30.ebuild

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

Index: php-5.4.30.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- php-5.4.30.ebuild   29 Jun 2014 18:55:07 -  1.4
+++ php-5.4.30.ebuild   5 Jul 2014 11:24:14 -   1.5
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.4 
2014/06/29 18:55:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.5 
2014/07/05 11:24:14 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
+KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.5  dev-lang/php/php-5.5.14.ebuild

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

Index: php-5.5.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- php-5.5.14.ebuild   29 Jun 2014 18:55:39 -  1.4
+++ php-5.5.14.ebuild   5 Jul 2014 11:24:14 -   1.5
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.4 
2014/06/29 18:55:39 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.5 
2014/07/05 11:24:14 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
+KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.852dev-lang/php/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v
retrieving revision 1.851
retrieving revision 1.852
diff -u -r1.851 -r1.852
--- ChangeLog   29 Jun 2014 18:55:39 -  1.851
+++ ChangeLog   5 Jul 2014 11:24:14 -   1.852
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/php
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.851 2014/06/29 
18:55:39 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.852 2014/07/05 
11:24:14 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org php-5.4.30.ebuild,
+  php-5.5.14.ebuild:
+  Stable for x86, wrt bug #512492
 
   29 Jun 2014; Markus Meier mae...@gentoo.org php-5.5.14.ebuild:
   arm stable, bug #512492






[gentoo-commits] gentoo-x86 commit in app-crypt/gnupg: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:24:27

  Modified: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #514718
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  app-crypt/gnupg/gnupg-1.4.18.ebuild

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

Index: gnupg-1.4.18.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnupg-1.4.18.ebuild 1 Jul 2014 18:25:30 -   1.3
+++ gnupg-1.4.18.ebuild 5 Jul 2014 11:24:27 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.3 
2014/07/01 18:25:30 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.4 
2014/07/05 11:24:27 ago Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 IUSE=bzip2 curl ldap mta nls readline selinux smartcard static usb zlib 
linguas_ru
 
 COMMON_DEPEND=



1.4  app-crypt/gnupg/gnupg-2.0.25.ebuild

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

Index: gnupg-2.0.25.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnupg-2.0.25.ebuild 1 Jul 2014 13:42:24 -   1.3
+++ gnupg-2.0.25.ebuild 5 Jul 2014 11:24:27 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.3 
2014/07/01 13:42:24 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.4 
2014/07/05 11:24:27 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=adns bzip2 doc ldap nls mta readline static selinux smartcard usb
 
 COMMON_DEPEND_LIBS=



1.526app-crypt/gnupg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.526view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.526content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?r1=1.525r2=1.526

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v
retrieving revision 1.525
retrieving revision 1.526
diff -u -r1.525 -r1.526
--- ChangeLog   1 Jul 2014 18:25:30 -   1.525
+++ ChangeLog   5 Jul 2014 11:24:27 -   1.526
@@ -1,6 +1,10 @@
 # ChangeLog for app-crypt/gnupg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.525 
2014/07/01 18:25:30 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.526 
2014/07/05 11:24:27 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
+  gnupg-2.0.25.ebuild:
+  Stable for x86, wrt bug #514718
 
   01 Jul 2014; Mikle Kolyada zlog...@gentoo.org gnupg-1.4.18.ebuild:
   amd64 stable wrt bug #514718






[gentoo-commits] gentoo-x86 commit in dev-python/bottle: bottle-0.11.7.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:24:18

  Modified: bottle-0.11.7.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #509350
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.3  dev-python/bottle/bottle-0.11.7.ebuild

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

Index: bottle-0.11.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bottle-0.11.7.ebuild4 Jul 2014 19:32:32 -   1.2
+++ bottle-0.11.7.ebuild5 Jul 2014 11:24:18 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v 
1.2 2014/07/04 19:32:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v 
1.3 2014/07/05 11:24:18 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86
+KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86
 IUSE=
 
 DEPEND=



1.29 dev-python/bottle/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   4 Jul 2014 19:32:32 -   1.28
+++ ChangeLog   5 Jul 2014 11:24:18 -   1.29
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/bottle
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.28 
2014/07/04 19:32:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.29 
2014/07/05 11:24:18 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org bottle-0.11.7.ebuild:
+  Stable for x86, wrt bug #509350
 
   04 Jul 2014; Agostino Sarubbo a...@gentoo.org bottle-0.11.7.ebuild:
   Stable for amd64, wrt bug #509350






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

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:25:40

  Modified: ChangeLog package.mask
  Log:
  Add 5.20 version of AutoLoader to perl-5.20 mask

Revision  ChangesPath
1.9138   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9137
retrieving revision 1.9138
diff -u -r1.9137 -r1.9138
--- ChangeLog   5 Jul 2014 11:20:20 -   1.9137
+++ ChangeLog   5 Jul 2014 11:25:39 -   1.9138
@@ -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.9137 2014/07/05 
11:20:20 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9138 2014/07/05 
11:25:39 dilfridge 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!
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
+  Add 5.20 version of AutoLoader to perl-5.20 mask
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
   Add 5.20 version of Attribute::Handlers to perl-5.20 mask
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:



1.15834  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15833
retrieving revision 1.15834
diff -u -r1.15833 -r1.15834
--- package.mask5 Jul 2014 11:20:20 -   1.15833
+++ package.mask5 Jul 2014 11:25:39 -   1.15834
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15833 2014/07/05 
11:20:20 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15834 2014/07/05 
11:25:39 dilfridge Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -169,6 +169,7 @@
 =dev-lang/perl-5.20*
 =virtual/perl-Archive-Tar-1.960.0
 =virtual/perl-Attribute-Handlers-0.960.0
+=virtual/perl-AutoLoader-5.740.0
 =virtual/perl-B-Debug-1.190.0
 =perl-core/B-Debug-1.190.0
 






[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: dbus-1.8.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:26:10

  Modified: dbus-1.8.6.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #516080
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=alpha, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  sys-apps/dbus/dbus-1.8.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?r1=1.4r2=1.5

Index: dbus-1.8.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dbus-1.8.6.ebuild   5 Jul 2014 10:51:32 -   1.4
+++ dbus-1.8.6.ebuild   5 Jul 2014 11:26:10 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.4 
2014/07/05 10:51:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.5 
2014/07/05 11:26:10 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -12,7 +12,7 @@
 
 LICENSE=|| ( AFL-2.1 GPL-2 )
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=debug doc selinux static-libs systemd test X
 
 RDEPEND==dev-libs/expat-2



1.429sys-apps/dbus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v
retrieving revision 1.428
retrieving revision 1.429
diff -u -r1.428 -r1.429
--- ChangeLog   5 Jul 2014 10:51:32 -   1.428
+++ ChangeLog   5 Jul 2014 11:26:10 -   1.429
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/dbus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.428 2014/07/05 
10:51:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.429 2014/07/05 
11:26:10 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
+  Stable for alpha, wrt bug #516080
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
   Stable for x86, wrt bug #516080






[gentoo-commits] gentoo-x86 commit in dev-lang/php: php-5.5.14.ebuild php-5.4.30.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:26:18

  Modified: php-5.5.14.ebuild php-5.4.30.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #512492
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=alpha, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  dev-lang/php/php-5.5.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?r1=1.5r2=1.6

Index: php-5.5.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- php-5.5.14.ebuild   5 Jul 2014 11:24:14 -   1.5
+++ php-5.5.14.ebuild   5 Jul 2014 11:26:18 -   1.6
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.5 
2014/07/05 11:24:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.6 
2014/07/05 11:26:18 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.6  dev-lang/php/php-5.4.30.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?r1=1.5r2=1.6

Index: php-5.4.30.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- php-5.4.30.ebuild   5 Jul 2014 11:24:14 -   1.5
+++ php-5.4.30.ebuild   5 Jul 2014 11:26:18 -   1.6
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.5 
2014/07/05 11:24:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.6 
2014/07/05 11:26:18 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.853dev-lang/php/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v
retrieving revision 1.852
retrieving revision 1.853
diff -u -r1.852 -r1.853
--- ChangeLog   5 Jul 2014 11:24:14 -   1.852
+++ ChangeLog   5 Jul 2014 11:26:18 -   1.853
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/php
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.852 2014/07/05 
11:24:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.853 2014/07/05 
11:26:18 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org php-5.4.30.ebuild,
+  php-5.5.14.ebuild:
+  Stable for alpha, wrt bug #512492
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org php-5.4.30.ebuild,
   php-5.5.14.ebuild:






[gentoo-commits] gentoo-x86 commit in app-crypt/gnupg: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:26:24

  Modified: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #514718
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=alpha, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  app-crypt/gnupg/gnupg-1.4.18.ebuild

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

Index: gnupg-1.4.18.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gnupg-1.4.18.ebuild 5 Jul 2014 11:24:27 -   1.4
+++ gnupg-1.4.18.ebuild 5 Jul 2014 11:26:24 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.4 
2014/07/05 11:24:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.5 
2014/07/05 11:26:24 ago Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 IUSE=bzip2 curl ldap mta nls readline selinux smartcard static usb zlib 
linguas_ru
 
 COMMON_DEPEND=



1.5  app-crypt/gnupg/gnupg-2.0.25.ebuild

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

Index: gnupg-2.0.25.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gnupg-2.0.25.ebuild 5 Jul 2014 11:24:27 -   1.4
+++ gnupg-2.0.25.ebuild 5 Jul 2014 11:26:24 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.4 
2014/07/05 11:24:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.5 
2014/07/05 11:26:24 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=adns bzip2 doc ldap nls mta readline static selinux smartcard usb
 
 COMMON_DEPEND_LIBS=



1.527app-crypt/gnupg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.527view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.527content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?r1=1.526r2=1.527

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v
retrieving revision 1.526
retrieving revision 1.527
diff -u -r1.526 -r1.527
--- ChangeLog   5 Jul 2014 11:24:27 -   1.526
+++ ChangeLog   5 Jul 2014 11:26:24 -   1.527
@@ -1,6 +1,10 @@
 # ChangeLog for app-crypt/gnupg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.526 
2014/07/05 11:24:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.527 
2014/07/05 11:26:24 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
+  gnupg-2.0.25.ebuild:
+  Stable for alpha, wrt bug #514718
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
   gnupg-2.0.25.ebuild:






[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: dbus-1.8.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:26:51

  Modified: dbus-1.8.6.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #516080
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  sys-apps/dbus/dbus-1.8.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?r1=1.5r2=1.6

Index: dbus-1.8.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dbus-1.8.6.ebuild   5 Jul 2014 11:26:10 -   1.5
+++ dbus-1.8.6.ebuild   5 Jul 2014 11:26:51 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.5 
2014/07/05 11:26:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.6 
2014/07/05 11:26:51 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -12,7 +12,7 @@
 
 LICENSE=|| ( AFL-2.1 GPL-2 )
 SLOT=0
-KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=debug doc selinux static-libs systemd test X
 
 RDEPEND==dev-libs/expat-2



1.430sys-apps/dbus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v
retrieving revision 1.429
retrieving revision 1.430
diff -u -r1.429 -r1.430
--- ChangeLog   5 Jul 2014 11:26:10 -   1.429
+++ ChangeLog   5 Jul 2014 11:26:51 -   1.430
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/dbus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.429 2014/07/05 
11:26:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.430 2014/07/05 
11:26:51 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
+  Stable for ppc, wrt bug #516080
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
   Stable for alpha, wrt bug #516080






[gentoo-commits] gentoo-x86 commit in dev-lang/php: php-5.4.30.ebuild php-5.5.14.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:27:02

  Modified: php-5.4.30.ebuild php-5.5.14.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #512492
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  dev-lang/php/php-5.4.30.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?r1=1.6r2=1.7

Index: php-5.4.30.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- php-5.4.30.ebuild   5 Jul 2014 11:26:18 -   1.6
+++ php-5.4.30.ebuild   5 Jul 2014 11:27:01 -   1.7
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.6 
2014/07/05 11:26:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.7 
2014/07/05 11:27:01 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.7  dev-lang/php/php-5.5.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?r1=1.6r2=1.7

Index: php-5.5.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- php-5.5.14.ebuild   5 Jul 2014 11:26:18 -   1.6
+++ php-5.5.14.ebuild   5 Jul 2014 11:27:01 -   1.7
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.6 
2014/07/05 11:26:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.7 
2014/07/05 11:27:01 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.854dev-lang/php/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v
retrieving revision 1.853
retrieving revision 1.854
diff -u -r1.853 -r1.854
--- ChangeLog   5 Jul 2014 11:26:18 -   1.853
+++ ChangeLog   5 Jul 2014 11:27:01 -   1.854
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/php
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.853 2014/07/05 
11:26:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.854 2014/07/05 
11:27:01 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org php-5.4.30.ebuild,
+  php-5.5.14.ebuild:
+  Stable for ppc, wrt bug #512492
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org php-5.4.30.ebuild,
   php-5.5.14.ebuild:






[gentoo-commits] gentoo-x86 commit in virtual/perl-AutoLoader: perl-AutoLoader-5.730.0.ebuild perl-AutoLoader-5.740.0.ebuild ChangeLog

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:27:05

  Modified: perl-AutoLoader-5.730.0.ebuild ChangeLog
  Added:perl-AutoLoader-5.740.0.ebuild
  Log:
  Add perl-5.20 version
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.4  virtual/perl-AutoLoader/perl-AutoLoader-5.730.0.ebuild

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

Index: perl-AutoLoader-5.730.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-AutoLoader/perl-AutoLoader-5.730.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- perl-AutoLoader-5.730.0.ebuild  18 Feb 2013 19:23:14 -  1.3
+++ perl-AutoLoader-5.730.0.ebuild  5 Jul 2014 11:27:05 -   1.4
@@ -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/virtual/perl-AutoLoader/perl-AutoLoader-5.730.0.ebuild,v
 1.3 2013/02/18 19:23:14 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-AutoLoader/perl-AutoLoader-5.730.0.ebuild,v
 1.4 2014/07/05 11:27:05 dilfridge Exp $
 
 DESCRIPTION=Virtual for ${PN#perl-}
 HOMEPAGE=
@@ -11,4 +11,4 @@
 KEYWORDS=amd64 ~ppc x86 ~x86-solaris
 IUSE=
 
-RDEPEND=~perl-core/${PN#perl-}-${PV}
+RDEPEND=|| ( =dev-lang/perl-5.18* ~perl-core/${PN#perl-}-${PV} )



1.22 virtual/perl-AutoLoader/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-AutoLoader/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-AutoLoader/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-AutoLoader/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-AutoLoader/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   28 May 2014 15:49:59 -  1.21
+++ ChangeLog   5 Jul 2014 11:27:05 -   1.22
@@ -1,6 +1,12 @@
 # ChangeLog for virtual/perl-AutoLoader
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-AutoLoader/ChangeLog,v 1.21 
2014/05/28 15:49:59 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-AutoLoader/ChangeLog,v 1.22 
2014/07/05 11:27:05 dilfridge Exp $
+
+*perl-AutoLoader-5.740.0 (05 Jul 2014)
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  perl-AutoLoader-5.730.0.ebuild, +perl-AutoLoader-5.740.0.ebuild:
+  Add perl-5.20 version
 
   28 May 2014; Mikle Kolyada zlog...@gentoo.org
   -perl-AutoLoader-5.710.0-r1.ebuild:



1.1  virtual/perl-AutoLoader/perl-AutoLoader-5.740.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-AutoLoader/perl-AutoLoader-5.740.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-AutoLoader/perl-AutoLoader-5.740.0.ebuild?rev=1.1content-type=text/plain

Index: perl-AutoLoader-5.740.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-AutoLoader/perl-AutoLoader-5.740.0.ebuild,v
 1.1 2014/07/05 11:27:05 dilfridge Exp $

EAPI=5

DESCRIPTION=Virtual for ${PN#perl-}
HOMEPAGE=
SRC_URI=

LICENSE=
SLOT=0
KEYWORDS=~amd64 ~ppc ~x86 ~x86-solaris
IUSE=

RDEPEND=|| ( =dev-lang/perl-5.20* ~perl-core/${PN#perl-}-${PV} )






[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: dbus-1.8.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:27:21

  Modified: dbus-1.8.6.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #516080
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  sys-apps/dbus/dbus-1.8.6.ebuild

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

Index: dbus-1.8.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- dbus-1.8.6.ebuild   5 Jul 2014 11:26:51 -   1.6
+++ dbus-1.8.6.ebuild   5 Jul 2014 11:27:20 -   1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.6 
2014/07/05 11:26:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.7 
2014/07/05 11:27:20 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -12,7 +12,7 @@
 
 LICENSE=|| ( AFL-2.1 GPL-2 )
 SLOT=0
-KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=debug doc selinux static-libs systemd test X
 
 RDEPEND==dev-libs/expat-2



1.431sys-apps/dbus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v
retrieving revision 1.430
retrieving revision 1.431
diff -u -r1.430 -r1.431
--- ChangeLog   5 Jul 2014 11:26:51 -   1.430
+++ ChangeLog   5 Jul 2014 11:27:20 -   1.431
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/dbus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.430 2014/07/05 
11:26:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.431 2014/07/05 
11:27:20 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
+  Stable for ppc64, wrt bug #516080
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
   Stable for ppc, wrt bug #516080






[gentoo-commits] gentoo-x86 commit in app-crypt/gnupg: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:27:08

  Modified: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #514718
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  app-crypt/gnupg/gnupg-1.4.18.ebuild

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

Index: gnupg-1.4.18.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gnupg-1.4.18.ebuild 5 Jul 2014 11:26:24 -   1.5
+++ gnupg-1.4.18.ebuild 5 Jul 2014 11:27:08 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.5 
2014/07/05 11:26:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.6 
2014/07/05 11:27:08 ago Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 IUSE=bzip2 curl ldap mta nls readline selinux smartcard static usb zlib 
linguas_ru
 
 COMMON_DEPEND=



1.6  app-crypt/gnupg/gnupg-2.0.25.ebuild

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

Index: gnupg-2.0.25.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gnupg-2.0.25.ebuild 5 Jul 2014 11:26:24 -   1.5
+++ gnupg-2.0.25.ebuild 5 Jul 2014 11:27:08 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.5 
2014/07/05 11:26:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.6 
2014/07/05 11:27:08 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=adns bzip2 doc ldap nls mta readline static selinux smartcard usb
 
 COMMON_DEPEND_LIBS=



1.528app-crypt/gnupg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.528view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.528content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?r1=1.527r2=1.528

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v
retrieving revision 1.527
retrieving revision 1.528
diff -u -r1.527 -r1.528
--- ChangeLog   5 Jul 2014 11:26:24 -   1.527
+++ ChangeLog   5 Jul 2014 11:27:08 -   1.528
@@ -1,6 +1,10 @@
 # ChangeLog for app-crypt/gnupg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.527 
2014/07/05 11:26:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.528 
2014/07/05 11:27:08 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
+  gnupg-2.0.25.ebuild:
+  Stable for ppc, wrt bug #514718
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
   gnupg-2.0.25.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-lang/php: php-5.4.30.ebuild php-5.5.14.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:27:53

  Modified: php-5.4.30.ebuild php-5.5.14.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #512492
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.9  dev-lang/php/php-5.4.30.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?r1=1.8r2=1.9

Index: php-5.4.30.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- php-5.4.30.ebuild   5 Jul 2014 11:27:29 -   1.8
+++ php-5.4.30.ebuild   5 Jul 2014 11:27:53 -   1.9
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.8 
2014/07/05 11:27:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.9 
2014/07/05 11:27:53 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.9  dev-lang/php/php-5.5.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?r1=1.8r2=1.9

Index: php-5.5.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- php-5.5.14.ebuild   5 Jul 2014 11:27:29 -   1.8
+++ php-5.5.14.ebuild   5 Jul 2014 11:27:53 -   1.9
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.8 
2014/07/05 11:27:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.9 
2014/07/05 11:27:53 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.856dev-lang/php/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v
retrieving revision 1.855
retrieving revision 1.856
diff -u -r1.855 -r1.856
--- ChangeLog   5 Jul 2014 11:27:29 -   1.855
+++ ChangeLog   5 Jul 2014 11:27:53 -   1.856
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/php
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.855 2014/07/05 
11:27:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.856 2014/07/05 
11:27:53 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org php-5.4.30.ebuild,
+  php-5.5.14.ebuild:
+  Stable for ia64, wrt bug #512492
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org php-5.4.30.ebuild,
   php-5.5.14.ebuild:






[gentoo-commits] gentoo-x86 commit in app-crypt/gnupg: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:27:34

  Modified: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #514718
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  app-crypt/gnupg/gnupg-1.4.18.ebuild

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

Index: gnupg-1.4.18.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gnupg-1.4.18.ebuild 5 Jul 2014 11:27:08 -   1.6
+++ gnupg-1.4.18.ebuild 5 Jul 2014 11:27:34 -   1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.6 
2014/07/05 11:27:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.7 
2014/07/05 11:27:34 ago Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 IUSE=bzip2 curl ldap mta nls readline selinux smartcard static usb zlib 
linguas_ru
 
 COMMON_DEPEND=



1.7  app-crypt/gnupg/gnupg-2.0.25.ebuild

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

Index: gnupg-2.0.25.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gnupg-2.0.25.ebuild 5 Jul 2014 11:27:08 -   1.6
+++ gnupg-2.0.25.ebuild 5 Jul 2014 11:27:34 -   1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.6 
2014/07/05 11:27:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.7 
2014/07/05 11:27:34 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=adns bzip2 doc ldap nls mta readline static selinux smartcard usb
 
 COMMON_DEPEND_LIBS=



1.529app-crypt/gnupg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.529view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.529content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?r1=1.528r2=1.529

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v
retrieving revision 1.528
retrieving revision 1.529
diff -u -r1.528 -r1.529
--- ChangeLog   5 Jul 2014 11:27:08 -   1.528
+++ ChangeLog   5 Jul 2014 11:27:34 -   1.529
@@ -1,6 +1,10 @@
 # ChangeLog for app-crypt/gnupg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.528 
2014/07/05 11:27:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.529 
2014/07/05 11:27:34 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
+  gnupg-2.0.25.ebuild:
+  Stable for ppc64, wrt bug #514718
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
   gnupg-2.0.25.ebuild:






[gentoo-commits] gentoo-x86 commit in app-crypt/gnupg: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:27:59

  Modified: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #514718
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.8  app-crypt/gnupg/gnupg-1.4.18.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild?r1=1.7r2=1.8

Index: gnupg-1.4.18.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gnupg-1.4.18.ebuild 5 Jul 2014 11:27:34 -   1.7
+++ gnupg-1.4.18.ebuild 5 Jul 2014 11:27:59 -   1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.7 
2014/07/05 11:27:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.8 
2014/07/05 11:27:59 ago Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 IUSE=bzip2 curl ldap mta nls readline selinux smartcard static usb zlib 
linguas_ru
 
 COMMON_DEPEND=



1.8  app-crypt/gnupg/gnupg-2.0.25.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild?r1=1.7r2=1.8

Index: gnupg-2.0.25.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gnupg-2.0.25.ebuild 5 Jul 2014 11:27:34 -   1.7
+++ gnupg-2.0.25.ebuild 5 Jul 2014 11:27:59 -   1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.7 
2014/07/05 11:27:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.8 
2014/07/05 11:27:59 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=adns bzip2 doc ldap nls mta readline static selinux smartcard usb
 
 COMMON_DEPEND_LIBS=



1.530app-crypt/gnupg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.530view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.530content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?r1=1.529r2=1.530

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v
retrieving revision 1.529
retrieving revision 1.530
diff -u -r1.529 -r1.530
--- ChangeLog   5 Jul 2014 11:27:34 -   1.529
+++ ChangeLog   5 Jul 2014 11:27:59 -   1.530
@@ -1,6 +1,10 @@
 # ChangeLog for app-crypt/gnupg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.529 
2014/07/05 11:27:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.530 
2014/07/05 11:27:59 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
+  gnupg-2.0.25.ebuild:
+  Stable for ia64, wrt bug #514718
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
   gnupg-2.0.25.ebuild:






[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: dbus-1.8.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:27:46

  Modified: dbus-1.8.6.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #516080
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.8  sys-apps/dbus/dbus-1.8.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?r1=1.7r2=1.8

Index: dbus-1.8.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dbus-1.8.6.ebuild   5 Jul 2014 11:27:20 -   1.7
+++ dbus-1.8.6.ebuild   5 Jul 2014 11:27:46 -   1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.7 
2014/07/05 11:27:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.8 
2014/07/05 11:27:46 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -12,7 +12,7 @@
 
 LICENSE=|| ( AFL-2.1 GPL-2 )
 SLOT=0
-KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=debug doc selinux static-libs systemd test X
 
 RDEPEND==dev-libs/expat-2



1.432sys-apps/dbus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v
retrieving revision 1.431
retrieving revision 1.432
diff -u -r1.431 -r1.432
--- ChangeLog   5 Jul 2014 11:27:20 -   1.431
+++ ChangeLog   5 Jul 2014 11:27:46 -   1.432
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/dbus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.431 2014/07/05 
11:27:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.432 2014/07/05 
11:27:46 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
+  Stable for ia64, wrt bug #516080
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
   Stable for ppc64, wrt bug #516080






[gentoo-commits] gentoo-x86 commit in app-crypt/gnupg: gnupg-2.0.25.ebuild gnupg-1.4.18.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:28:50

  Modified: gnupg-2.0.25.ebuild gnupg-1.4.18.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #514718
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=arm, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.9  app-crypt/gnupg/gnupg-2.0.25.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild?r1=1.8r2=1.9

Index: gnupg-2.0.25.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- gnupg-2.0.25.ebuild 5 Jul 2014 11:27:59 -   1.8
+++ gnupg-2.0.25.ebuild 5 Jul 2014 11:28:50 -   1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.8 
2014/07/05 11:27:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.9 
2014/07/05 11:28:50 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=adns bzip2 doc ldap nls mta readline static selinux smartcard usb
 
 COMMON_DEPEND_LIBS=



1.9  app-crypt/gnupg/gnupg-1.4.18.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild?r1=1.8r2=1.9

Index: gnupg-1.4.18.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- gnupg-1.4.18.ebuild 5 Jul 2014 11:27:59 -   1.8
+++ gnupg-1.4.18.ebuild 5 Jul 2014 11:28:50 -   1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.8 
2014/07/05 11:27:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.9 
2014/07/05 11:28:50 ago Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 IUSE=bzip2 curl ldap mta nls readline selinux smartcard static usb zlib 
linguas_ru
 
 COMMON_DEPEND=



1.531app-crypt/gnupg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.531view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.531content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?r1=1.530r2=1.531

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v
retrieving revision 1.530
retrieving revision 1.531
diff -u -r1.530 -r1.531
--- ChangeLog   5 Jul 2014 11:27:59 -   1.530
+++ ChangeLog   5 Jul 2014 11:28:50 -   1.531
@@ -1,6 +1,10 @@
 # ChangeLog for app-crypt/gnupg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.530 
2014/07/05 11:27:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.531 
2014/07/05 11:28:50 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
+  gnupg-2.0.25.ebuild:
+  Stable for arm, wrt bug #514718
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
   gnupg-2.0.25.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-lang/php: php-5.4.30.ebuild php-5.5.14.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:29:09

  Modified: php-5.4.30.ebuild php-5.5.14.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #512492
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=sparc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.10 dev-lang/php/php-5.4.30.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.4.30.ebuild?r1=1.9r2=1.10

Index: php-5.4.30.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- php-5.4.30.ebuild   5 Jul 2014 11:27:53 -   1.9
+++ php-5.4.30.ebuild   5 Jul 2014 11:29:09 -   1.10
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.9 
2014/07/05 11:27:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.30.ebuild,v 1.10 
2014/07/05 11:29:09 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.10 dev-lang/php/php-5.5.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/php-5.5.14.ebuild?r1=1.9r2=1.10

Index: php-5.5.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- php-5.5.14.ebuild   5 Jul 2014 11:27:53 -   1.9
+++ php-5.5.14.ebuild   5 Jul 2014 11:29:09 -   1.10
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.9 
2014/07/05 11:27:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.14.ebuild,v 1.10 
2014/07/05 11:29:09 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos
 
 function php_get_uri ()
 {



1.857dev-lang/php/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v
retrieving revision 1.856
retrieving revision 1.857
diff -u -r1.856 -r1.857
--- ChangeLog   5 Jul 2014 11:27:53 -   1.856
+++ ChangeLog   5 Jul 2014 11:29:09 -   1.857
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/php
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.856 2014/07/05 
11:27:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.857 2014/07/05 
11:29:09 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org php-5.4.30.ebuild,
+  php-5.5.14.ebuild:
+  Stable for sparc, wrt bug #512492
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org php-5.4.30.ebuild,
   php-5.5.14.ebuild:






[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: dbus-1.8.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:28:43

  Modified: dbus-1.8.6.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #516080
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=arm, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.9  sys-apps/dbus/dbus-1.8.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild?r1=1.8r2=1.9

Index: dbus-1.8.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- dbus-1.8.6.ebuild   5 Jul 2014 11:27:46 -   1.8
+++ dbus-1.8.6.ebuild   5 Jul 2014 11:28:43 -   1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.8 
2014/07/05 11:27:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.9 
2014/07/05 11:28:43 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -12,7 +12,7 @@
 
 LICENSE=|| ( AFL-2.1 GPL-2 )
 SLOT=0
-KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=debug doc selinux static-libs systemd test X
 
 RDEPEND==dev-libs/expat-2



1.433sys-apps/dbus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v
retrieving revision 1.432
retrieving revision 1.433
diff -u -r1.432 -r1.433
--- ChangeLog   5 Jul 2014 11:27:46 -   1.432
+++ ChangeLog   5 Jul 2014 11:28:43 -   1.433
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/dbus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.432 2014/07/05 
11:27:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.433 2014/07/05 
11:28:43 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
+  Stable for arm, wrt bug #516080
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
   Stable for ia64, wrt bug #516080






[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: dbus-1.8.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:29:02

  Modified: dbus-1.8.6.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #516080
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=sparc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.10 sys-apps/dbus/dbus-1.8.6.ebuild

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

Index: dbus-1.8.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dbus-1.8.6.ebuild   5 Jul 2014 11:28:43 -   1.9
+++ dbus-1.8.6.ebuild   5 Jul 2014 11:29:02 -   1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.9 
2014/07/05 11:28:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.6.ebuild,v 1.10 
2014/07/05 11:29:02 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -12,7 +12,7 @@
 
 LICENSE=|| ( AFL-2.1 GPL-2 )
 SLOT=0
-KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=debug doc selinux static-libs systemd test X
 
 RDEPEND==dev-libs/expat-2



1.434sys-apps/dbus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v
retrieving revision 1.433
retrieving revision 1.434
diff -u -r1.433 -r1.434
--- ChangeLog   5 Jul 2014 11:28:43 -   1.433
+++ ChangeLog   5 Jul 2014 11:29:02 -   1.434
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/dbus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.433 2014/07/05 
11:28:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.434 2014/07/05 
11:29:02 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
+  Stable for sparc, wrt bug #516080
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org dbus-1.8.6.ebuild:
   Stable for arm, wrt bug #516080






[gentoo-commits] gentoo-x86 commit in app-crypt/gnupg: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:29:15

  Modified: gnupg-1.4.18.ebuild gnupg-2.0.25.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #514718
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=sparc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.10 app-crypt/gnupg/gnupg-1.4.18.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild?r1=1.9r2=1.10

Index: gnupg-1.4.18.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gnupg-1.4.18.ebuild 5 Jul 2014 11:28:50 -   1.9
+++ gnupg-1.4.18.ebuild 5 Jul 2014 11:29:15 -   1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.9 
2014/07/05 11:28:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.18.ebuild,v 1.10 
2014/07/05 11:29:15 ago Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 IUSE=bzip2 curl ldap mta nls readline selinux smartcard static usb zlib 
linguas_ru
 
 COMMON_DEPEND=



1.10 app-crypt/gnupg/gnupg-2.0.25.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild?r1=1.9r2=1.10

Index: gnupg-2.0.25.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gnupg-2.0.25.ebuild 5 Jul 2014 11:28:50 -   1.9
+++ gnupg-2.0.25.ebuild 5 Jul 2014 11:29:15 -   1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.9 
2014/07/05 11:28:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.25.ebuild,v 1.10 
2014/07/05 11:29:15 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=adns bzip2 doc ldap nls mta readline static selinux smartcard usb
 
 COMMON_DEPEND_LIBS=



1.532app-crypt/gnupg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.532view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.532content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?r1=1.531r2=1.532

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v
retrieving revision 1.531
retrieving revision 1.532
diff -u -r1.531 -r1.532
--- ChangeLog   5 Jul 2014 11:28:50 -   1.531
+++ ChangeLog   5 Jul 2014 11:29:15 -   1.532
@@ -1,6 +1,10 @@
 # ChangeLog for app-crypt/gnupg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.531 
2014/07/05 11:28:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.532 
2014/07/05 11:29:15 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
+  gnupg-2.0.25.ebuild:
+  Stable for sparc, wrt bug #514718
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org gnupg-1.4.18.ebuild,
   gnupg-2.0.25.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/nspr: nspr-4.10.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:31:46

  Modified: nspr-4.10.6.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #512896
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=alpha, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  dev-libs/nspr/nspr-4.10.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild?r1=1.5r2=1.6

Index: nspr-4.10.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nspr-4.10.6.ebuild  19 Jun 2014 18:04:04 -  1.5
+++ nspr-4.10.6.ebuild  5 Jul 2014 11:31:46 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v 1.5 
2014/06/19 18:04:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v 1.6 
2014/07/05 11:31:46 ago Exp $
 
 EAPI=5
 WANT_AUTOCONF=2.5
@@ -15,7 +15,7 @@
 
 LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 )
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=debug
 
 src_prepare() {



1.271dev-libs/nspr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.271view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.271content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?r1=1.270r2=1.271

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v
retrieving revision 1.270
retrieving revision 1.271
diff -u -r1.270 -r1.271
--- ChangeLog   19 Jun 2014 18:04:04 -  1.270
+++ ChangeLog   5 Jul 2014 11:31:46 -   1.271
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nspr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.270 2014/06/19 
18:04:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.271 2014/07/05 
11:31:46 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6.ebuild:
+  Stable for alpha, wrt bug #512896
 
   19 Jun 2014; Markus Meier mae...@gentoo.org nspr-4.10.6.ebuild:
   arm stable, bug #512896






[gentoo-commits] gentoo-x86 commit in net-misc/freerdp: freerdp-1.1.0_beta1_p20130710-r1.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:31:38

  Modified: freerdp-1.1.0_beta1_p20130710-r1.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #511688
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=alpha, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  net-misc/freerdp/freerdp-1.1.0_beta1_p20130710-r1.ebuild

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

Index: freerdp-1.1.0_beta1_p20130710-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-misc/freerdp/freerdp-1.1.0_beta1_p20130710-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- freerdp-1.1.0_beta1_p20130710-r1.ebuild 22 Jun 2014 18:40:35 -  
1.4
+++ freerdp-1.1.0_beta1_p20130710-r1.ebuild 5 Jul 2014 11:31:38 -   
1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-misc/freerdp/freerdp-1.1.0_beta1_p20130710-r1.ebuild,v
 1.4 2014/06/22 18:40:35 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-misc/freerdp/freerdp-1.1.0_beta1_p20130710-r1.ebuild,v
 1.5 2014/07/05 11:31:38 ago Exp $
 
 EAPI=5
 
@@ -9,7 +9,7 @@
 if [[ ${PV} != * ]]; then
COMMIT=780d451afad21a22d2af6bd030ee71311856f038
SRC_URI=https://github.com/FreeRDP/FreeRDP/archive/${COMMIT}.tar.gz - 
${P}.tar.gz
-   KEYWORDS=~alpha amd64 arm ~ppc ~ppc64 x86
+   KEYWORDS=alpha amd64 arm ~ppc ~ppc64 x86
 else
inherit git-2
SRC_URI=



1.68 net-misc/freerdp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/freerdp/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   22 Jun 2014 18:40:35 -  1.67
+++ ChangeLog   5 Jul 2014 11:31:38 -   1.68
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/freerdp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/freerdp/ChangeLog,v 1.67 
2014/06/22 18:40:35 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/freerdp/ChangeLog,v 1.68 
2014/07/05 11:31:38 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org
+  freerdp-1.1.0_beta1_p20130710-r1.ebuild:
+  Stable for alpha, wrt bug #511688
 
   22 Jun 2014; Markus Meier mae...@gentoo.org
   freerdp-1.1.0_beta1_p20130710-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/lzo: lzo-2.08.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 11:31:51

  Modified: lzo-2.08.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #515238
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=alpha, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  dev-libs/lzo/lzo-2.08.ebuild

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

Index: lzo-2.08.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- lzo-2.08.ebuild 5 Jul 2014 10:51:44 -   1.4
+++ lzo-2.08.ebuild 5 Jul 2014 11:31:51 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v 1.4 
2014/07/05 10:51:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v 1.5 
2014/07/05 11:31:51 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=2
-KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=examples static-libs
 
 RDEPEND=abi_x86_32? (



1.84 dev-libs/lzo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.84view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.84content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?r1=1.83r2=1.84

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog   5 Jul 2014 10:51:44 -   1.83
+++ ChangeLog   5 Jul 2014 11:31:51 -   1.84
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/lzo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.83 2014/07/05 
10:51:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.84 2014/07/05 
11:31:51 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org lzo-2.08.ebuild:
+  Stable for alpha, wrt bug #515238
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org lzo-2.08.ebuild:
   Stable for x86, wrt bug #515238






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

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:32:10

  Modified: ChangeLog package.mask
  Log:
  Add 5.20 version of CGI to perl-5.20 mask

Revision  ChangesPath
1.9139   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9138
retrieving revision 1.9139
diff -u -r1.9138 -r1.9139
--- ChangeLog   5 Jul 2014 11:25:39 -   1.9138
+++ ChangeLog   5 Jul 2014 11:32:09 -   1.9139
@@ -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.9138 2014/07/05 
11:25:39 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9139 2014/07/05 
11:32:09 dilfridge 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!
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
+  Add 5.20 version of CGI to perl-5.20 mask
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
   Add 5.20 version of AutoLoader to perl-5.20 mask
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:



1.15835  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15834
retrieving revision 1.15835
diff -u -r1.15834 -r1.15835
--- package.mask5 Jul 2014 11:25:39 -   1.15834
+++ package.mask5 Jul 2014 11:32:09 -   1.15835
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15834 2014/07/05 
11:25:39 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15835 2014/07/05 
11:32:09 dilfridge 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
@@ -171,6 +171,7 @@
 =virtual/perl-Attribute-Handlers-0.960.0
 =virtual/perl-AutoLoader-5.740.0
 =virtual/perl-B-Debug-1.190.0
+=virtual/perl-CGI-3.650.0
 =perl-core/B-Debug-1.190.0
 
 # Pawel Hajdan jr phajdan...@gentoo.org (24 May 2014)






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

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:36:09

  Modified: ChangeLog package.mask
  Log:
  Add 5.20 version of CPAN to perl-5.20 mask

Revision  ChangesPath
1.9140   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9139
retrieving revision 1.9140
diff -u -r1.9139 -r1.9140
--- ChangeLog   5 Jul 2014 11:32:09 -   1.9139
+++ ChangeLog   5 Jul 2014 11:36:08 -   1.9140
@@ -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.9139 2014/07/05 
11:32:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9140 2014/07/05 
11:36:08 dilfridge 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!
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
+  Add 5.20 version of CPAN to perl-5.20 mask
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
   Add 5.20 version of CGI to perl-5.20 mask
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:



1.15836  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15835
retrieving revision 1.15836
diff -u -r1.15835 -r1.15836
--- package.mask5 Jul 2014 11:32:09 -   1.15835
+++ package.mask5 Jul 2014 11:36:08 -   1.15836
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15835 2014/07/05 
11:32:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15836 2014/07/05 
11:36:08 dilfridge 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
@@ -172,6 +172,7 @@
 =virtual/perl-AutoLoader-5.740.0
 =virtual/perl-B-Debug-1.190.0
 =virtual/perl-CGI-3.650.0
+=virtual/perl-CPAN-2.0.5
 =perl-core/B-Debug-1.190.0
 
 # Pawel Hajdan jr phajdan...@gentoo.org (24 May 2014)






[gentoo-commits] gentoo-x86 commit in virtual/perl-CPAN: perl-CPAN-2.0.5.ebuild ChangeLog

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:36:54

  Modified: ChangeLog
  Added:perl-CPAN-2.0.5.ebuild
  Log:
  Add perl-5.20 version
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.13 virtual/perl-CPAN/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-CPAN/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   24 Apr 2014 17:47:10 -  1.12
+++ ChangeLog   5 Jul 2014 11:36:53 -   1.13
@@ -1,6 +1,12 @@
 # ChangeLog for virtual/perl-CPAN
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-CPAN/ChangeLog,v 1.12 
2014/04/24 17:47:10 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-CPAN/ChangeLog,v 1.13 
2014/07/05 11:36:53 dilfridge Exp $
+
+*perl-CPAN-2.0.5 (05 Jul 2014)
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  +perl-CPAN-2.0.5.ebuild:
+  Add perl-5.20 version
 
   24 Apr 2014; Mikle Kolyada zlog...@gentoo.org perl-CPAN-2.0.0.ebuild:
   Add ~sparc keyword wrt bug #505156



1.1  virtual/perl-CPAN/perl-CPAN-2.0.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN/perl-CPAN-2.0.5.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN/perl-CPAN-2.0.5.ebuild?rev=1.1content-type=text/plain

Index: perl-CPAN-2.0.5.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/virtual/perl-CPAN/perl-CPAN-2.0.5.ebuild,v 
1.1 2014/07/05 11:36:53 dilfridge Exp $

EAPI=5

DESCRIPTION=Virtual for CPAN
HOMEPAGE=
SRC_URI=

LICENSE=
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86
IUSE=

DEPEND=
RDEPEND=|| ( =dev-lang/perl-5.20* ~perl-core/CPAN-${PV} )






[gentoo-commits] gentoo-x86 commit in virtual/perl-CPAN-Meta: perl-CPAN-Meta-2.140.640.ebuild perl-CPAN-Meta-2.120.921.ebuild ChangeLog perl-CPAN-Meta-2.132.140.ebuild perl-CPAN-Meta-2.112.621.ebuild

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:49:01

  Modified: perl-CPAN-Meta-2.120.921.ebuild ChangeLog
  Added:perl-CPAN-Meta-2.140.640.ebuild
  Removed:  perl-CPAN-Meta-2.132.140.ebuild
perl-CPAN-Meta-2.112.621.ebuild
perl-CPAN-Meta-2.113.640.ebuild
perl-CPAN-Meta-2.120.900.ebuild
perl-CPAN-Meta-2.110.910.ebuild
perl-CPAN-Meta-2.110.580.ebuild
perl-CPAN-Meta-2.112.150.ebuild
perl-CPAN-Meta-2.120.351.ebuild
perl-CPAN-Meta-2.110.930.ebuild
  Log:
  Add perl-5.20 version and remove old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.16 virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.120.921.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.120.921.ebuild?rev=1.16view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.120.921.ebuild?rev=1.16content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.120.921.ebuild?r1=1.15r2=1.16

Index: perl-CPAN-Meta-2.120.921.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.120.921.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- perl-CPAN-Meta-2.120.921.ebuild 19 Jan 2014 21:03:49 -  1.15
+++ perl-CPAN-Meta-2.120.921.ebuild 5 Jul 2014 11:49:01 -   1.16
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.120.921.ebuild,v
 1.15 2014/01/19 21:03:49 vapier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.120.921.ebuild,v
 1.16 2014/07/05 11:49:01 dilfridge Exp $
 
 DESCRIPTION=Virtual for ${PN#perl-}
 HOMEPAGE=
@@ -11,4 +11,4 @@
 KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix 
~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
-RDEPEND=~perl-core/${PN#perl-}-${PV}
+RDEPEND=|| ( =dev-lang/perl-5.18* ~perl-core/${PN#perl-}-${PV} )



1.46 virtual/perl-CPAN-Meta/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta/ChangeLog?rev=1.46view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta/ChangeLog?rev=1.46content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta/ChangeLog?r1=1.45r2=1.46

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog   5 Jun 2014 20:45:41 -   1.45
+++ ChangeLog   5 Jul 2014 11:49:01 -   1.46
@@ -1,6 +1,17 @@
 # ChangeLog for virtual/perl-CPAN-Meta
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta/ChangeLog,v 1.45 
2014/06/05 20:45:41 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta/ChangeLog,v 1.46 
2014/07/05 11:49:01 dilfridge Exp $
+
+*perl-CPAN-Meta-2.140.640 (05 Jul 2014)
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  -perl-CPAN-Meta-2.110.580.ebuild, -perl-CPAN-Meta-2.110.910.ebuild,
+  -perl-CPAN-Meta-2.110.930.ebuild, -perl-CPAN-Meta-2.112.150.ebuild,
+  -perl-CPAN-Meta-2.112.621.ebuild, -perl-CPAN-Meta-2.113.640.ebuild,
+  -perl-CPAN-Meta-2.120.351.ebuild, -perl-CPAN-Meta-2.120.900.ebuild,
+  perl-CPAN-Meta-2.120.921.ebuild, -perl-CPAN-Meta-2.132.140.ebuild,
+  +perl-CPAN-Meta-2.140.640.ebuild:
+  Add perl-5.20 version and remove old
 
   05 Jun 2014; Mikle Kolyada zlog...@gentoo.org
   -perl-CPAN-Meta-2.110.440-r1.ebuild:



1.1  virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.140.640.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.140.640.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.140.640.ebuild?rev=1.1content-type=text/plain

Index: perl-CPAN-Meta-2.140.640.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.140.640.ebuild,v
 1.1 2014/07/05 11:49:01 

[gentoo-commits] gentoo-x86 commit in perl-core/CPAN-Meta: ChangeLog CPAN-Meta-2.120.351.ebuild CPAN-Meta-2.110.930.ebuild CPAN-Meta-2.112.621.ebuild CPAN-Meta-2.110.580.ebuild CPAN-Meta-2.120.900.ebu

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:49:32

  Modified: ChangeLog
  Removed:  CPAN-Meta-2.120.351.ebuild
CPAN-Meta-2.110.930.ebuild
CPAN-Meta-2.112.621.ebuild
CPAN-Meta-2.110.580.ebuild
CPAN-Meta-2.120.900.ebuild
CPAN-Meta-2.113.640.ebuild
CPAN-Meta-2.132.140.ebuild
CPAN-Meta-2.110.910.ebuild
CPAN-Meta-2.112.150.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.48 perl-core/CPAN-Meta/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/CPAN-Meta/ChangeLog?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/CPAN-Meta/ChangeLog?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/CPAN-Meta/ChangeLog?r1=1.47r2=1.48

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/perl-core/CPAN-Meta/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   5 Jun 2014 20:46:44 -   1.47
+++ ChangeLog   5 Jul 2014 11:49:32 -   1.48
@@ -1,6 +1,14 @@
 # ChangeLog for perl-core/CPAN-Meta
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/perl-core/CPAN-Meta/ChangeLog,v 1.47 
2014/06/05 20:46:44 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/perl-core/CPAN-Meta/ChangeLog,v 1.48 
2014/07/05 11:49:32 dilfridge Exp $
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  -CPAN-Meta-2.110.580.ebuild, -CPAN-Meta-2.110.910.ebuild,
+  -CPAN-Meta-2.110.930.ebuild, -CPAN-Meta-2.112.150.ebuild,
+  -CPAN-Meta-2.112.621.ebuild, -CPAN-Meta-2.113.640.ebuild,
+  -CPAN-Meta-2.120.351.ebuild, -CPAN-Meta-2.120.900.ebuild,
+  -CPAN-Meta-2.132.140.ebuild:
+  Remove old
 
   05 Jun 2014; Mikle Kolyada zlog...@gentoo.org -CPAN-Meta-2.110.440.ebuild:
   Drop old






[gentoo-commits] gentoo-x86 commit in x11-terms/terminology: terminology-0.6.1.ebuild ChangeLog

2014-07-05 Thread Ralph Sennhauser (sera)
sera14/07/05 11:54:02

  Modified: ChangeLog
  Added:terminology-0.6.1.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
3C5CF75A)

Revision  ChangesPath
1.10 x11-terms/terminology/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/terminology/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/terminology/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/terminology/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-terms/terminology/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   30 Jun 2014 16:42:58 -  1.9
+++ ChangeLog   5 Jul 2014 11:54:02 -   1.10
@@ -1,6 +1,11 @@
 # ChangeLog for x11-terms/terminology
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/terminology/ChangeLog,v 1.9 
2014/06/30 16:42:58 sera Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/terminology/ChangeLog,v 1.10 
2014/07/05 11:54:02 sera Exp $
+
+*terminology-0.6.1 (05 Jul 2014)
+
+  05 Jul 2014; Ralph Sennhauser s...@gentoo.org +terminology-0.6.1.ebuild:
+  Version bump
 
 *terminology-0.5.1 (30 Jun 2014)
 



1.1  x11-terms/terminology/terminology-0.6.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/terminology/terminology-0.6.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/terminology/terminology-0.6.1.ebuild?rev=1.1content-type=text/plain

Index: terminology-0.6.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-terms/terminology/terminology-0.6.1.ebuild,v 1.1 
2014/07/05 11:54:02 sera Exp $

EAPI=5

DESCRIPTION=Feature rich terminal emulator using the Enlightenment Foundation 
Libraries
HOMEPAGE=http://www.enlightenment.org/p.php?p=about/terminology;
SRC_URI=http://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz;

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

RDEPEND=
=dev-libs/efl-1.8.1
=media-libs/elementary-1.8.0
DEPEND=${RDEPEND}
virtual/pkgconfig






[gentoo-commits] gentoo-x86 commit in virtual/perl-CPAN-Meta-Requirements: perl-CPAN-Meta-Requirements-2.122.0.ebuild perl-CPAN-Meta-Requirements-2.125.0.ebuild ChangeLog perl-CPAN-Meta-Requirements-2

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 11:56:52

  Modified: perl-CPAN-Meta-Requirements-2.122.0.ebuild
perl-CPAN-Meta-Requirements-2.125.0.ebuild
ChangeLog
  Removed:  perl-CPAN-Meta-Requirements-2.123.0.ebuild
perl-CPAN-Meta-Requirements-2.121.0.ebuild
  Log:
  Improve dependencies and remove old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.15 
virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.122.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.122.0.ebuild?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.122.0.ebuild?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.122.0.ebuild?r1=1.14r2=1.15

Index: perl-CPAN-Meta-Requirements-2.122.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.122.0.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- perl-CPAN-Meta-Requirements-2.122.0.ebuild  19 Jan 2014 20:52:03 -  
1.14
+++ perl-CPAN-Meta-Requirements-2.122.0.ebuild  5 Jul 2014 11:56:52 -   
1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.122.0.ebuild,v
 1.14 2014/01/19 20:52:03 vapier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.122.0.ebuild,v
 1.15 2014/07/05 11:56:52 dilfridge Exp $
 
 DESCRIPTION=Virtual for ${PN#perl-}
 HOMEPAGE=
@@ -11,4 +11,4 @@
 KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix 
~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
-RDEPEND=~perl-core/${PN#perl-}-${PV}
+RDEPEND=|| ( =dev-lang/perl-5.18* ~perl-core/${PN#perl-}-${PV} )



1.3  
virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.125.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.125.0.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.125.0.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.125.0.ebuild?r1=1.2r2=1.3

Index: perl-CPAN-Meta-Requirements-2.125.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.125.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- perl-CPAN-Meta-Requirements-2.125.0.ebuild  19 Jan 2014 20:52:03 -  
1.2
+++ perl-CPAN-Meta-Requirements-2.125.0.ebuild  5 Jul 2014 11:56:52 -   
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/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.125.0.ebuild,v
 1.2 2014/01/19 20:52:03 vapier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements-2.125.0.ebuild,v
 1.3 2014/07/05 11:56:52 dilfridge Exp $
 
 DESCRIPTION=Virtual for ${PN#perl-}
 HOMEPAGE=
@@ -11,4 +11,4 @@
 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
 IUSE=
 
-RDEPEND=~perl-core/${PN#perl-}-${PV}
+RDEPEND=|| ( =dev-lang/perl-5.20* ~perl-core/${PN#perl-}-${PV} )



1.19 virtual/perl-CPAN-Meta-Requirements/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-Requirements/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: 

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

2014-07-05 Thread Tobias Klausmann (klausman)
klausman14/07/05 12:11:53

  Modified: ChangeLog libmikmod-3.3.5.ebuild
  Log:
  Stable on alpha, bug #495798
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
CE5D54E8)

Revision  ChangesPath
1.124media-libs/libmikmod/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog   29 Jun 2014 18:58:20 -  1.123
+++ ChangeLog   5 Jul 2014 12:11:53 -   1.124
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libmikmod
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v 1.123 
2014/06/29 18:58:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v 1.124 
2014/07/05 12:11:53 klausman Exp $
+
+  05 Jul 2014; Tobias Klausmann klaus...@gentoo.org libmikmod-3.3.5.ebuild:
+  Stable on alpha, bug #495798
 
   29 Jun 2014; Markus Meier mae...@gentoo.org libmikmod-3.3.5.ebuild:
   arm stable, bug #495798



1.6  media-libs/libmikmod/libmikmod-3.3.5.ebuild

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

Index: libmikmod-3.3.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libmikmod-3.3.5.ebuild  29 Jun 2014 18:58:20 -  1.5
+++ libmikmod-3.3.5.ebuild  5 Jul 2014 12:11:53 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.5.ebuild,v 1.5 
2014/06/29 18:58:20 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.5.ebuild,v 1.6 
2014/07/05 12:11:53 klausman Exp $
 
 EAPI=5
 inherit eutils multilib-minimal
@@ -11,7 +11,7 @@
 
 LICENSE=LGPL-2+ LGPL-2.1
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
 IUSE=+alsa altivec coreaudio debug nas openal oss pulseaudio sse2 static-libs 
+threads
 
 REQUIRED_USE=|| ( alsa oss coreaudio )






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

2014-07-05 Thread Tobias Klausmann (klausman)
klausman14/07/05 12:12:28

  Modified: mikmod-3.2.5.ebuild ChangeLog
  Log:
  Stable on alpha, bug #495798
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
CE5D54E8)

Revision  ChangesPath
1.6  media-sound/mikmod/mikmod-3.2.5.ebuild

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

Index: mikmod-3.2.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mikmod/mikmod-3.2.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mikmod-3.2.5.ebuild 21 Apr 2014 16:08:34 -  1.5
+++ mikmod-3.2.5.ebuild 5 Jul 2014 12:12:28 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mikmod/mikmod-3.2.5.ebuild,v 
1.5 2014/04/21 16:08:34 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mikmod/mikmod-3.2.5.ebuild,v 
1.6 2014/07/05 12:12:28 klausman Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 hppa ~ia64 ~ppc ~sparc ~x86
+KEYWORDS=alpha amd64 hppa ~ia64 ~ppc ~sparc ~x86
 IUSE=
 
 RDEPEND==media-libs/libmikmod-3.2.0



1.35 media-sound/mikmod/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mikmod/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   9 May 2014 16:05:46 -   1.34
+++ ChangeLog   5 Jul 2014 12:12:28 -   1.35
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/mikmod
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mikmod/ChangeLog,v 1.34 
2014/05/09 16:05:46 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mikmod/ChangeLog,v 1.35 
2014/07/05 12:12:28 klausman Exp $
+
+  05 Jul 2014; Tobias Klausmann klaus...@gentoo.org mikmod-3.2.5.ebuild:
+  Stable on alpha, bug #495798
 
   09 May 2014; Samuli Suominen ssuomi...@gentoo.org -mikmod-3.2.3.ebuild,
   -mikmod-3.2.4.ebuild:






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

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:14:58

  Modified: ChangeLog package.mask
  Log:
  Add 5.20 version of CPAN::Meta::YAML to perl-5.20 mask

Revision  ChangesPath
1.9142   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9141
retrieving revision 1.9142
diff -u -r1.9141 -r1.9142
--- ChangeLog   5 Jul 2014 11:47:42 -   1.9141
+++ ChangeLog   5 Jul 2014 12:14:57 -   1.9142
@@ -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.9141 2014/07/05 
11:47:42 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9142 2014/07/05 
12:14:57 dilfridge 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!
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
+  Add 5.20 version of CPAN::Meta::YAML to perl-5.20 mask
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
   Add 5.20 version of CPAN::Meta to perl-5.20 mask
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:



1.15838  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15837
retrieving revision 1.15838
diff -u -r1.15837 -r1.15838
--- package.mask5 Jul 2014 11:47:42 -   1.15837
+++ package.mask5 Jul 2014 12:14:57 -   1.15838
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15837 2014/07/05 
11:47:42 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15838 2014/07/05 
12:14:57 dilfridge 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
@@ -174,6 +174,7 @@
 =virtual/perl-CGI-3.650.0
 =virtual/perl-CPAN-2.0.5
 =virtual/perl-CPAN-Meta-2.140.640
+=virtual/perl-CPAN-Meta-YAML-0.12.0
 =perl-core/B-Debug-1.190.0
 
 # Pawel Hajdan jr phajdan...@gentoo.org (24 May 2014)






[gentoo-commits] gentoo-x86 commit in virtual/perl-CPAN-Meta-YAML: perl-CPAN-Meta-YAML-0.8.0.ebuild perl-CPAN-Meta-YAML-0.12.0.ebuild ChangeLog perl-CPAN-Meta-YAML-0.6.0.ebuild perl-CPAN-Meta-YAML-0.5

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:17:30

  Modified: perl-CPAN-Meta-YAML-0.8.0.ebuild ChangeLog
  Added:perl-CPAN-Meta-YAML-0.12.0.ebuild
  Removed:  perl-CPAN-Meta-YAML-0.6.0.ebuild
perl-CPAN-Meta-YAML-0.5.0.ebuild
perl-CPAN-Meta-YAML-0.4.0.ebuild
  Log:
  Add perl-5.20 version and remove old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.17 
virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.8.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.8.0.ebuild?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.8.0.ebuild?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.8.0.ebuild?r1=1.16r2=1.17

Index: perl-CPAN-Meta-YAML-0.8.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.8.0.ebuild,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- perl-CPAN-Meta-YAML-0.8.0.ebuild19 Jan 2014 21:00:09 -  1.16
+++ perl-CPAN-Meta-YAML-0.8.0.ebuild5 Jul 2014 12:17:30 -   1.17
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.8.0.ebuild,v
 1.16 2014/01/19 21:00:09 vapier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.8.0.ebuild,v
 1.17 2014/07/05 12:17:30 dilfridge Exp $
 
 DESCRIPTION=Virtual for ${PN#perl-}
 HOMEPAGE=
@@ -11,4 +11,4 @@
 KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix 
~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
-RDEPEND=~perl-core/${PN#perl-}-${PV}
+RDEPEND=|| ( =dev-lang/perl-5.18* ~perl-core/${PN#perl-}-${PV} )



1.41 virtual/perl-CPAN-Meta-YAML/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-YAML/ChangeLog?rev=1.41view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-YAML/ChangeLog?rev=1.41content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-YAML/ChangeLog?r1=1.40r2=1.41

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-YAML/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   28 May 2014 15:56:40 -  1.40
+++ ChangeLog   5 Jul 2014 12:17:30 -   1.41
@@ -1,6 +1,14 @@
 # ChangeLog for virtual/perl-CPAN-Meta-YAML
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-YAML/ChangeLog,v 
1.40 2014/05/28 15:56:40 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-YAML/ChangeLog,v 
1.41 2014/07/05 12:17:30 dilfridge Exp $
+
+*perl-CPAN-Meta-YAML-0.12.0 (05 Jul 2014)
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  -perl-CPAN-Meta-YAML-0.4.0.ebuild, -perl-CPAN-Meta-YAML-0.5.0.ebuild,
+  -perl-CPAN-Meta-YAML-0.6.0.ebuild, perl-CPAN-Meta-YAML-0.8.0.ebuild,
+  +perl-CPAN-Meta-YAML-0.12.0.ebuild:
+  Add perl-5.20 version and remove old
 
   28 May 2014; Mikle Kolyada zlog...@gentoo.org
   -perl-CPAN-Meta-YAML-0.3.0-r1.ebuild:



1.1  
virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.12.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.12.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.12.0.ebuild?rev=1.1content-type=text/plain

Index: perl-CPAN-Meta-YAML-0.12.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.12.0.ebuild,v
 1.1 2014/07/05 12:17:30 dilfridge Exp $

EAPI=5

DESCRIPTION=Virtual for ${PN#perl-}
HOMEPAGE=
SRC_URI=

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


[gentoo-commits] gentoo-x86 commit in perl-core/CPAN-Meta-YAML: ChangeLog CPAN-Meta-YAML-0.4.0.ebuild CPAN-Meta-YAML-0.5.0.ebuild CPAN-Meta-YAML-0.6.0.ebuild

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:17:42

  Modified: ChangeLog
  Removed:  CPAN-Meta-YAML-0.4.0.ebuild
CPAN-Meta-YAML-0.5.0.ebuild
CPAN-Meta-YAML-0.6.0.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.41 perl-core/CPAN-Meta-YAML/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/CPAN-Meta-YAML/ChangeLog?rev=1.41view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/CPAN-Meta-YAML/ChangeLog?rev=1.41content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/CPAN-Meta-YAML/ChangeLog?r1=1.40r2=1.41

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/perl-core/CPAN-Meta-YAML/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   28 May 2014 15:57:52 -  1.40
+++ ChangeLog   5 Jul 2014 12:17:42 -   1.41
@@ -1,6 +1,11 @@
 # ChangeLog for perl-core/CPAN-Meta-YAML
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/perl-core/CPAN-Meta-YAML/ChangeLog,v 1.40 
2014/05/28 15:57:52 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/perl-core/CPAN-Meta-YAML/ChangeLog,v 1.41 
2014/07/05 12:17:42 dilfridge Exp $
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  -CPAN-Meta-YAML-0.4.0.ebuild, -CPAN-Meta-YAML-0.5.0.ebuild,
+  -CPAN-Meta-YAML-0.6.0.ebuild:
+  Remove old
 
   28 May 2014; Mikle Kolyada zlog...@gentoo.org -CPAN-Meta-YAML-0.3.0.ebuild:
   Drop old






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

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:22:34

  Modified: ChangeLog package.mask
  Log:
  Add 5.20 version of Carp to perl-5.20 mask

Revision  ChangesPath
1.9143   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9142
retrieving revision 1.9143
diff -u -r1.9142 -r1.9143
--- ChangeLog   5 Jul 2014 12:14:57 -   1.9142
+++ ChangeLog   5 Jul 2014 12:22:33 -   1.9143
@@ -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.9142 2014/07/05 
12:14:57 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9143 2014/07/05 
12:22:33 dilfridge 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!
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
+  Add 5.20 version of Carp to perl-5.20 mask
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
   Add 5.20 version of CPAN::Meta::YAML to perl-5.20 mask
 
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:



1.15839  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15838
retrieving revision 1.15839
diff -u -r1.15838 -r1.15839
--- package.mask5 Jul 2014 12:14:57 -   1.15838
+++ package.mask5 Jul 2014 12:22:33 -   1.15839
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15838 2014/07/05 
12:14:57 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15839 2014/07/05 
12:22:33 dilfridge 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
@@ -175,6 +175,7 @@
 =virtual/perl-CPAN-2.0.5
 =virtual/perl-CPAN-Meta-2.140.640
 =virtual/perl-CPAN-Meta-YAML-0.12.0
+=virtual/perl-Carp-1.330.100
 =perl-core/B-Debug-1.190.0
 
 # Pawel Hajdan jr phajdan...@gentoo.org (24 May 2014)






[gentoo-commits] gentoo-x86 commit in virtual/perl-Carp: ChangeLog perl-Carp-1.330.100.ebuild

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:23:29

  Modified: ChangeLog
  Added:perl-Carp-1.330.100.ebuild
  Log:
  Add perl-5.20 version
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.3  virtual/perl-Carp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-Carp/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   5 Sep 2013 07:08:02 -   1.2
+++ ChangeLog   5 Jul 2014 12:23:29 -   1.3
@@ -1,6 +1,12 @@
 # ChangeLog for virtual/perl-Carp
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Carp/ChangeLog,v 1.2 
2013/09/05 07:08:02 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Carp/ChangeLog,v 1.3 
2014/07/05 12:23:29 dilfridge Exp $
+
+*perl-Carp-1.330.100 (05 Jul 2014)
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  +perl-Carp-1.330.100.ebuild:
+  Add perl-5.20 version
 
   05 Sep 2013; Patrick Lauer patr...@gentoo.org perl-Carp-1.290.0.ebuild:
   Restore keywords



1.1  virtual/perl-Carp/perl-Carp-1.330.100.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Carp/perl-Carp-1.330.100.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Carp/perl-Carp-1.330.100.ebuild?rev=1.1content-type=text/plain

Index: perl-Carp-1.330.100.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-Carp/perl-Carp-1.330.100.ebuild,v 1.1 
2014/07/05 12:23:29 dilfridge Exp $

EAPI=5

DESCRIPTION=Virtual for Carp
HOMEPAGE=
SRC_URI=

LICENSE=
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
IUSE=

DEPEND=
RDEPEND=
=dev-lang/perl-5.20*
!perl-core/Carp







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

2014-07-05 Thread Maxim Koltsov (maksbotan)
maksbotan14/07/05 12:29:17

  Modified: lc-monocle-.ebuild metadata.xml ChangeLog
  Log:
  Fix dependencies, rename spectre use flag. Thanks to 0xd34df00d.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F8DBDADE)

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

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

Index: lc-monocle-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-monocle/lc-monocle-.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lc-monocle-.ebuild  2 Oct 2013 09:49:30 -   1.3
+++ lc-monocle-.ebuild  5 Jul 2014 12:29:17 -   1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-monocle/lc-monocle-.ebuild,v 1.3 
2013/10/02 09:49:30 maksbotan Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-monocle/lc-monocle-.ebuild,v 1.4 
2014/07/05 12:29:17 maksbotan Exp $
 
 EAPI=5
 
@@ -10,19 +10,18 @@
 
 SLOT=0
 KEYWORDS=
-IUSE=debug +djvu doc +fb2 +pdf +spectre
+IUSE=debug +djvu doc +fb2 +mobi +pdf +postscript
 
-RDEPEND=~app-leechcraft/lc-core-${PV}
+REQUIRED_USE=postscript? ( pdf )
+
+CDEPEND=~app-leechcraft/lc-core-${PV}
pdf? ( app-text/poppler[qt4] )
-   djvu? ( app-text/djvu )
-   spectre? (
-   app-text/libspectre
-   || (
-   app-text/poppler[-lcms]
-   app-text/ghostscript-gpl-9.07
-   )
-   )
-DEPEND=${RDEPEND}
+   djvu? ( app-text/djvu )
+
+RDEPEND=${CDEPEND}
+   postscript? ( app-text/ghostscript-gpl )
+
+DEPEND=${CDEPEND}
doc? ( app-doc/doxygen[dot] )
 
 src_configure() {
@@ -30,8 +29,9 @@
$(cmake-utils_use_enable djvu MONOCLE_SEEN)
$(cmake-utils_use_with doc DOCS)
$(cmake-utils_use_enable fb2 MONOCLE_FXB)
+   $(cmake-utils_use_enable mobi MONOCLE_DIK)
$(cmake-utils_use_enable pdf MONOCLE_PDF)
-   $(cmake-utils_use_enable spectre MONOCLE_POSTRUS)
+   $(cmake-utils_use_enable postscript MONOCLE_POSTRUS)
)
cmake-utils_src_configure
 }
@@ -39,4 +39,4 @@
 src_install() {
cmake-utils_src_install
use doc  dohtml -r ${CMAKE_BUILD_DIR}/out/html/*
-}
+}
\ No newline at end of file



1.2  app-leechcraft/lc-monocle/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-leechcraft/lc-monocle/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml8 Mar 2013 22:02:32 -   1.1
+++ metadata.xml5 Jul 2014 12:29:17 -   1.2
@@ -4,6 +4,7 @@
herdleechcraft/herd
use
flag name=fb2Enable support for FictionBook format/flag
+   flag name=mobiEnable support for MOBI format/flag
flag name=spectreEnable PostScript backend for Monocle 
using the pkgapp-text/libspectre/pkg/flag
/use
 /pkgmetadata



1.14 app-leechcraft/lc-monocle/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-monocle/ChangeLog?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-monocle/ChangeLog?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-monocle/ChangeLog?r1=1.13r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-leechcraft/lc-monocle/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   10 Apr 2014 17:58:44 -  1.13
+++ ChangeLog   5 Jul 2014 12:29:17 -   1.14
@@ -1,6 +1,10 @@
 # ChangeLog for app-leechcraft/lc-monocle
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-monocle/ChangeLog,v 1.13 
2014/04/10 

[gentoo-commits] gentoo-x86 commit in virtual/perl-Class-ISA: ChangeLog perl-Class-ISA-0.36.ebuild

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:33:13

  Modified: ChangeLog perl-Class-ISA-0.36.ebuild
  Log:
  Moved from perl-core to dev-perl
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.21 virtual/perl-Class-ISA/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Class-ISA/ChangeLog?rev=1.21view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Class-ISA/ChangeLog?rev=1.21content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Class-ISA/ChangeLog?r1=1.20r2=1.21

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-Class-ISA/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   17 Jan 2011 08:13:48 -  1.20
+++ ChangeLog   5 Jul 2014 12:33:13 -   1.21
@@ -1,6 +1,10 @@
 # ChangeLog for virtual/perl-Class-ISA
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Class-ISA/ChangeLog,v 1.20 
2011/01/17 08:13:48 tove Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Class-ISA/ChangeLog,v 1.21 
2014/07/05 12:33:13 dilfridge Exp $
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  perl-Class-ISA-0.36.ebuild:
+  Moved from perl-core to dev-perl
 
   17 Jan 2011; Torsten Veller t...@gentoo.org -perl-Class-ISA-0.33.ebuild,
   -perl-Class-ISA-0.35.ebuild:



1.10 virtual/perl-Class-ISA/perl-Class-ISA-0.36.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Class-ISA/perl-Class-ISA-0.36.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Class-ISA/perl-Class-ISA-0.36.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-Class-ISA/perl-Class-ISA-0.36.ebuild?r1=1.9r2=1.10

Index: perl-Class-ISA-0.36.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-Class-ISA/perl-Class-ISA-0.36.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- perl-Class-ISA-0.36.ebuild  22 Oct 2010 18:17:16 -  1.9
+++ perl-Class-ISA-0.36.ebuild  5 Jul 2014 12:33:13 -   1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-Class-ISA/perl-Class-ISA-0.36.ebuild,v 1.9 
2010/10/22 18:17:16 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-Class-ISA/perl-Class-ISA-0.36.ebuild,v 
1.10 2014/07/05 12:33:13 dilfridge Exp $
 
 DESCRIPTION=Report the search path thru an ISA tree
 HOMEPAGE=
@@ -11,4 +11,4 @@
 KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86
 IUSE=
 
-RDEPEND=~perl-core/Class-ISA-${PV}
+RDEPEND=~dev-perl/Class-ISA-${PV}






[gentoo-commits] gentoo-x86 commit in dev-perl/Class-Virtual: Class-Virtual-0.60.0.ebuild ChangeLog

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:35:07

  Modified: Class-Virtual-0.60.0.ebuild ChangeLog
  Log:
  Class-ISA moved to dev-perl
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.3  dev-perl/Class-Virtual/Class-Virtual-0.60.0.ebuild

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

Index: Class-Virtual-0.60.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Class-Virtual/Class-Virtual-0.60.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Class-Virtual-0.60.0.ebuild 3 Sep 2011 21:04:42 -   1.2
+++ Class-Virtual-0.60.0.ebuild 5 Jul 2014 12:35:07 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Class-Virtual/Class-Virtual-0.60.0.ebuild,v 
1.2 2011/09/03 21:04:42 tove Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Class-Virtual/Class-Virtual-0.60.0.ebuild,v 
1.3 2014/07/05 12:35:07 dilfridge Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 RDEPEND=dev-perl/Class-Data-Inheritable
dev-perl/Carp-Assert
-   perl-core/Class-ISA
+   dev-perl/Class-ISA
 DEPEND=${RDEPEND}
 
 SRC_TEST=do



1.25 dev-perl/Class-Virtual/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Class-Virtual/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   24 Jun 2012 12:59:59 -  1.24
+++ ChangeLog   5 Jul 2014 12:35:07 -   1.25
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Class-Virtual
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-Virtual/ChangeLog,v 1.24 
2012/06/24 12:59:59 tove Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-Virtual/ChangeLog,v 1.25 
2014/07/05 12:35:07 dilfridge Exp $
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  Class-Virtual-0.60.0.ebuild:
+  Class-ISA moved to dev-perl
 
   24 Jun 2012; Torsten Veller t...@gentoo.org metadata.xml:
   Update CPAN upstream info






[gentoo-commits] gentoo-x86 commit in dev-perl/Lab-Measurement: Lab-Measurement-9999.ebuild Lab-Measurement-3.310.0.ebuild ChangeLog Lab-Measurement-3.320.0.ebuild

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:37:17

  Modified: Lab-Measurement-.ebuild
Lab-Measurement-3.310.0.ebuild ChangeLog
Lab-Measurement-3.320.0.ebuild
  Log:
  Class-ISA moved to dev-perl
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.14 dev-perl/Lab-Measurement/Lab-Measurement-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild?r1=1.13r2=1.14

Index: Lab-Measurement-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Lab-Measurement-.ebuild 29 Jun 2014 15:15:25 -  1.13
+++ Lab-Measurement-.ebuild 5 Jul 2014 12:37:17 -   1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild,v 
1.13 2014/06/29 15:15:25 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild,v 
1.14 2014/07/05 12:37:17 dilfridge Exp $
 
 EAPI=5
 
@@ -28,6 +28,7 @@
 IUSE=debug +xpression
 
 RDEPEND=
+   dev-perl/Class-ISA
dev-perl/Clone
dev-perl/Exception-Class
dev-perl/Hook-LexWrap
@@ -41,7 +42,6 @@
dev-perl/yaml
perl-core/Switch
sci-visualization/gnuplot
-   virtual/perl-Class-ISA
virtual/perl-Data-Dumper
virtual/perl-Encode
virtual/perl-Time-HiRes



1.3  dev-perl/Lab-Measurement/Lab-Measurement-3.310.0.ebuild

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

Index: Lab-Measurement-3.310.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Lab-Measurement/Lab-Measurement-3.310.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Lab-Measurement-3.310.0.ebuild  29 Jun 2014 15:15:25 -  1.2
+++ Lab-Measurement-3.310.0.ebuild  5 Jul 2014 12:37:17 -   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-perl/Lab-Measurement/Lab-Measurement-3.310.0.ebuild,v
 1.2 2014/06/29 15:15:25 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Lab-Measurement/Lab-Measurement-3.310.0.ebuild,v
 1.3 2014/07/05 12:37:17 dilfridge Exp $
 
 EAPI=5
 
@@ -28,6 +28,7 @@
 IUSE=debug +xpression
 
 RDEPEND=
+   dev-perl/Class-ISA
dev-perl/Clone
dev-perl/Exception-Class
dev-perl/Hook-LexWrap
@@ -41,7 +42,6 @@
dev-perl/yaml
perl-core/Switch
sci-visualization/gnuplot
-   virtual/perl-Class-ISA
virtual/perl-Data-Dumper
virtual/perl-Encode
virtual/perl-Time-HiRes



1.22 dev-perl/Lab-Measurement/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Lab-Measurement/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Lab-Measurement/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Lab-Measurement/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Lab-Measurement/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   29 Jun 2014 15:15:25 -  1.21
+++ ChangeLog   5 Jul 2014 12:37:17 -   1.22
@@ -1,6 +1,11 @@
 # ChangeLog for dev-perl/Lab-Measurement
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Lab-Measurement/ChangeLog,v 1.21 
2014/06/29 15:15:25 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Lab-Measurement/ChangeLog,v 1.22 
2014/07/05 12:37:17 dilfridge Exp $
+
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org
+  Lab-Measurement-3.310.0.ebuild, Lab-Measurement-3.320.0.ebuild,
+  Lab-Measurement-.ebuild:
+  Class-ISA 

[gentoo-commits] gentoo-x86 commit in profiles/updates: 2Q-2014

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:39:53

  Modified: 2Q-2014
  Log:
  Move Class-ISA from perl-core to dev-perl

Revision  ChangesPath
1.3  profiles/updates/2Q-2014

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/2Q-2014?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/2Q-2014?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/2Q-2014?r1=1.2r2=1.3

Index: 2Q-2014
===
RCS file: /var/cvsroot/gentoo-x86/profiles/updates/2Q-2014,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- 2Q-2014 16 May 2014 08:19:37 -  1.2
+++ 2Q-2014 5 Jul 2014 12:39:53 -   1.3
@@ -1,2 +1,3 @@
 slotmove =dev-ruby/listen-1.3.1-r1 0 1
 slotmove =dev-ruby/http-0.6* 5 0.6
+move perl-core/Class-ISA dev-perl/Class-ISA






[gentoo-commits] gentoo-x86 commit in dev-python/bottle: bottle-0.11.7.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:39:45

  Modified: bottle-0.11.7.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #509350
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  dev-python/bottle/bottle-0.11.7.ebuild

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

Index: bottle-0.11.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bottle-0.11.7.ebuild5 Jul 2014 11:33:25 -   1.4
+++ bottle-0.11.7.ebuild5 Jul 2014 12:39:45 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v 
1.4 2014/07/05 11:33:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v 
1.5 2014/07/05 12:39:45 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86
+KEYWORDS=alpha amd64 ~arm ia64 ~ppc ~ppc64 ~sparc x86
 IUSE=
 
 DEPEND=



1.31 dev-python/bottle/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   5 Jul 2014 11:33:25 -   1.30
+++ ChangeLog   5 Jul 2014 12:39:45 -   1.31
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/bottle
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.30 
2014/07/05 11:33:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.31 
2014/07/05 12:39:45 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org bottle-0.11.7.ebuild:
+  Stable for ia64, wrt bug #509350
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org bottle-0.11.7.ebuild:
   Stable for alpha, wrt bug #509350






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

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:39:53

  Modified: ChangeLog
  Log:
  Move Class-ISA from perl-core to dev-perl

Revision  ChangesPath
1.9144   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9143
retrieving revision 1.9144
diff -u -r1.9143 -r1.9144
--- ChangeLog   5 Jul 2014 12:22:33 -   1.9143
+++ ChangeLog   5 Jul 2014 12:39:53 -   1.9144
@@ -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.9143 2014/07/05 
12:22:33 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9144 2014/07/05 
12:39:53 dilfridge 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!
 
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org updates/2Q-2014:
+  Move Class-ISA from perl-core to dev-perl
+
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
   Add 5.20 version of Carp to perl-5.20 mask
 






[gentoo-commits] gentoo-x86 commit in dev-libs/libtasn1: libtasn1-3.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:40:34

  Modified: libtasn1-3.6.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #511536
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.10 dev-libs/libtasn1/libtasn1-3.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild?r1=1.9r2=1.10

Index: libtasn1-3.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libtasn1-3.6.ebuild 23 Jun 2014 15:23:00 -  1.9
+++ libtasn1-3.6.ebuild 5 Jul 2014 12:40:34 -   1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild,v 1.9 
2014/06/23 15:23:00 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild,v 
1.10 2014/07/05 12:40:34 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3 LGPL-2.1
 SLOT=0/6 # subslot = libtasn1 soname version
-KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~x64-macos
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~x64-macos
 IUSE=doc static-libs
 
 DEPEND==dev-lang/perl-5.6



1.210dev-libs/libtasn1/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.210view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.210content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?r1=1.209r2=1.210

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog   26 Jun 2014 18:51:44 -  1.209
+++ ChangeLog   5 Jul 2014 12:40:34 -   1.210
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libtasn1
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.209 
2014/06/26 18:51:44 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.210 
2014/07/05 12:40:34 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org libtasn1-3.6.ebuild:
+  Stable for ia64, wrt bug #511536
 
 *libtasn1-4.0 (26 Jun 2014)
 






[gentoo-commits] gentoo-x86 commit in perl-core/Class-ISA: ChangeLog Class-ISA-0.36.ebuild Manifest metadata.xml

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:40:44

  Removed:  ChangeLog Class-ISA-0.36.ebuild Manifest
metadata.xml
  Log:
  perl-core/Class-ISA was moved to dev-perl



[gentoo-commits] gentoo-x86 commit in media-sound/pulseaudio: pulseaudio-5.0-r2.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:40:53

  Modified: pulseaudio-5.0-r2.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #512516
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  media-sound/pulseaudio/pulseaudio-5.0-r2.ebuild

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

Index: pulseaudio-5.0-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-sound/pulseaudio/pulseaudio-5.0-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pulseaudio-5.0-r2.ebuild17 Jun 2014 11:46:47 -  1.6
+++ pulseaudio-5.0-r2.ebuild5 Jul 2014 12:40:53 -   1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-sound/pulseaudio/pulseaudio-5.0-r2.ebuild,v 1.6 
2014/06/17 11:46:47 klausman Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-sound/pulseaudio/pulseaudio-5.0-r2.ebuild,v 1.7 
2014/07/05 12:40:53 ago Exp $
 
 EAPI=5
 inherit autotools bash-completion-r1 eutils flag-o-matic linux-info 
readme.gentoo systemd user versionator udev multilib-minimal
@@ -16,7 +16,7 @@
 LICENSE=!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 )
 
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux 
~x86-linux
+KEYWORDS=alpha amd64 arm hppa ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux 
~x86-linux
 
 IUSE=+alsa +asyncns avahi bluetooth +caps dbus doc equalizer +gdbm +glib gnome
 gtk ipv6 jack libsamplerate lirc neon +orc oss qt4 realtime ssl systemd



1.349media-sound/pulseaudio/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/pulseaudio/ChangeLog,v
retrieving revision 1.348
retrieving revision 1.349
diff -u -r1.348 -r1.349
--- ChangeLog   20 Jun 2014 14:45:22 -  1.348
+++ ChangeLog   5 Jul 2014 12:40:53 -   1.349
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/pulseaudio
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/pulseaudio/ChangeLog,v 1.348 
2014/06/20 14:45:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/pulseaudio/ChangeLog,v 1.349 
2014/07/05 12:40:53 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org pulseaudio-5.0-r2.ebuild:
+  Stable for ia64, wrt bug #512516
 
   20 Jun 2014; Agostino Sarubbo a...@gentoo.org pulseaudio-5.0-r1.ebuild:
   Stable for arm, wrt bug #508862






[gentoo-commits] gentoo-x86 commit in net-misc/stunnel: stunnel-5.02.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:40:39

  Modified: stunnel-5.02.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #503506
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.8  net-misc/stunnel/stunnel-5.02.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.02.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.02.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.02.ebuild?r1=1.7r2=1.8

Index: stunnel-5.02.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.02.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- stunnel-5.02.ebuild 17 Jun 2014 10:41:19 -  1.7
+++ stunnel-5.02.ebuild 5 Jul 2014 12:40:39 -   1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.02.ebuild,v 1.7 
2014/06/17 10:41:19 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.02.ebuild,v 1.8 
2014/07/05 12:40:39 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x86-macos
 IUSE=ipv6 selinux tcpd
 
 DEPEND=tcpd? ( sys-apps/tcp-wrappers )



1.173net-misc/stunnel/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog   17 Jun 2014 10:41:19 -  1.172
+++ ChangeLog   5 Jul 2014 12:40:39 -   1.173
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/stunnel
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.172 
2014/06/17 10:41:19 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.173 
2014/07/05 12:40:39 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org stunnel-5.02.ebuild:
+  Stable for ia64, wrt bug #503506
 
   17 Jun 2014; Tobias Klausmann klaus...@gentoo.org stunnel-5.02.ebuild:
   Stable on alpha, bug #503506






[gentoo-commits] gentoo-x86 commit in dev-libs/lzo: lzo-2.08.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:40:57

  Modified: lzo-2.08.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #515238
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  dev-libs/lzo/lzo-2.08.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild?r1=1.5r2=1.6

Index: lzo-2.08.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- lzo-2.08.ebuild 5 Jul 2014 11:31:51 -   1.5
+++ lzo-2.08.ebuild 5 Jul 2014 12:40:57 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v 1.5 
2014/07/05 11:31:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v 1.6 
2014/07/05 12:40:57 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=2
-KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=examples static-libs
 
 RDEPEND=abi_x86_32? (



1.85 dev-libs/lzo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.85view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.85content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?r1=1.84r2=1.85

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog   5 Jul 2014 11:31:51 -   1.84
+++ ChangeLog   5 Jul 2014 12:40:57 -   1.85
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/lzo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.84 2014/07/05 
11:31:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.85 2014/07/05 
12:40:57 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org lzo-2.08.ebuild:
+  Stable for ia64, wrt bug #515238
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org lzo-2.08.ebuild:
   Stable for alpha, wrt bug #515238






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

2014-07-05 Thread Andreas HAttel (dilfridge)
dilfridge14/07/05 12:43:23

  Modified: ChangeLog package.mask
  Log:
  Last-rite virtual/perl-Class-ISA

Revision  ChangesPath
1.9145   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9144
retrieving revision 1.9145
diff -u -r1.9144 -r1.9145
--- ChangeLog   5 Jul 2014 12:39:53 -   1.9144
+++ ChangeLog   5 Jul 2014 12:43:22 -   1.9145
@@ -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.9144 2014/07/05 
12:39:53 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9145 2014/07/05 
12:43:22 dilfridge 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!
 
+  05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org package.mask:
+  Last-rite virtual/perl-Class-ISA
+
   05 Jul 2014; Andreas K. Huettel dilfri...@gentoo.org updates/2Q-2014:
   Move Class-ISA from perl-core to dev-perl
 



1.15840  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15839
retrieving revision 1.15840
diff -u -r1.15839 -r1.15840
--- package.mask5 Jul 2014 12:22:33 -   1.15839
+++ package.mask5 Jul 2014 12:43:22 -   1.15840
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15839 2014/07/05 
12:22:33 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15840 2014/07/05 
12:43:22 dilfridge 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
@@ -30,6 +30,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas K. Huettel dilfri...@gentoo.org (05 Jul 2014)
+# Class::ISA is long gone from core Perl, thus the package
+# was moved from perl-core to dev-perl and the virtual will be
+# removed. Please depend on dev-perl/Class-ISA directly.
+virtual/perl-Class-ISA
+
 # Michael Sterrett mr_bon...@gentoo.org (02 Jul 2014)
 # No longer maintained upstream.
 # Masked for removal on 20140801.






[gentoo-commits] gentoo-x86 commit in dev-libs/openssl: openssl-1.0.0m.ebuild openssl-0.9.8z_p1-r1.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:43:50

  Modified: openssl-1.0.0m.ebuild openssl-0.9.8z_p1-r1.ebuild
ChangeLog
  Log:
  Stable for ia64, wrt bug #512506
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  dev-libs/openssl/openssl-1.0.0m.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild?r1=1.5r2=1.6

Index: openssl-1.0.0m.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- openssl-1.0.0m.ebuild   24 Jun 2014 19:16:46 -  1.5
+++ openssl-1.0.0m.ebuild   5 Jul 2014 12:43:50 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v 
1.5 2014/06/24 19:16:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v 
1.6 2014/07/05 12:43:50 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE=openssl
 SLOT=0
-KEYWORDS=alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
+KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
 IUSE=bindist gmp kerberos rfc3779 sse2 static-libs test zlib
 
 # Have the sub-libs in RDEPEND with [static-libs] since, logically,



1.7  dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild?r1=1.6r2=1.7

Index: openssl-0.9.8z_p1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- openssl-0.9.8z_p1-r1.ebuild 24 Jun 2014 19:16:22 -  1.6
+++ openssl-0.9.8z_p1-r1.ebuild 5 Jul 2014 12:43:50 -   1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v 1.6 
2014/06/24 19:16:22 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v 1.7 
2014/07/05 12:43:50 ago Exp $
 
 # this ebuild is only for the libcrypto.so.0.9.8 and libssl.so.0.9.8 SONAME 
for ABI compat
 
@@ -18,7 +18,7 @@
 
 LICENSE=openssl
 SLOT=0.9.8
-KEYWORDS=alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
+KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
 IUSE=bindist gmp kerberos sse2 test zlib
 
 RDEPEND=gmp? ( dev-libs/gmp )



1.561dev-libs/openssl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.560
retrieving revision 1.561
diff -u -r1.560 -r1.561
--- ChangeLog   24 Jun 2014 19:16:46 -  1.560
+++ ChangeLog   5 Jul 2014 12:43:50 -   1.561
@@ -1,6 +1,10 @@
 # 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.560 
2014/06/24 19:16:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.561 
2014/07/05 12:43:50 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org openssl-0.9.8z_p1-r1.ebuild,
+  openssl-1.0.0m.ebuild, openssl-1.0.1h-r1.ebuild:
+  Stable for ia64, wrt bug #512506
 
   24 Jun 2014; Markus Meier mae...@gentoo.org openssl-1.0.0m.ebuild:
   arm stable, bug #512506






[gentoo-commits] gentoo-x86 commit in dev-libs/openssl: openssl-1.0.0m.ebuild openssl-0.9.8z_p1-r1.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:44:32

  Modified: openssl-1.0.0m.ebuild openssl-0.9.8z_p1-r1.ebuild
ChangeLog
  Log:
  Stable for ppc, wrt bug #512506
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  dev-libs/openssl/openssl-1.0.0m.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild?r1=1.6r2=1.7

Index: openssl-1.0.0m.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- openssl-1.0.0m.ebuild   5 Jul 2014 12:43:50 -   1.6
+++ openssl-1.0.0m.ebuild   5 Jul 2014 12:44:32 -   1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v 
1.6 2014/07/05 12:43:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v 
1.7 2014/07/05 12:44:32 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE=openssl
 SLOT=0
-KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
+KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
 IUSE=bindist gmp kerberos rfc3779 sse2 static-libs test zlib
 
 # Have the sub-libs in RDEPEND with [static-libs] since, logically,



1.8  dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild

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

Index: openssl-0.9.8z_p1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- openssl-0.9.8z_p1-r1.ebuild 5 Jul 2014 12:43:50 -   1.7
+++ openssl-0.9.8z_p1-r1.ebuild 5 Jul 2014 12:44:32 -   1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v 1.7 
2014/07/05 12:43:50 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v 1.8 
2014/07/05 12:44:32 ago Exp $
 
 # this ebuild is only for the libcrypto.so.0.9.8 and libssl.so.0.9.8 SONAME 
for ABI compat
 
@@ -18,7 +18,7 @@
 
 LICENSE=openssl
 SLOT=0.9.8
-KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
+KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
 IUSE=bindist gmp kerberos sse2 test zlib
 
 RDEPEND=gmp? ( dev-libs/gmp )



1.562dev-libs/openssl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.561
retrieving revision 1.562
diff -u -r1.561 -r1.562
--- ChangeLog   5 Jul 2014 12:43:50 -   1.561
+++ ChangeLog   5 Jul 2014 12:44:32 -   1.562
@@ -1,6 +1,10 @@
 # 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.561 
2014/07/05 12:43:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.562 
2014/07/05 12:44:32 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org openssl-0.9.8z_p1-r1.ebuild,
+  openssl-1.0.0m.ebuild, openssl-1.0.1h-r1.ebuild:
+  Stable for ppc, wrt bug #512506
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org openssl-0.9.8z_p1-r1.ebuild,
   openssl-1.0.0m.ebuild, openssl-1.0.1h-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/openssl: openssl-1.0.0m.ebuild openssl-0.9.8z_p1-r1.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:45:21

  Modified: openssl-1.0.0m.ebuild openssl-0.9.8z_p1-r1.ebuild
ChangeLog
  Log:
  Stable for sparc, wrt bug #512506
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=sparc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.9  dev-libs/openssl/openssl-1.0.0m.ebuild

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

Index: openssl-1.0.0m.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- openssl-1.0.0m.ebuild   5 Jul 2014 12:44:57 -   1.8
+++ openssl-1.0.0m.ebuild   5 Jul 2014 12:45:20 -   1.9
@@ -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-libs/openssl/openssl-1.0.0m.ebuild,v 
1.8 2014/07/05 12:44:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v 
1.9 2014/07/05 12:45:20 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE=openssl
 SLOT=0
-KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
+KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 
~sparc-fbsd ~x86-fbsd
 IUSE=bindist gmp kerberos rfc3779 sse2 static-libs test zlib
 
 # Have the sub-libs in RDEPEND with [static-libs] since, logically,



1.10 dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild?r1=1.9r2=1.10

Index: openssl-0.9.8z_p1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- openssl-0.9.8z_p1-r1.ebuild 5 Jul 2014 12:44:57 -   1.9
+++ openssl-0.9.8z_p1-r1.ebuild 5 Jul 2014 12:45:20 -   1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v 1.9 
2014/07/05 12:44:57 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v 1.10 
2014/07/05 12:45:20 ago Exp $
 
 # this ebuild is only for the libcrypto.so.0.9.8 and libssl.so.0.9.8 SONAME 
for ABI compat
 
@@ -18,7 +18,7 @@
 
 LICENSE=openssl
 SLOT=0.9.8
-KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
+KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 
~sparc-fbsd ~x86-fbsd
 IUSE=bindist gmp kerberos sse2 test zlib
 
 RDEPEND=gmp? ( dev-libs/gmp )



1.564dev-libs/openssl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.563
retrieving revision 1.564
diff -u -r1.563 -r1.564
--- ChangeLog   5 Jul 2014 12:44:57 -   1.563
+++ ChangeLog   5 Jul 2014 12:45:20 -   1.564
@@ -1,6 +1,10 @@
 # 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.563 
2014/07/05 12:44:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.564 
2014/07/05 12:45:20 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org openssl-0.9.8z_p1-r1.ebuild,
+  openssl-1.0.0m.ebuild, openssl-1.0.1h-r1.ebuild:
+  Stable for sparc, wrt bug #512506
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org openssl-0.9.8z_p1-r1.ebuild,
   openssl-1.0.0m.ebuild, openssl-1.0.1h-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/openssl: openssl-0.9.8z_p1-r1.ebuild openssl-1.0.0m.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:44:57

  Modified: openssl-0.9.8z_p1-r1.ebuild openssl-1.0.0m.ebuild
ChangeLog
  Log:
  Stable for ppc64, wrt bug #512506
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.9  dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild

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

Index: openssl-0.9.8z_p1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- openssl-0.9.8z_p1-r1.ebuild 5 Jul 2014 12:44:32 -   1.8
+++ openssl-0.9.8z_p1-r1.ebuild 5 Jul 2014 12:44:57 -   1.9
@@ -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-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v 1.8 
2014/07/05 12:44:32 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p1-r1.ebuild,v 1.9 
2014/07/05 12:44:57 ago Exp $
 
 # this ebuild is only for the libcrypto.so.0.9.8 and libssl.so.0.9.8 SONAME 
for ABI compat
 
@@ -18,7 +18,7 @@
 
 LICENSE=openssl
 SLOT=0.9.8
-KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
+KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
 IUSE=bindist gmp kerberos sse2 test zlib
 
 RDEPEND=gmp? ( dev-libs/gmp )



1.8  dev-libs/openssl/openssl-1.0.0m.ebuild

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

Index: openssl-1.0.0m.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- openssl-1.0.0m.ebuild   5 Jul 2014 12:44:32 -   1.7
+++ openssl-1.0.0m.ebuild   5 Jul 2014 12:44:57 -   1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v 
1.7 2014/07/05 12:44:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.0m.ebuild,v 
1.8 2014/07/05 12:44:57 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE=openssl
 SLOT=0
-KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
+KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd
 IUSE=bindist gmp kerberos rfc3779 sse2 static-libs test zlib
 
 # Have the sub-libs in RDEPEND with [static-libs] since, logically,



1.563dev-libs/openssl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.562
retrieving revision 1.563
diff -u -r1.562 -r1.563
--- ChangeLog   5 Jul 2014 12:44:32 -   1.562
+++ ChangeLog   5 Jul 2014 12:44:57 -   1.563
@@ -1,6 +1,10 @@
 # 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.562 
2014/07/05 12:44:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.563 
2014/07/05 12:44:57 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org openssl-0.9.8z_p1-r1.ebuild,
+  openssl-1.0.0m.ebuild, openssl-1.0.1h-r1.ebuild:
+  Stable for ppc64, wrt bug #512506
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org openssl-0.9.8z_p1-r1.ebuild,
   openssl-1.0.0m.ebuild, openssl-1.0.1h-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in www-client/firefox: firefox-24.6.0.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:46:48

  Modified: firefox-24.6.0.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #512896
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  www-client/firefox/firefox-24.6.0.ebuild

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

Index: firefox-24.6.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-24.6.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- firefox-24.6.0.ebuild   15 Jun 2014 08:33:52 -  1.4
+++ firefox-24.6.0.ebuild   5 Jul 2014 12:46:48 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-24.6.0.ebuild,v 
1.4 2014/06/15 08:33:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-24.6.0.ebuild,v 
1.5 2014/07/05 12:46:48 ago Exp $
 
 EAPI=5
 VIRTUALX_REQUIRED=pgo
@@ -36,7 +36,7 @@
 DESCRIPTION=Firefox Web Browser
 HOMEPAGE=http://www.mozilla.com/firefox;
 
-KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux
 SLOT=0
 LICENSE=MPL-2.0 GPL-2 LGPL-2.1
 IUSE=bindist gstreamer +jit +minimal pgo pulseaudio selinux system-cairo 
system-icu system-jpeg system-sqlite test



1.339www-client/firefox/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.339view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.339content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?r1=1.338r2=1.339

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v
retrieving revision 1.338
retrieving revision 1.339
diff -u -r1.338 -r1.339
--- ChangeLog   15 Jun 2014 08:33:52 -  1.338
+++ ChangeLog   5 Jul 2014 12:46:48 -   1.339
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/firefox
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.338 
2014/06/15 08:33:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.339 
2014/07/05 12:46:48 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org firefox-24.6.0.ebuild:
+  Stable for ppc, wrt bug #512896
 
   15 Jun 2014; Agostino Sarubbo a...@gentoo.org firefox-24.6.0.ebuild:
   Stable for x86, wrt bug #512896






[gentoo-commits] gentoo-x86 commit in dev-libs/nspr: nspr-4.10.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:46:36

  Modified: nspr-4.10.6.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #512896
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  dev-libs/nspr/nspr-4.10.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild?r1=1.6r2=1.7

Index: nspr-4.10.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nspr-4.10.6.ebuild  5 Jul 2014 11:31:46 -   1.6
+++ nspr-4.10.6.ebuild  5 Jul 2014 12:46:36 -   1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v 1.6 
2014/07/05 11:31:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v 1.7 
2014/07/05 12:46:36 ago Exp $
 
 EAPI=5
 WANT_AUTOCONF=2.5
@@ -15,7 +15,7 @@
 
 LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 )
 SLOT=0
-KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=debug
 
 src_prepare() {



1.272dev-libs/nspr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.272view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.272content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?r1=1.271r2=1.272

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v
retrieving revision 1.271
retrieving revision 1.272
diff -u -r1.271 -r1.272
--- ChangeLog   5 Jul 2014 11:31:46 -   1.271
+++ ChangeLog   5 Jul 2014 12:46:36 -   1.272
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nspr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.271 2014/07/05 
11:31:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.272 2014/07/05 
12:46:36 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6.ebuild:
+  Stable for ppc, wrt bug #512896
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6.ebuild:
   Stable for alpha, wrt bug #512896






[gentoo-commits] gentoo-x86 commit in dev-libs/nspr: nspr-4.10.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:47:18

  Modified: nspr-4.10.6.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #512896
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.8  dev-libs/nspr/nspr-4.10.6.ebuild

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

Index: nspr-4.10.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- nspr-4.10.6.ebuild  5 Jul 2014 12:46:36 -   1.7
+++ nspr-4.10.6.ebuild  5 Jul 2014 12:47:18 -   1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v 1.7 
2014/07/05 12:46:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v 1.8 
2014/07/05 12:47:18 ago Exp $
 
 EAPI=5
 WANT_AUTOCONF=2.5
@@ -15,7 +15,7 @@
 
 LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 )
 SLOT=0
-KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=debug
 
 src_prepare() {



1.273dev-libs/nspr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.273view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.273content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?r1=1.272r2=1.273

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v
retrieving revision 1.272
retrieving revision 1.273
diff -u -r1.272 -r1.273
--- ChangeLog   5 Jul 2014 12:46:36 -   1.272
+++ ChangeLog   5 Jul 2014 12:47:18 -   1.273
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nspr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.272 2014/07/05 
12:46:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.273 2014/07/05 
12:47:18 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6.ebuild:
+  Stable for ppc64, wrt bug #512896
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6.ebuild:
   Stable for ppc, wrt bug #512896






[gentoo-commits] gentoo-x86 commit in dev-libs/nspr: nspr-4.10.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:47:52

  Modified: nspr-4.10.6.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #512896
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.9  dev-libs/nspr/nspr-4.10.6.ebuild

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

Index: nspr-4.10.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nspr-4.10.6.ebuild  5 Jul 2014 12:47:18 -   1.8
+++ nspr-4.10.6.ebuild  5 Jul 2014 12:47:52 -   1.9
@@ -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-libs/nspr/nspr-4.10.6.ebuild,v 1.8 
2014/07/05 12:47:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6.ebuild,v 1.9 
2014/07/05 12:47:52 ago Exp $
 
 EAPI=5
 WANT_AUTOCONF=2.5
@@ -15,7 +15,7 @@
 
 LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 )
 SLOT=0
-KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=debug
 
 src_prepare() {



1.274dev-libs/nspr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.274view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.274content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?r1=1.273r2=1.274

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v
retrieving revision 1.273
retrieving revision 1.274
diff -u -r1.273 -r1.274
--- ChangeLog   5 Jul 2014 12:47:18 -   1.273
+++ ChangeLog   5 Jul 2014 12:47:52 -   1.274
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nspr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.273 2014/07/05 
12:47:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.274 2014/07/05 
12:47:52 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6.ebuild:
+  Stable for ia64, wrt bug #512896
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6.ebuild:
   Stable for ppc64, wrt bug #512896






[gentoo-commits] gentoo-x86 commit in mail-client/thunderbird: thunderbird-24.6.0.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:47:22

  Modified: thunderbird-24.6.0.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #512896
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  mail-client/thunderbird/thunderbird-24.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/thunderbird-24.6.0.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/thunderbird-24.6.0.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/thunderbird-24.6.0.ebuild?r1=1.5r2=1.6

Index: thunderbird-24.6.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-24.6.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- thunderbird-24.6.0.ebuild   5 Jul 2014 12:46:42 -   1.5
+++ thunderbird-24.6.0.ebuild   5 Jul 2014 12:47:22 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-24.6.0.ebuild,v 1.5 
2014/07/05 12:46:42 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-24.6.0.ebuild,v 1.6 
2014/07/05 12:47:22 ago Exp $
 
 EAPI=5
 WANT_AUTOCONF=2.1
@@ -34,7 +34,7 @@
 DESCRIPTION=Thunderbird Mail Client
 HOMEPAGE=http://www.mozilla.com/en-US/thunderbird/;
 
-KEYWORDS=~alpha amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux
+KEYWORDS=~alpha amd64 ~arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux
 SLOT=0
 LICENSE=MPL-2.0 GPL-2 LGPL-2.1
 IUSE=bindist crypt gstreamer +jit ldap +lightning +minimal mozdom pulseaudio 
selinux system-cairo system-icu system-jpeg system-sqlite



1.287mail-client/thunderbird/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/ChangeLog?rev=1.287view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/ChangeLog?rev=1.287content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/ChangeLog?r1=1.286r2=1.287

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-client/thunderbird/ChangeLog,v
retrieving revision 1.286
retrieving revision 1.287
diff -u -r1.286 -r1.287
--- ChangeLog   5 Jul 2014 12:46:42 -   1.286
+++ ChangeLog   5 Jul 2014 12:47:22 -   1.287
@@ -1,6 +1,9 @@
 # ChangeLog for mail-client/thunderbird
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/ChangeLog,v 1.286 
2014/07/05 12:46:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/ChangeLog,v 1.287 
2014/07/05 12:47:22 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org thunderbird-24.6.0.ebuild:
+  Stable for ppc64, wrt bug #512896
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org thunderbird-24.6.0.ebuild:
   Stable for ppc, wrt bug #512896






[gentoo-commits] gentoo-x86 commit in dev-libs/nss: nss-3.16.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:48:53

  Modified: nss-3.16.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #505072
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.10 dev-libs/nss/nss-3.16.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/nss-3.16.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/nss-3.16.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/nss-3.16.ebuild?r1=1.9r2=1.10

Index: nss-3.16.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.16.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nss-3.16.ebuild 31 Mar 2014 17:11:39 -  1.9
+++ nss-3.16.ebuild 5 Jul 2014 12:48:53 -   1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.16.ebuild,v 1.9 
2014/03/31 17:11:39 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.16.ebuild,v 1.10 
2014/07/05 12:48:53 ago Exp $
 
 EAPI=5
 inherit eutils flag-o-matic multilib toolchain-funcs
@@ -19,7 +19,7 @@
 
 LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 )
 SLOT=0
-KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=+cacert +nss-pem utils
 
 DEPEND=virtual/pkgconfig



1.368dev-libs/nss/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/ChangeLog?rev=1.368view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/ChangeLog?rev=1.368content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/ChangeLog?r1=1.367r2=1.368

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v
retrieving revision 1.367
retrieving revision 1.368
diff -u -r1.367 -r1.368
--- ChangeLog   4 Jul 2014 19:51:37 -   1.367
+++ ChangeLog   5 Jul 2014 12:48:53 -   1.368
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nss
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.367 2014/07/04 
19:51:37 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.368 2014/07/05 
12:48:53 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org nss-3.16.ebuild:
+  Stable for ia64, wrt bug #505072
 
   04 Jul 2014; Ian Stakenvicius (_AxS_) a...@gentoo.org nss-3.16.1.ebuild:
   fixed whatever strange environment issue it was that caused bug 516244






[gentoo-commits] gentoo-x86 commit in dev-haskell/httpd-shed: ChangeLog httpd-shed-0.4-r1.ebuild

2014-07-05 Thread Tobias Klausmann (klausman)
klausman14/07/05 12:48:57

  Modified: ChangeLog httpd-shed-0.4-r1.ebuild
  Log:
  Stable on alpha, bug #495382
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
CE5D54E8)

Revision  ChangesPath
1.16 dev-haskell/httpd-shed/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/httpd-shed/ChangeLog?rev=1.16view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/httpd-shed/ChangeLog?rev=1.16content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/httpd-shed/ChangeLog?r1=1.15r2=1.16

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/httpd-shed/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   2 Jul 2014 11:04:53 -   1.15
+++ ChangeLog   5 Jul 2014 12:48:57 -   1.16
@@ -1,6 +1,9 @@
 # ChangeLog for dev-haskell/httpd-shed
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/httpd-shed/ChangeLog,v 1.15 
2014/07/02 11:04:53 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/httpd-shed/ChangeLog,v 1.16 
2014/07/05 12:48:57 klausman Exp $
+
+  05 Jul 2014; Tobias Klausmann klaus...@gentoo.org httpd-shed-0.4-r1.ebuild:
+  Stable on alpha, bug #495382
 
 *httpd-shed-0.4.0.2 (02 Jul 2014)
 



1.8  dev-haskell/httpd-shed/httpd-shed-0.4-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/httpd-shed/httpd-shed-0.4-r1.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/httpd-shed/httpd-shed-0.4-r1.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/httpd-shed/httpd-shed-0.4-r1.ebuild?r1=1.7r2=1.8

Index: httpd-shed-0.4-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-haskell/httpd-shed/httpd-shed-0.4-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- httpd-shed-0.4-r1.ebuild24 Mar 2014 15:06:09 -  1.7
+++ httpd-shed-0.4-r1.ebuild5 Jul 2014 12:48:57 -   1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-haskell/httpd-shed/httpd-shed-0.4-r1.ebuild,v 1.7 
2014/03/24 15:06:09 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-haskell/httpd-shed/httpd-shed-0.4-r1.ebuild,v 1.8 
2014/07/05 12:48:57 klausman Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=BSD
 SLOT=0/${PV}
-KEYWORDS=~alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~ppc-macos 
~x86-macos
+KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~ppc-macos ~x86-macos
 IUSE=
 
 RDEPEND=dev-haskell/network:=[profile?]






[gentoo-commits] gentoo-x86 commit in dev-libs/libtasn1: libtasn1-3.6.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:51:23

  Modified: libtasn1-3.6.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #511536
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.11 dev-libs/libtasn1/libtasn1-3.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild?r1=1.10r2=1.11

Index: libtasn1-3.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libtasn1-3.6.ebuild 5 Jul 2014 12:40:34 -   1.10
+++ libtasn1-3.6.ebuild 5 Jul 2014 12:51:23 -   1.11
@@ -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-libs/libtasn1/libtasn1-3.6.ebuild,v 
1.10 2014/07/05 12:40:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild,v 
1.11 2014/07/05 12:51:23 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3 LGPL-2.1
 SLOT=0/6 # subslot = libtasn1 soname version
-KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~x64-macos
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~x64-macos
 IUSE=doc static-libs
 
 DEPEND==dev-lang/perl-5.6



1.211dev-libs/libtasn1/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.211view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.211content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?r1=1.210r2=1.211

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog   5 Jul 2014 12:40:34 -   1.210
+++ ChangeLog   5 Jul 2014 12:51:23 -   1.211
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libtasn1
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.210 
2014/07/05 12:40:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.211 
2014/07/05 12:51:23 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org libtasn1-3.6.ebuild:
+  Stable for ppc64, wrt bug #511536
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org libtasn1-3.6.ebuild:
   Stable for ia64, wrt bug #511536






[gentoo-commits] gentoo-x86 commit in dev-ruby/fcgi: fcgi-0.9.2.1.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:51:27

  Modified: fcgi-0.9.2.1.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #513052
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.10 dev-ruby/fcgi/fcgi-0.9.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fcgi/fcgi-0.9.2.1.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fcgi/fcgi-0.9.2.1.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fcgi/fcgi-0.9.2.1.ebuild?r1=1.9r2=1.10

Index: fcgi-0.9.2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/fcgi/fcgi-0.9.2.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- fcgi-0.9.2.1.ebuild 1 Jul 2014 14:08:02 -   1.9
+++ fcgi-0.9.2.1.ebuild 5 Jul 2014 12:51:27 -   1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fcgi/fcgi-0.9.2.1.ebuild,v 1.9 
2014/07/01 14:08:02 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fcgi/fcgi-0.9.2.1.ebuild,v 1.10 
2014/07/05 12:51:27 ago Exp $
 
 EAPI=5
 USE_RUBY=ruby19 ruby20 jruby
@@ -15,7 +15,7 @@
 DESCRIPTION=FastCGI library for Ruby
 HOMEPAGE=http://github.com/alphallc/ruby-fcgi-ng;
 
-KEYWORDS=alpha amd64 arm hppa ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
 LICENSE=Ruby
 
 DEPEND+= dev-libs/fcgi



1.18 dev-ruby/fcgi/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/fcgi/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   1 Jul 2014 14:08:02 -   1.17
+++ ChangeLog   5 Jul 2014 12:51:27 -   1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/fcgi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fcgi/ChangeLog,v 1.17 2014/07/01 
14:08:02 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fcgi/ChangeLog,v 1.18 2014/07/05 
12:51:27 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org fcgi-0.9.2.1.ebuild:
+  Stable for ppc64, wrt bug #513052
 
   01 Jul 2014; Tobias Klausmann klaus...@gentoo.org fcgi-0.9.2.1.ebuild:
   Stable on alpha, bug #497490






[gentoo-commits] gentoo-x86 commit in dev-python/bottle: bottle-0.11.7.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:51:15

  Modified: bottle-0.11.7.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #509350
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  dev-python/bottle/bottle-0.11.7.ebuild

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

Index: bottle-0.11.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bottle-0.11.7.ebuild5 Jul 2014 12:39:45 -   1.5
+++ bottle-0.11.7.ebuild5 Jul 2014 12:51:15 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v 
1.5 2014/07/05 12:39:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v 
1.6 2014/07/05 12:51:15 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=alpha amd64 ~arm ia64 ~ppc ~ppc64 ~sparc x86
+KEYWORDS=alpha amd64 ~arm ia64 ~ppc ppc64 ~sparc x86
 IUSE=
 
 DEPEND=



1.32 dev-python/bottle/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   5 Jul 2014 12:39:45 -   1.31
+++ ChangeLog   5 Jul 2014 12:51:15 -   1.32
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/bottle
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.31 
2014/07/05 12:39:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.32 
2014/07/05 12:51:15 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org bottle-0.11.7.ebuild:
+  Stable for ppc64, wrt bug #509350
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org bottle-0.11.7.ebuild:
   Stable for ia64, wrt bug #509350






[gentoo-commits] gentoo-x86 commit in dev-libs/lzo: lzo-2.08.ebuild ChangeLog

2014-07-05 Thread Agostino Sarubbo (ago)
ago 14/07/05 12:51:11

  Modified: lzo-2.08.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #515238
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  dev-libs/lzo/lzo-2.08.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild?r1=1.6r2=1.7

Index: lzo-2.08.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- lzo-2.08.ebuild 5 Jul 2014 12:40:57 -   1.6
+++ lzo-2.08.ebuild 5 Jul 2014 12:51:11 -   1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v 1.6 
2014/07/05 12:40:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v 1.7 
2014/07/05 12:51:11 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=2
-KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=examples static-libs
 
 RDEPEND=abi_x86_32? (



1.86 dev-libs/lzo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.86view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.86content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?r1=1.85r2=1.86

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog   5 Jul 2014 12:40:57 -   1.85
+++ ChangeLog   5 Jul 2014 12:51:11 -   1.86
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/lzo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.85 2014/07/05 
12:40:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.86 2014/07/05 
12:51:11 ago Exp $
+
+  05 Jul 2014; Agostino Sarubbo a...@gentoo.org lzo-2.08.ebuild:
+  Stable for ppc64, wrt bug #515238
 
   05 Jul 2014; Agostino Sarubbo a...@gentoo.org lzo-2.08.ebuild:
   Stable for ia64, wrt bug #515238






  1   2   3   >