[gentoo-commits] gentoo-x86 commit in dev-ruby/rails-observers/files: - New directory

2014-10-18 Thread Hans de Graaff (graaff)
graaff  14/10/18 07:53:16

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-ruby/rails-observers/files added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-ruby/rails-observers/files: rails-observers-0.1.2-fix-tests.patch

2014-10-18 Thread Hans de Graaff (graaff)
graaff  14/10/18 07:53:29

  Added:rails-observers-0.1.2-fix-tests.patch
  Log:
  Fix tests.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.1  
dev-ruby/rails-observers/files/rails-observers-0.1.2-fix-tests.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rails-observers/files/rails-observers-0.1.2-fix-tests.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rails-observers/files/rails-observers-0.1.2-fix-tests.patch?rev=1.1content-type=text/plain

Index: rails-observers-0.1.2-fix-tests.patch
===
commit 0757380fb62bc80ab7f1867b36d8a8b77ad3ed5f
Author: Simon Jesenko simon.jese...@gmail.com
Date:   Fri Jul 18 08:00:52 2014 +0200

fixing tests, substituting ActiveRecord::TestCase with 
ActiveSupport::TestCase

diff --git a/test/helper.rb b/test/helper.rb
index b30895f..b0a647e 100644
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -1,6 +1,6 @@
 require 'minitest/autorun'
 require 'active_record'
-
+require 'rails'
 require 'rails/observers/activerecord/active_record'
 
 FIXTURES_ROOT = File.expand_path(File.dirname(__FILE__)) + /fixtures
@@ -68,7 +68,3 @@ end
 
 class Minimalistic  ActiveRecord::Base
 end
-
-ActiveSupport::Deprecation.silence do
-  require 'active_record/test_case'
-end
diff --git a/test/lifecycle_test.rb b/test/lifecycle_test.rb
index 5129670..fb55206 100644
--- a/test/lifecycle_test.rb
+++ b/test/lifecycle_test.rb
@@ -118,7 +118,7 @@ class AroundTopicObserver  ActiveRecord::Observer
   end
 end
 
-class LifecycleTest  ActiveRecord::TestCase
+class LifecycleTest  ActiveSupport::TestCase
   fixtures :topics, :developers, :minimalistics
 
   def test_before_destroy
diff --git a/test/observing_test.rb b/test/observing_test.rb
index a7f63dc..120d531 100644
--- a/test/observing_test.rb
+++ b/test/observing_test.rb
@@ -32,6 +32,16 @@ end
 class ObservingTest  ActiveModel::TestCase
   def setup
 ObservedModel.observers.clear
+FooObserver.singleton_class.instance_eval do
+  alias_method :original_observed_classes, :observed_classes
+end
+  end
+
+  def teardown
+FooObserver.singleton_class.instance_eval do
+  undef_method :observed_classes
+  alias_method :observed_classes, :original_observed_classes
+end
   end
 
   test initializes model with no cached observers do
diff --git a/test/transaction_callbacks_test.rb 
b/test/transaction_callbacks_test.rb
index 8f14cd3..30cbb03 100644
--- a/test/transaction_callbacks_test.rb
+++ b/test/transaction_callbacks_test.rb
@@ -1,6 +1,6 @@
 require helper
 
-class TransactionCallbacksTest  ActiveRecord::TestCase
+class TransactionCallbacksTest  ActiveSupport::TestCase
   self.use_transactional_fixtures = false
   fixtures :topics
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/rails-observers: rails-observers-0.1.2.ebuild ChangeLog

2014-10-18 Thread Hans de Graaff (graaff)
graaff  14/10/18 07:53:29

  Modified: rails-observers-0.1.2.ebuild ChangeLog
  Log:
  Fix tests.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.3  dev-ruby/rails-observers/rails-observers-0.1.2.ebuild

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

Index: rails-observers-0.1.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/rails-observers/rails-observers-0.1.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rails-observers-0.1.2.ebuild4 Sep 2014 14:07:48 -   1.2
+++ rails-observers-0.1.2.ebuild18 Oct 2014 07:53:29 -  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-ruby/rails-observers/rails-observers-0.1.2.ebuild,v 
1.2 2014/09/04 14:07:48 graaff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/rails-observers/rails-observers-0.1.2.ebuild,v 
1.3 2014/10/18 07:53:29 graaff Exp $
 
 EAPI=5
 
@@ -23,6 +23,8 @@
 KEYWORDS=~amd64
 IUSE=
 
+RUBY_PATCHES=( ${P}-fix-tests.patch )
+
 ruby_add_rdepend =dev-ruby/activemodel-4*
 
 ruby_add_bdepend 
@@ -35,3 +37,8 @@
=dev-ruby/actionpack-4*
=dev-ruby/sqlite3-1.3
)
+
+all_ruby_prepare() {
+   # Avoid rake test since it will run with the wrong ruby interpreter.
+   rm test/rake_test.rb || die
+}



1.3  dev-ruby/rails-observers/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails-observers/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   4 Sep 2014 14:07:48 -   1.2
+++ ChangeLog   18 Oct 2014 07:53:29 -  1.3
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/rails-observers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails-observers/ChangeLog,v 1.2 
2014/09/04 14:07:48 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails-observers/ChangeLog,v 1.3 
2014/10/18 07:53:29 graaff Exp $
+
+  18 Oct 2014; Hans de Graaff gra...@gentoo.org rails-observers-0.1.2.ebuild,
+  +files/rails-observers-0.1.2-fix-tests.patch:
+  Fix tests.
 
   04 Sep 2014; Hans de Graaff gra...@gentoo.org rails-observers-0.1.2.ebuild:
   Add ruby20, ruby21.






[gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: libxml2-2.9.2.ebuild ChangeLog

2014-10-18 Thread Pacho Ramos (pacho)
pacho   14/10/18 08:23:48

  Modified: ChangeLog
  Added:libxml2-2.9.2.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.428dev-libs/libxml2/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.427
retrieving revision 1.428
diff -u -r1.427 -r1.428
--- ChangeLog   3 Sep 2014 09:51:22 -   1.427
+++ ChangeLog   18 Oct 2014 08:23:48 -  1.428
@@ -1,6 +1,14 @@
 # ChangeLog for dev-libs/libxml2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.427 
2014/09/03 09:51:22 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.428 
2014/10/18 08:23:48 pacho Exp $
+
+*libxml2-2.9.2 (18 Oct 2014)
+
+  18 Oct 2014; Pacho Ramos pa...@gentoo.org
+  +files/libxml2-2.9.2-icu-pkgconfig.patch,
+  +files/libxml2-2.9.2-revert-missing-initialization.patch,
+  +libxml2-2.9.2.ebuild:
+  Version bump
 
 *libxml2-2.9.1-r5 (03 Sep 2014)
 



1.1  dev-libs/libxml2/libxml2-2.9.2.ebuild

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

Index: libxml2-2.9.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.9.2.ebuild,v 1.1 
2014/10/18 08:23:48 pacho Exp $

EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
PYTHON_REQ_USE=xml

inherit libtool flag-o-matic eutils python-r1 autotools prefix multilib-minimal

DESCRIPTION=Version 2 of the library to manipulate XML files
HOMEPAGE=http://www.xmlsoft.org/;

LICENSE=MIT
SLOT=2
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~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 ~x86-winnt
IUSE=debug examples icu ipv6 lzma python readline static-libs test

XSTS_HOME=http://www.w3.org/XML/2004/xml-schema-test-suite;
XSTS_NAME_1=xmlschema2002-01-16
XSTS_NAME_2=xmlschema2004-01-14
XSTS_TARBALL_1=xsts-2002-01-16.tar.gz
XSTS_TARBALL_2=xsts-2004-01-14.tar.gz
XMLCONF_TARBALL=xmlts20080827.tar.gz

SRC_URI=ftp://xmlsoft.org/${PN}/${PN}-${PV/_rc/-rc}.tar.gz
test? (
${XSTS_HOME}/${XSTS_NAME_1}/${XSTS_TARBALL_1}
${XSTS_HOME}/${XSTS_NAME_2}/${XSTS_TARBALL_2}
http://www.w3.org/XML/Test/${XMLCONF_TARBALL} )

COMMON_DEPEND=
=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]
icu? ( =dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] )
lzma? ( =app-arch/xz-utils-5.0.5-r1:=[${MULTILIB_USEDEP}] )
python? ( ${PYTHON_DEPS} )
readline? ( sys-libs/readline:= )

RDEPEND=${COMMON_DEPEND}
abi_x86_32? ( !=app-emulation/emul-linux-x86-baselibs-20131008-r6
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )

DEPEND=${COMMON_DEPEND}
dev-util/gtk-doc-am
virtual/pkgconfig
hppa? ( =sys-devel/binutils-2.15.92.0.2 )


S=${WORKDIR}/${PN}-${PV%_rc*}

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

src_unpack() {
# ${A} isn't used to avoid unpacking of test tarballs into $WORKDIR,
# as they are needed as tarballs in ${S}/xstc instead and not unpacked
unpack ${P/_rc/-rc}.tar.gz
cd ${S}

if use test; then
cp ${DISTDIR}/${XSTS_TARBALL_1} \
${DISTDIR}/${XSTS_TARBALL_2} \
${S}/xstc/ \
|| die Failed to install test tarballs
unpack ${XMLCONF_TARBALL}
fi
}

src_prepare() {
DOCS=( AUTHORS ChangeLog NEWS README* TODO* )

# Patches needed for prefix support
epatch ${FILESDIR}/${PN}-2.7.1-catalog_path.patch
epatch ${FILESDIR}/${PN}-2.8.0_rc1-winnt.patch

eprefixify catalog.c xmlcatalog.c runtest.c xmllint.c

#   epunt_cxx # if we don't eautoreconf

# Important patches from master
epatch \

[gentoo-commits] gentoo-x86 commit in dev-libs/libxml2/files: libxml2-2.9.2-revert-missing-initialization.patch libxml2-2.9.2-icu-pkgconfig.patch

2014-10-18 Thread Pacho Ramos (pacho)
pacho   14/10/18 08:23:48

  Added:libxml2-2.9.2-revert-missing-initialization.patch
libxml2-2.9.2-icu-pkgconfig.patch
  Log:
  Version bump
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.1  
dev-libs/libxml2/files/libxml2-2.9.2-revert-missing-initialization.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/files/libxml2-2.9.2-revert-missing-initialization.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/files/libxml2-2.9.2-revert-missing-initialization.patch?rev=1.1content-type=text/plain

Index: libxml2-2.9.2-revert-missing-initialization.patch
===
From f65128f38289d77ff322d63aef2858cc0a819c34 Mon Sep 17 00:00:00 2001
From: Daniel Veillard veill...@redhat.com
Date: Fri, 17 Oct 2014 17:13:41 +0800
Subject: Revert Missing initialization for the catalog module

This reverts commit 054c716ea1bf001544127a4ab4f4346d1b9947e7.
As this break xmlcatalog command
https://bugzilla.redhat.com/show_bug.cgi?id=1153753

diff --git a/parser.c b/parser.c
index 1d93967..67c9dfd 100644
--- a/parser.c
+++ b/parser.c
@@ -14830,9 +14830,6 @@ xmlInitParser(void) {
 #ifdef LIBXML_XPATH_ENABLED
xmlXPathInit();
 #endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlInitializeCatalog();
-#endif
xmlParserInitialized = 1;
 #ifdef LIBXML_THREAD_ENABLED
 }
-- 
cgit v0.10.1




1.1  dev-libs/libxml2/files/libxml2-2.9.2-icu-pkgconfig.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/files/libxml2-2.9.2-icu-pkgconfig.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/files/libxml2-2.9.2-icu-pkgconfig.patch?rev=1.1content-type=text/plain

Index: libxml2-2.9.2-icu-pkgconfig.patch
===
diff --git a/configure.in b/configure.in
index 7374564..13c8d4e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1444,19 +1444,11 @@ XML_LIBTOOLLIBS=libxml2.la
 AC_SUBST(WITH_ICONV)
 
 WITH_ICU=0
-ICU_LIBS=
 if test $with_icu != yes ; then
 echo Disabling ICU support
 else
-ICU_CONFIG=icu-config
-if ${ICU_CONFIG} --cflags /dev/null 21
-then
-ICU_LIBS=`${ICU_CONFIG} --ldflags`
-WITH_ICU=1
-echo Enabling ICU support
-else
-AC_MSG_ERROR([libicu config program icu-config not found])
-fi
+PKG_CHECK_MODULES(ICU, icu-i18n)
+WITH_ICU=1
 fi
 AC_SUBST(WITH_ICU)
 AC_SUBST(ICU_LIBS)






[gentoo-commits] gentoo-x86 commit in app-editors/emacs: metadata.xml ChangeLog emacs-24.4_rc1.ebuild

2014-10-18 Thread Ulrich Mueller (ulm)
ulm 14/10/18 09:43:07

  Modified: metadata.xml ChangeLog
  Added:emacs-24.4_rc1.ebuild
  Log:
  Version bump, release candidate for Emacs 24.4.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 9433907D693FB5B8!)

Revision  ChangesPath
1.15 app-editors/emacs/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs/metadata.xml?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs/metadata.xml?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs/metadata.xml?r1=1.14r2=1.15

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/metadata.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- metadata.xml7 Jun 2014 10:19:07 -   1.14
+++ metadata.xml18 Oct 2014 09:43:07 -  1.15
@@ -22,6 +22,8 @@
   flag name='games'Support shared score files for games/flag
   flag name='gconf'Use pkggnome-base/gconf/pkg to read the system
 font name/flag
+  flag name='gfile'Use gfile (pkgdev-libs/glib/pkg) for file
+notification/flag
   flag name='gsettings'Use gsettings (pkgdev-libs/glib/pkg) to read the
 system font name/flag
   flag name='gtk3'Link against version 3 of the GIMP Toolkit instead of



1.641app-editors/emacs/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.640
retrieving revision 1.641
diff -u -r1.640 -r1.641
--- ChangeLog   2 Jul 2014 07:21:53 -   1.640
+++ ChangeLog   18 Oct 2014 09:43:07 -  1.641
@@ -1,6 +1,12 @@
 # ChangeLog for app-editors/emacs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.640 
2014/07/02 07:21:53 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.641 
2014/10/18 09:43:07 ulm Exp $
+
+*emacs-24.4_rc1 (18 Oct 2014)
+
+  18 Oct 2014; Ulrich Müller u...@gentoo.org +emacs-24.4_rc1.ebuild,
+  metadata.xml:
+  Version bump, release candidate for Emacs 24.4.
 
   02 Jul 2014; Ulrich Müller u...@gentoo.org emacs-18.59-r10.ebuild:
   Get rid of the abi_x86_32 USE flag, it is redundant. Remove REQUIRED_USE.



1.1  app-editors/emacs/emacs-24.4_rc1.ebuild

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

Index: emacs-24.4_rc1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-24.4_rc1.ebuild,v 
1.1 2014/10/18 09:43:07 ulm Exp $

EAPI=5

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

DESCRIPTION=The extensible, customizable, self-documenting real-time display 
editor
HOMEPAGE=http://www.gnu.org/software/emacs/;
SRC_URI=mirror://gnu-alpha/emacs/pretest/${P/_/-}.tar.xz

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

RDEPEND=sys-libs/ncurses
=app-admin/eselect-emacs-1.16
=app-emacs/emacs-common-gentoo-1.4-r1[games?,X?]
net-libs/liblockfile
acl? ( virtual/acl )
alsa? ( media-libs/alsa-lib )
dbus? ( sys-apps/dbus )
gfile? ( =dev-libs/glib-2.28.6 )
gnutls? ( net-libs/gnutls )
gpm? ( sys-libs/gpm )
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )
libxml2? ( =dev-libs/libxml2-2.2.0 )
selinux? ( sys-libs/libselinux )
zlib? ( sys-libs/zlib )
X? (
x11-libs/libXmu
x11-libs/libXt
x11-misc/xbitmaps
gconf? ( =gnome-base/gconf-2.26.2 )
gsettings? ( =dev-libs/glib-2.28.6 

[gentoo-commits] gentoo-x86 commit in dev-python/eventlet: eventlet-0.15.2.ebuild ChangeLog

2014-10-18 Thread Ian Delaney (idella4)
idella4 14/10/18 09:53:18

  Modified: ChangeLog
  Added:eventlet-0.15.2.ebuild
  Log:
  bump; drop py2.6, fix doc build, fix file collisions by tests folder, bugs 
filed upstream and entered in commented text
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.8  dev-python/eventlet/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/eventlet/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   5 Sep 2013 19:35:48 -   1.7
+++ ChangeLog   18 Oct 2014 09:53:18 -  1.8
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/eventlet
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/eventlet/ChangeLog,v 1.7 
2013/09/05 19:35:48 prometheanfire Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/eventlet/ChangeLog,v 1.8 
2014/10/18 09:53:18 idella4 Exp $
+
+*eventlet-0.15.2 (18 Oct 2014)
+
+  18 Oct 2014; Ian Delaney idel...@gentoo.org +eventlet-0.15.2.ebuild:
+  bump; drop py2.6, fix doc build, fix file collisions by tests folder, bugs
+  filed upstream and entered in commented text
 
 *eventlet-0.13.0 (05 Sep 2013)
 



1.1  dev-python/eventlet/eventlet-0.15.2.ebuild

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

Index: eventlet-0.15.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/eventlet/eventlet-0.15.2.ebuild,v 
1.1 2014/10/18 09:53:18 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=Highly concurrent networking library
HOMEPAGE=http://pypi.python.org/pypi/eventlet;
SRC_URI=mirror://pypi/e/${PN}/${P}.tar.gz

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

RDEPEND==dev-python/greenlet-0.3[${PYTHON_USEDEP}]
DEPEND=doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
=dev-python/python-docs-2.7.6-r1:2.7 )
test? ( ${RDEPEND}
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}] )

python_prepare_all() {
if use doc; then
local PYTHON_DOC_ATOM=$(best_version --host-root 
dev-python/python-docs:2.7)
local 
PYTHON_DOC_VERSION=${PYTHON_DOC_ATOM#dev-python/python-docs-}
local 
PYTHON_DOC=/usr/share/doc/python-docs-${PYTHON_DOC_VERSION}/html
local PYTHON_DOC_INVENTORY=${PYTHON_DOC}/objects.inv
sed -i s|'http://docs.python.org/': None|'${PYTHON_DOC}': 
'${PYTHON_DOC_INVENTORY}'| doc/conf.py || die
fi

# Prevent file collisions from teestsuite
sed -e s:'tests', :'tests', 'tests.*', : -i setup.py || die

distutils-r1_python_prepare_all
}

python_compile_all() {
# https://github.com/eventlet/eventlet/issues/152
use doc  emake -C doc html
}

src_test() {
# Tests bind to static addresses, bug #456920
local DISTUTILS_NO_PARALLEL_BUILD=1
distutils-r1_src_test
}

python_test() {
# Several errors 1 failure
# https://github.com/eventlet/eventlet/issues/151
nosetests || die Tests fail with ${EPYTHON}
}

python_install_all() {
use doc  local HTML_DOCS=( doc/_build/html/. )
use examples  local EXAMPLES=( examples/. )
distutils-r1_python_install_all
}






[gentoo-commits] proj/sci:int64-build-eclass commit in: /

2014-10-18 Thread Mark Wright
commit: cc60e8d1caab1b56cf059e31865e412a54097d7d
Author: gienah gienah AT gentoo DOT org
AuthorDate: Sat Oct 18 10:07:28 2014 +
Commit: Mark Wright gienah AT gentoo DOT org
CommitDate: Sat Oct 18 10:07:28 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=cc60e8d1

Merge int64-eclass branch with master. lapack-reference- builds and passes 
tests with USE=int64 xblas.


 dev-cpp/eigen/ChangeLog|   5 +
 dev-cpp/eigen/Manifest |   2 +
 .../{eigen-3.1.4.ebuild = eigen-3.2.2.ebuild} |   0
 sci-chemistry/pymol/ChangeLog  |   3 +
 sci-chemistry/pymol/pymol-.ebuild  |   6 +-
 sci-libs/dealii/ChangeLog  |   7 +
 sci-libs/dealii/Manifest   |   2 -
 sci-libs/dealii/dealii-8.0.0.ebuild|   1 -
 ...{dealii-8.1.0.ebuild = dealii-8.1.0-r1.ebuild} |   6 +-
 .../files/dealii-8.1.0-p4est1.0-support.patch  | 271 +
 sci-libs/libsc/ChangeLog   |   6 +
 sci-libs/libsc/Manifest|   2 +-
 sci-libs/libsc/libsc-0.7.3.ebuild  |  79 --
 sci-libs/libsc/libsc-1.0.ebuild|   1 -
 sci-libs/libsc/libsc-1.1.ebuild|   1 +
 sci-libs/libsc/metadata.xml|   2 +-
 sci-libs/p4est/ChangeLog   |   9 +
 sci-libs/p4est/Manifest|   2 +
 sci-libs/p4est/metadata.xml|   2 +-
 sci-libs/p4est/p4est-1.0.ebuild|   6 +-
 sci-libs/p4est/p4est-1.1.ebuild|   1 +
 sci-libs/pfft/ChangeLog|  36 +++
 sci-libs/pfft/Manifest |   1 +
 sci-libs/{bliss = pfft}/metadata.xml  |   0
 sci-libs/pfft/pfft-1.0.7_alpha.ebuild  |  54 
 sci-libs/pfft/pfft-.ebuild |  54 
 sys-cluster/openmpi/ChangeLog  |   5 +
 sys-cluster/openmpi/Manifest   |   1 +
 .../{openmpi-1.8.1.ebuild = openmpi-1.8.3.ebuild} |   0
 29 files changed, 473 insertions(+), 92 deletions(-)



[gentoo-commits] proj/sci:int64-build-eclass commit in: /

2014-10-18 Thread Mark Wright
commit: 9709669dc3f978e44a478dfe229719db96bb47f6
Author: Christoph Junghans ottxor AT gentoo DOT org
AuthorDate: Thu Oct 16 15:49:59 2014 +
Commit: Mark Wright gienah AT gentoo DOT org
CommitDate: Thu Oct 16 15:49:59 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9709669d

Merge branch 'master' of ssh://github.com/gentoo-science/sci


 sci-libs/dealii/ChangeLog  |   7 +
 sci-libs/dealii/Manifest   |   2 -
 sci-libs/dealii/dealii-8.0.0.ebuild|   1 -
 ...{dealii-8.1.0.ebuild = dealii-8.1.0-r1.ebuild} |   6 +-
 .../files/dealii-8.1.0-p4est1.0-support.patch  | 271 +
 sci-libs/libsc/ChangeLog   |   6 +
 sci-libs/libsc/Manifest|   2 +-
 sci-libs/libsc/libsc-0.7.3.ebuild  |  79 --
 sci-libs/libsc/libsc-1.0.ebuild|   1 -
 sci-libs/libsc/libsc-1.1.ebuild|   1 +
 sci-libs/libsc/metadata.xml|   2 +-
 sci-libs/p4est/ChangeLog   |   9 +
 sci-libs/p4est/Manifest|   2 +
 sci-libs/p4est/metadata.xml|   2 +-
 sci-libs/p4est/p4est-1.0.ebuild|   6 +-
 sci-libs/p4est/p4est-1.1.ebuild|   1 +
 16 files changed, 308 insertions(+), 90 deletions(-)



[gentoo-commits] proj/sci:int64-build-eclass commit in: /

2014-10-18 Thread Mark Wright
commit: c316c68b124e78d0f22423096ac66689f8e1395a
Author: Matthias Maier tamiko+GITHUB AT kyomu DOT 43-1 DOT org
AuthorDate: Tue Oct 14 08:03:47 2014 +
Commit: Mark Wright gienah AT gentoo DOT org
CommitDate: Tue Oct 14 08:03:47 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c316c68b

Merge pull request #278 from tamiko/bump_p4est

Bump sci-libs/libsc and sci-libs/p4est


 sci-libs/libsc/ChangeLog  |  6 +++
 sci-libs/libsc/Manifest   |  2 +-
 sci-libs/libsc/libsc-0.7.3.ebuild | 79 ---
 sci-libs/libsc/libsc-1.0.ebuild   |  1 -
 sci-libs/libsc/libsc-1.1.ebuild   |  1 +
 sci-libs/libsc/metadata.xml   |  2 +-
 sci-libs/p4est/ChangeLog  |  9 +
 sci-libs/p4est/Manifest   |  2 +
 sci-libs/p4est/metadata.xml   |  2 +-
 sci-libs/p4est/p4est-1.0.ebuild   |  6 +--
 sci-libs/p4est/p4est-1.1.ebuild   |  1 +
 11 files changed, 25 insertions(+), 86 deletions(-)



[gentoo-commits] gentoo-x86 commit in media-libs/freealut: freealut-1.1.0-r3.ebuild ChangeLog

2014-10-18 Thread Pacho Ramos (pacho)
pacho   14/10/18 10:13:26

  Modified: freealut-1.1.0-r3.ebuild ChangeLog
  Log:
  amd64 stable, bug #525554
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.3  media-libs/freealut/freealut-1.1.0-r3.ebuild

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

Index: freealut-1.1.0-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/freealut/freealut-1.1.0-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- freealut-1.1.0-r3.ebuild18 Jun 2014 19:28:22 -  1.2
+++ freealut-1.1.0-r3.ebuild18 Oct 2014 10:13:26 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/freealut/freealut-1.1.0-r3.ebuild,v 1.2 
2014/06/18 19:28:22 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/freealut/freealut-1.1.0-r3.ebuild,v 1.3 
2014/10/18 10:13:26 pacho Exp $
 
 EAPI=5
 inherit eutils autotools multilib-minimal
@@ -11,7 +11,7 @@
 
 LICENSE=LGPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
 IUSE=static-libs
 
 RDEPEND=



1.40 media-libs/freealut/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/freealut/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   18 Jun 2014 19:28:22 -  1.39
+++ ChangeLog   18 Oct 2014 10:13:26 -  1.40
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/freealut
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/freealut/ChangeLog,v 1.39 
2014/06/18 19:28:22 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/freealut/ChangeLog,v 1.40 
2014/10/18 10:13:26 pacho Exp $
+
+  18 Oct 2014; Pacho Ramos pa...@gentoo.org freealut-1.1.0-r3.ebuild:
+  amd64 stable, bug #525554
 
   18 Jun 2014; Michał Górny mgo...@gentoo.org freealut-1.1.0-r3.ebuild:
   Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug






[gentoo-commits] gentoo-x86 commit in media-libs/freealut: freealut-1.1.0-r3.ebuild ChangeLog

2014-10-18 Thread Pacho Ramos (pacho)
pacho   14/10/18 10:15:19

  Modified: freealut-1.1.0-r3.ebuild ChangeLog
  Log:
  x86 stable, bug #525554
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.4  media-libs/freealut/freealut-1.1.0-r3.ebuild

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

Index: freealut-1.1.0-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/freealut/freealut-1.1.0-r3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- freealut-1.1.0-r3.ebuild18 Oct 2014 10:13:26 -  1.3
+++ freealut-1.1.0-r3.ebuild18 Oct 2014 10:15:19 -  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/media-libs/freealut/freealut-1.1.0-r3.ebuild,v 1.3 
2014/10/18 10:13:26 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/freealut/freealut-1.1.0-r3.ebuild,v 1.4 
2014/10/18 10:15:19 pacho Exp $
 
 EAPI=5
 inherit eutils autotools multilib-minimal
@@ -11,7 +11,7 @@
 
 LICENSE=LGPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
 IUSE=static-libs
 
 RDEPEND=



1.41 media-libs/freealut/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/freealut/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   18 Oct 2014 10:13:26 -  1.40
+++ ChangeLog   18 Oct 2014 10:15:19 -  1.41
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/freealut
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/freealut/ChangeLog,v 1.40 
2014/10/18 10:13:26 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/freealut/ChangeLog,v 1.41 
2014/10/18 10:15:19 pacho Exp $
+
+  18 Oct 2014; Pacho Ramos pa...@gentoo.org freealut-1.1.0-r3.ebuild:
+  x86 stable, bug #525554
 
   18 Oct 2014; Pacho Ramos pa...@gentoo.org freealut-1.1.0-r3.ebuild:
   amd64 stable, bug #525554






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

2014-10-18 Thread Pacho Ramos (pacho)
pacho   14/10/18 10:28:44

  Modified: libmikmod-3.3.6-r1.ebuild ChangeLog
  Log:
  x86 stable, bug #525550
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

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

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

Index: libmikmod-3.3.6-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.6-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libmikmod-3.3.6-r1.ebuild   15 Oct 2014 19:42:20 -  1.1
+++ libmikmod-3.3.6-r1.ebuild   18 Oct 2014 10:28:44 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.6-r1.ebuild,v 1.1 
2014/10/15 19:42:20 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.6-r1.ebuild,v 1.2 
2014/10/18 10:28:44 pacho 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 coreaudio nas openal oss pulseaudio )



1.129media-libs/libmikmod/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   17 Oct 2014 13:08:51 -  1.128
+++ ChangeLog   18 Oct 2014 10:28:44 -  1.129
@@ -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.128 
2014/10/17 13:08:51 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v 1.129 
2014/10/18 10:28:44 pacho Exp $
+
+  18 Oct 2014; Pacho Ramos pa...@gentoo.org libmikmod-3.3.6-r1.ebuild:
+  x86 stable, bug #525550
 
 *libmikmod-3.3.7 (17 Oct 2014)
 






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

2014-10-18 Thread Pacho Ramos (pacho)
pacho   14/10/18 10:29:32

  Modified: libmikmod-3.3.6-r1.ebuild ChangeLog
  Log:
  amd64 stable, bug #525550
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.3  media-libs/libmikmod/libmikmod-3.3.6-r1.ebuild

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

Index: libmikmod-3.3.6-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.6-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libmikmod-3.3.6-r1.ebuild   18 Oct 2014 10:28:44 -  1.2
+++ libmikmod-3.3.6-r1.ebuild   18 Oct 2014 10:29:32 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.6-r1.ebuild,v 1.2 
2014/10/18 10:28:44 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.3.6-r1.ebuild,v 1.3 
2014/10/18 10:29:32 pacho 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 coreaudio nas openal oss pulseaudio )



1.130media-libs/libmikmod/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog   18 Oct 2014 10:28:44 -  1.129
+++ ChangeLog   18 Oct 2014 10:29:32 -  1.130
@@ -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.129 
2014/10/18 10:28:44 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmikmod/ChangeLog,v 1.130 
2014/10/18 10:29:32 pacho Exp $
+
+  18 Oct 2014; Pacho Ramos pa...@gentoo.org libmikmod-3.3.6-r1.ebuild:
+  amd64 stable, bug #525550
 
   18 Oct 2014; Pacho Ramos pa...@gentoo.org libmikmod-3.3.6-r1.ebuild:
   x86 stable, bug #525550






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

2014-10-18 Thread Pacho Ramos (pacho)
pacho   14/10/18 11:17:24

  Modified: package.use.mask
  Log:
  package.use.mask not needed anymore (#525564 by bwcknr)

Revision  ChangesPath
1.615profiles/base/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/base/package.use.mask,v
retrieving revision 1.614
retrieving revision 1.615
diff -u -r1.614 -r1.615
--- package.use.mask11 Oct 2014 05:03:35 -  1.614
+++ package.use.mask18 Oct 2014 11:17:24 -  1.615
@@ -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/profiles/base/package.use.mask,v 1.614 
2014/10/11 05:03:35 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/base/package.use.mask,v 1.615 
2014/10/18 11:17:24 pacho Exp $
 
 # This file requires =portage-2.1.1
 # New entries go on top.
@@ -366,10 +366,6 @@
 sci-libs/cholmod cuda
 sci-libs/flann cuda
 
-# Agostino Sarubbo a...@gentoo.org (21 Feb 2013)
-# Mask vpx because requires new libvpx and is not ready to go to stable
-=media-plugins/gst-plugins-meta-1.0 vpx
-
 # Julian Ospald hasuf...@gentoo.org (20 Feb 2013)
 # Unsupported and experimental.
 net-misc/teamviewer system-wine






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

2014-10-18 Thread Pacho Ramos (pacho)
pacho   14/10/18 11:17:24

  Modified: ChangeLog
  Log:
  package.use.mask not needed anymore (#525564 by bwcknr)

Revision  ChangesPath
1.9465   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9464
retrieving revision 1.9465
diff -u -r1.9464 -r1.9465
--- ChangeLog   16 Oct 2014 12:57:22 -  1.9464
+++ ChangeLog   18 Oct 2014 11:17:24 -  1.9465
@@ -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.9464 2014/10/16 
12:57:22 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9465 2014/10/18 
11:17:24 pacho Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  18 Oct 2014; Pacho Ramos pa...@gentoo.org base/package.use.mask:
+  package.use.mask not needed anymore (#525564 by bwcknr)
+
   16 Oct 2014; Justin Lecher j...@gentoo.org package.mask:
   mask aufs-sources for kernel 3.17.0 has broken ATA blacklist, #525548
 






[gentoo-commits] proj/releng:master commit in: tools-musl/portage.i686.vanilla/, tools-musl/portage.armv7a.hardened/env/, ...

2014-10-18 Thread Anthony G. Basile
commit: 8f397f1a48981ce6d63ffecbb59f4f0d0145ecee
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Sat Oct 18 11:22:15 2014 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Sat Oct 18 11:22:15 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=8f397f1a

tools-musl: switch to musl provided libintl

---
 tools-musl/portage.amd64.hardened/env/libintl.conf |  2 --
 tools-musl/portage.amd64.hardened/env/parallel.conf|  1 -
 tools-musl/portage.amd64.hardened/package.accept_keywords  |  1 +
 tools-musl/portage.amd64.hardened/package.env  |  9 -
 tools-musl/portage.amd64.hardened/package.use  |  3 ++-
 tools-musl/portage.amd64.vanilla/env/libintl.conf  |  2 --
 tools-musl/portage.amd64.vanilla/env/parallel.conf |  1 -
 tools-musl/portage.amd64.vanilla/package.accept_keywords   |  1 +
 tools-musl/portage.amd64.vanilla/package.env   |  9 -
 tools-musl/portage.amd64.vanilla/package.use   |  3 ++-
 tools-musl/portage.armv7a.hardened/env/libintl.conf|  2 --
 tools-musl/portage.armv7a.hardened/env/parallel.conf   |  1 -
 tools-musl/portage.armv7a.hardened/package.accept_keywords |  1 +
 tools-musl/portage.armv7a.hardened/package.env |  9 -
 tools-musl/portage.armv7a.vanilla/env/libintl.conf |  2 --
 tools-musl/portage.armv7a.vanilla/env/parallel.conf|  1 -
 tools-musl/portage.armv7a.vanilla/package.accept_keywords  |  1 +
 tools-musl/portage.armv7a.vanilla/package.env  |  9 -
 tools-musl/portage.i686.hardened/env/libintl.conf  |  2 --
 tools-musl/portage.i686.hardened/env/parallel.conf |  1 -
 tools-musl/portage.i686.hardened/package.accept_keywords   |  1 +
 tools-musl/portage.i686.hardened/package.env   |  9 -
 tools-musl/portage.i686.hardened/package.use   |  3 ++-
 tools-musl/portage.i686.vanilla/env/libintl.conf   |  2 --
 tools-musl/portage.i686.vanilla/env/parallel.conf  |  1 -
 tools-musl/portage.i686.vanilla/package.accept_keywords|  1 +
 tools-musl/portage.i686.vanilla/package.env|  9 -
 tools-musl/portage.i686.vanilla/package.use|  3 ++-
 tools-musl/portage.mipsel3.vanilla/env/libintl.conf|  2 --
 tools-musl/portage.mipsel3.vanilla/env/parallel.conf   |  1 -
 tools-musl/portage.mipsel3.vanilla/package.env | 10 --
 31 files changed, 14 insertions(+), 89 deletions(-)

diff --git a/tools-musl/portage.amd64.hardened/env/libintl.conf 
b/tools-musl/portage.amd64.hardened/env/libintl.conf
deleted file mode 100644
index 06356b5..000
--- a/tools-musl/portage.amd64.hardened/env/libintl.conf
+++ /dev/null
@@ -1,2 +0,0 @@
-CFLAGS=-Wl,-lintl
-LDFLAGS=-lintl

diff --git a/tools-musl/portage.amd64.hardened/env/parallel.conf 
b/tools-musl/portage.amd64.hardened/env/parallel.conf
deleted file mode 100644
index c67232a..000
--- a/tools-musl/portage.amd64.hardened/env/parallel.conf
+++ /dev/null
@@ -1 +0,0 @@
-MAKEOPTS=-j1

diff --git a/tools-musl/portage.amd64.hardened/package.accept_keywords 
b/tools-musl/portage.amd64.hardened/package.accept_keywords
new file mode 100644
index 000..2ad2d73
--- /dev/null
+++ b/tools-musl/portage.amd64.hardened/package.accept_keywords
@@ -0,0 +1 @@
+=sys-devel/gettext-0.19.2 ~amd64 ~arm ~x86

diff --git a/tools-musl/portage.amd64.hardened/package.env 
b/tools-musl/portage.amd64.hardened/package.env
deleted file mode 100644
index 3574877..000
--- a/tools-musl/portage.amd64.hardened/package.env
+++ /dev/null
@@ -1,9 +0,0 @@
-dev-libs/glib libintl.conf
-dev-libs/libelf libintl.conf
-sys-apps/attr libintl.conf
-sys-apps/kbd libintl.conf
-sys-apps/man-db parallel.conf
-sys-apps/net-tools libintl.conf
-sys-fs/e2fsprogs libintl.conf
-sys-fs/eudev libintl.conf
-sys-process/procps libintl.conf

diff --git a/tools-musl/portage.amd64.hardened/package.use 
b/tools-musl/portage.amd64.hardened/package.use
index 4ef695a..faf6df1 100644
--- a/tools-musl/portage.amd64.hardened/package.use
+++ b/tools-musl/portage.amd64.hardened/package.use
@@ -1 +1,2 @@
-sys-libs/musl nls
+sys-devel/gettext -nls
+sys-fs/e2fsprogs -nls

diff --git a/tools-musl/portage.amd64.vanilla/env/libintl.conf 
b/tools-musl/portage.amd64.vanilla/env/libintl.conf
deleted file mode 100644
index 06356b5..000
--- a/tools-musl/portage.amd64.vanilla/env/libintl.conf
+++ /dev/null
@@ -1,2 +0,0 @@
-CFLAGS=-Wl,-lintl
-LDFLAGS=-lintl

diff --git a/tools-musl/portage.amd64.vanilla/env/parallel.conf 
b/tools-musl/portage.amd64.vanilla/env/parallel.conf
deleted file mode 100644
index c67232a..000
--- a/tools-musl/portage.amd64.vanilla/env/parallel.conf
+++ /dev/null
@@ -1 +0,0 @@
-MAKEOPTS=-j1

diff --git a/tools-musl/portage.amd64.vanilla/package.accept_keywords 
b/tools-musl/portage.amd64.vanilla/package.accept_keywords
new file mode 100644

[gentoo-commits] gentoo-x86 commit in app-emacs/rust-mode/files: - New directory

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 11:47:20

  Log:
  Directory /var/cvsroot/gentoo-x86/app-emacs/rust-mode/files added to the 
repository



[gentoo-commits] gentoo-x86 commit in app-emacs/rust-mode: - New directory

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 11:46:59

  Log:
  Directory /var/cvsroot/gentoo-x86/app-emacs/rust-mode added to the repository



[gentoo-commits] gentoo-x86 commit in app-emacs/rust-mode/files: 50rust-mode-gentoo.el

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 11:48:14

  Added:50rust-mode-gentoo.el
  Log:
  initial import from the rust overlay
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.1  app-emacs/rust-mode/files/50rust-mode-gentoo.el

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

Index: 50rust-mode-gentoo.el
===
(add-to-list 'load-path @SITELISP@)
(require 'rust-mode)






[gentoo-commits] gentoo-x86 commit in app-emacs/rust-mode: rust-mode-0.12.0.ebuild metadata.xml rust-mode-0.11.0.ebuild ChangeLog

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 11:48:14

  Added:rust-mode-0.12.0.ebuild metadata.xml
rust-mode-0.11.0.ebuild ChangeLog
  Log:
  initial import from the rust overlay
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.1  app-emacs/rust-mode/rust-mode-0.12.0.ebuild

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

Index: rust-mode-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/app-emacs/rust-mode/rust-mode-0.12.0.ebuild,v 1.1 
2014/10/18 11:48:14 jauhien Exp $

EAPI=5

inherit elisp

DESCRIPTION=A major emacs mode for editing Rust source code
HOMEPAGE=http://www.rust-lang.org/;
SRC_URI=http://static.rust-lang.org/dist/rust-${PV}.tar.gz;

LICENSE=|| ( MIT Apache-2.0 )
SLOT=0
KEYWORDS=~amd64 ~x86

DEPEND=!!=app-admin/eselect-rust-0.1_pre20140820
!=dev-lang/rust-0.11.0-r1:0.11
!=dev-lang/rust-999:nightly
!=dev-lang/rust--r2:git


S=${WORKDIR}/rust-${PV}/src/etc/emacs

SITEFILE=50${PN}-gentoo.el



1.1  app-emacs/rust-mode/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/rust-mode/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/rust-mode/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  app-emacs/rust-mode/rust-mode-0.11.0.ebuild

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

Index: rust-mode-0.11.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emacs/rust-mode/rust-mode-0.11.0.ebuild,v 1.1 
2014/10/18 11:48:14 jauhien Exp $

EAPI=5

inherit elisp

DESCRIPTION=A major emacs mode for editing Rust source code
HOMEPAGE=http://www.rust-lang.org/;
SRC_URI=http://static.rust-lang.org/dist/rust-${PV}.tar.gz;

LICENSE=|| ( MIT Apache-2.0 )
SLOT=0
KEYWORDS=~amd64 ~x86

DEPEND=!!=app-admin/eselect-rust-0.1_pre20140820
!=dev-lang/rust-0.11.0-r1:0.11
!=dev-lang/rust-999:nightly
!=dev-lang/rust--r2:git


S=${WORKDIR}/rust-${PV}/src/etc/emacs

SITEFILE=50${PN}-gentoo.el



1.1  app-emacs/rust-mode/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/rust-mode/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/rust-mode/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for app-emacs/rust-mode
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/rust-mode/ChangeLog,v 1.1 
2014/10/18 11:48:14 jauhien Exp $

*rust-mode-0.11.0 (18 Oct 2014)
*rust-mode-0.12.0 (18 Oct 2014)

  18 Oct 2014; Jauhien Piatlicki jauh...@gentoo.org
  +files/50rust-mode-gentoo.el, +metadata.xml, +rust-mode-0.11.0.ebuild,
  +rust-mode-0.12.0.ebuild:
  initial import from the rust overlay






[gentoo-commits] gentoo-x86 commit in app-vim/rust-mode: - New directory

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 11:49:14

  Log:
  Directory /var/cvsroot/gentoo-x86/app-vim/rust-mode added to the repository



[gentoo-commits] gentoo-x86 commit in app-vim/rust-mode: rust-mode-0.11.0.ebuild rust-mode-0.12.0.ebuild metadata.xml ChangeLog

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 11:50:31

  Added:rust-mode-0.11.0.ebuild rust-mode-0.12.0.ebuild
metadata.xml ChangeLog
  Log:
  initial import from the rust overlay
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.1  app-vim/rust-mode/rust-mode-0.11.0.ebuild

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

Index: rust-mode-0.11.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/rust-mode/rust-mode-0.11.0.ebuild,v 
1.1 2014/10/18 11:50:31 jauhien Exp $

EAPI=5

inherit vim-plugin

DESCRIPTION=Rust mode for vim
HOMEPAGE=http://www.rust-lang.org/;
SRC_URI=http://static.rust-lang.org/dist/rust-${PV}.tar.gz;

LICENSE=|| ( MIT Apache-2.0 )
SLOT=0
KEYWORDS=~amd64 ~x86

DEPEND=!!=app-admin/eselect-rust-0.1_pre20140820
!=dev-lang/rust-0.11.0-r1:0.11
!=dev-lang/rust-999:nightly
!=dev-lang/rust--r2:git


S=${WORKDIR}/rust-${PV}/src/etc/vim



1.1  app-vim/rust-mode/rust-mode-0.12.0.ebuild

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

Index: rust-mode-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/app-vim/rust-mode/rust-mode-0.12.0.ebuild,v 
1.1 2014/10/18 11:50:31 jauhien Exp $

EAPI=5

inherit vim-plugin

DESCRIPTION=Rust mode for vim
HOMEPAGE=http://www.rust-lang.org/;
SRC_URI=http://static.rust-lang.org/dist/rust-${PV}.tar.gz;

LICENSE=|| ( MIT Apache-2.0 )
SLOT=0
KEYWORDS=~amd64 ~x86

DEPEND=!!=app-admin/eselect-rust-0.1_pre20140820
!=dev-lang/rust-0.11.0-r1:0.11
!=dev-lang/rust-999:nightly
!=dev-lang/rust--r2:git


S=${WORKDIR}/rust-${PV}/src/etc/vim



1.1  app-vim/rust-mode/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/rust-mode/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/rust-mode/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  app-vim/rust-mode/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/rust-mode/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/rust-mode/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for app-vim/rust-mode
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/rust-mode/ChangeLog,v 1.1 2014/10/18 
11:50:31 jauhien Exp $

*rust-mode-0.11.0 (18 Oct 2014)
*rust-mode-0.12.0 (18 Oct 2014)

  18 Oct 2014; Jauhien Piatlicki jauh...@gentoo.org +metadata.xml,
  +rust-mode-0.11.0.ebuild, +rust-mode-0.12.0.ebuild:
  initial import from the rust overlay






[gentoo-commits] gentoo-x86 commit in app-shells/rust-zshcomp: - New directory

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 11:51:04

  Log:
  Directory /var/cvsroot/gentoo-x86/app-shells/rust-zshcomp added to the 
repository



[gentoo-commits] gentoo-x86 commit in app-shells/rust-zshcomp: metadata.xml rust-zshcomp-0.12.0.ebuild rust-zshcomp-0.11.0.ebuild ChangeLog

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 11:52:06

  Added:metadata.xml rust-zshcomp-0.12.0.ebuild
rust-zshcomp-0.11.0.ebuild ChangeLog
  Log:
  initial import from the rust overlay
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.1  app-shells/rust-zshcomp/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/rust-zshcomp/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/rust-zshcomp/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  app-shells/rust-zshcomp/rust-zshcomp-0.12.0.ebuild

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

Index: rust-zshcomp-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/app-shells/rust-zshcomp/rust-zshcomp-0.12.0.ebuild,v 
1.1 2014/10/18 11:52:06 jauhien Exp $

EAPI=5

DESCRIPTION=Rust zsh completions
HOMEPAGE=http://www.rust-lang.org/;
SRC_URI=http://static.rust-lang.org/dist/rust-${PV}.tar.gz;

LICENSE=|| ( MIT Apache-2.0 )
SLOT=0
KEYWORDS=~amd64 ~x86

DEPEND=app-shells/zsh
!!=app-admin/eselect-rust-0.1_pre20140820
!=dev-lang/rust-0.11.0-r1:0.11
!=dev-lang/rust-999:nightly
!=dev-lang/rust--r2:git

RDEPEND=${DEPEND}

S=${WORKDIR}/rust-${PV}

src_configure() {
:
}

src_compile() {
:
}

src_install() {
insinto /usr/share/zsh/site-functions
doins src/etc/zsh/_rust
}



1.1  app-shells/rust-zshcomp/rust-zshcomp-0.11.0.ebuild

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

Index: rust-zshcomp-0.11.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-shells/rust-zshcomp/rust-zshcomp-0.11.0.ebuild,v 
1.1 2014/10/18 11:52:06 jauhien Exp $

EAPI=5

DESCRIPTION=Rust zsh completions
HOMEPAGE=http://www.rust-lang.org/;
SRC_URI=http://static.rust-lang.org/dist/rust-${PV}.tar.gz;

LICENSE=|| ( MIT Apache-2.0 )
SLOT=0
KEYWORDS=~amd64 ~x86

DEPEND=app-shells/zsh
!!=app-admin/eselect-rust-0.1_pre20140820
!=dev-lang/rust-0.11.0-r1:0.11
!=dev-lang/rust-999:nightly
!=dev-lang/rust--r2:git

RDEPEND=${DEPEND}

S=${WORKDIR}/rust-${PV}

src_configure() {
:
}

src_compile() {
:
}

src_install() {
insinto /usr/share/zsh/site-functions
doins src/etc/zsh/_rust
}



1.1  app-shells/rust-zshcomp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/rust-zshcomp/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/rust-zshcomp/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for app-shells/rust-zshcomp
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/rust-zshcomp/ChangeLog,v 1.1 
2014/10/18 11:52:06 jauhien Exp $

*rust-zshcomp-0.11.0 (18 Oct 2014)
*rust-zshcomp-0.12.0 (18 Oct 2014)

  18 Oct 2014; Jauhien Piatlicki jauh...@gentoo.org +metadata.xml,
  +rust-zshcomp-0.11.0.ebuild, +rust-zshcomp-0.12.0.ebuild:
  initial import from the rust overlay






[gentoo-commits] gentoo-x86 commit in dev-python/peppercorn: peppercorn-0.5.ebuild ChangeLog peppercorn-0.4.ebuild peppercorn-0.3.ebuild

2014-10-18 Thread Ian Delaney (idella4)
idella4 14/10/18 12:08:34

  Modified: ChangeLog
  Added:peppercorn-0.5.ebuild
  Removed:  peppercorn-0.4.ebuild peppercorn-0.3.ebuild
  Log:
  bump; clean old python impls, add IUSE test, doc and all that goes with them, 
tidy, remove old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.6  dev-python/peppercorn/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/peppercorn/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   31 Mar 2014 20:35:35 -  1.5
+++ ChangeLog   18 Oct 2014 12:08:34 -  1.6
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/peppercorn
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/peppercorn/ChangeLog,v 1.5 
2014/03/31 20:35:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/peppercorn/ChangeLog,v 1.6 
2014/10/18 12:08:34 idella4 Exp $
+
+*peppercorn-0.5 (18 Oct 2014)
+
+  18 Oct 2014; Ian Delaney idel...@gentoo.org +peppercorn-0.5.ebuild,
+  -peppercorn-0.3.ebuild, -peppercorn-0.4.ebuild:
+  bump; clean old python impls, add IUSE test, doc and all that goes with them,
+  tidy, remove old
 
   31 Mar 2014; Michał Górny mgo...@gentoo.org peppercorn-0.4-r1.ebuild:
   Add support for the new PyPy slotting.



1.1  dev-python/peppercorn/peppercorn-0.5.ebuild

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

Index: peppercorn-0.5.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/peppercorn/peppercorn-0.5.ebuild,v 1.1 
2014/10/18 12:08:34 idella4 Exp $

EAPI=5

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

inherit distutils-r1

DESCRIPTION=A library for converting a token stream into a data structure for 
use in web form posts
HOMEPAGE=https://github.com/Pylons/peppercorn 
http://pypi.python.org/pypi/peppercorn;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=repoze
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=doc test

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

# Include COPYRIGHT.txt because the license seems to require it
DOCS=( CHANGES.txt README.txt COPYRIGHT.txt )

python_prepare_all() {
# Fix Sphinx theme. courtesy of Arfrever
sed -e /# Add and use Pylons theme/,+36d -i docs/conf.py || die sed 
failed

distutils-r1_python_prepare_all
}

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

python_test() {
esetup.py test
}

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

distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in app-admin/eselect-rust: eselect-rust-0.2_pre20141011.ebuild ChangeLog

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:37:31

  Modified: ChangeLog
  Added:eselect-rust-0.2_pre20141011.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.2  app-admin/eselect-rust/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-rust/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   29 Aug 2014 13:49:14 -  1.1
+++ ChangeLog   18 Oct 2014 12:37:31 -  1.2
@@ -1,6 +1,12 @@
 # ChangeLog for app-admin/eselect-rust
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-rust/ChangeLog,v 1.1 
2014/08/29 13:49:14 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-rust/ChangeLog,v 1.2 
2014/10/18 12:37:31 jauhien Exp $
+
+*eselect-rust-0.2_pre20141011 (18 Oct 2014)
+
+  18 Oct 2014; Jauhien Piatlicki jauh...@gentoo.org
+  +eselect-rust-0.2_pre20141011.ebuild:
+  version bump
 
 *eselect-rust-0.1_pre20140820 (29 Aug 2014)
 



1.1  app-admin/eselect-rust/eselect-rust-0.2_pre20141011.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-rust/eselect-rust-0.2_pre20141011.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-rust/eselect-rust-0.2_pre20141011.ebuild?rev=1.1content-type=text/plain

Index: eselect-rust-0.2_pre20141011.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/eselect-rust/eselect-rust-0.2_pre20141011.ebuild,v
 1.1 2014/10/18 12:37:31 jauhien Exp $

EAPI=5

DESCRIPTION=eselect module for rust
HOMEPAGE=http://github.com/jauhien/eselect-rust;
SRC_URI=https://github.com/jauhien/${PN}/archive/${PV}.tar.gz - ${P}.tar.gz

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

RDEPEND=app-admin/eselect

pkg_preinst() {
if has_version 'app-admin/eselect-rust' ; then
eselect rust unset
fi
}

pkg_postinst() {
if has_version 'dev-lang/rust' || has_version 'dev-lang/rust-bin' ; then
eselect rust update --if-unset
fi
}

pkg_prerm() {
eselect rust unset
}






[gentoo-commits] gentoo-x86 commit in app-emacs/rust-mode: rust-mode-9999.ebuild ChangeLog

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:42:52

  Modified: ChangeLog
  Added:rust-mode-.ebuild
  Log:
  add live version
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.2  app-emacs/rust-mode/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/rust-mode/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   18 Oct 2014 11:48:14 -  1.1
+++ ChangeLog   18 Oct 2014 12:42:52 -  1.2
@@ -1,6 +1,11 @@
 # ChangeLog for app-emacs/rust-mode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/rust-mode/ChangeLog,v 1.1 
2014/10/18 11:48:14 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/rust-mode/ChangeLog,v 1.2 
2014/10/18 12:42:52 jauhien Exp $
+
+*rust-mode- (18 Oct 2014)
+
+  18 Oct 2014; Jauhien Piatlicki jauh...@gentoo.org +rust-mode-.ebuild:
+  add live version
 
 *rust-mode-0.11.0 (18 Oct 2014)
 *rust-mode-0.12.0 (18 Oct 2014)



1.1  app-emacs/rust-mode/rust-mode-.ebuild

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

Index: rust-mode-.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/rust-mode/rust-mode-.ebuild,v 
1.1 2014/10/18 12:42:52 jauhien Exp $

EAPI=5

inherit elisp git-r3

DESCRIPTION=A major emacs mode for editing Rust source code
HOMEPAGE=http://www.rust-lang.org/;
EGIT_REPO_URI=git://github.com/rust-lang/rust.git

LICENSE=|| ( MIT Apache-2.0 )
SLOT=0
KEYWORDS=

DEPEND=!!=app-admin/eselect-rust-0.1_pre20140820
!=dev-lang/rust-0.11.0-r1:0.11
!=dev-lang/rust-999:nightly
!=dev-lang/rust--r2:git


S=${S}/src/etc/emacs

SITEFILE=50${PN}-gentoo.el






[gentoo-commits] gentoo-x86 commit in app-vim/rust-mode: rust-mode-9999.ebuild ChangeLog

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:43:35

  Modified: ChangeLog
  Added:rust-mode-.ebuild
  Log:
  add live version
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.2  app-vim/rust-mode/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/rust-mode/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   18 Oct 2014 11:50:31 -  1.1
+++ ChangeLog   18 Oct 2014 12:43:35 -  1.2
@@ -1,6 +1,11 @@
 # ChangeLog for app-vim/rust-mode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/rust-mode/ChangeLog,v 1.1 
2014/10/18 11:50:31 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-vim/rust-mode/ChangeLog,v 1.2 
2014/10/18 12:43:35 jauhien Exp $
+
+*rust-mode- (18 Oct 2014)
+
+  18 Oct 2014; Jauhien Piatlicki jauh...@gentoo.org +rust-mode-.ebuild:
+  add live version
 
 *rust-mode-0.11.0 (18 Oct 2014)
 *rust-mode-0.12.0 (18 Oct 2014)



1.1  app-vim/rust-mode/rust-mode-.ebuild

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

Index: rust-mode-.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/rust-mode/rust-mode-.ebuild,v 
1.1 2014/10/18 12:43:35 jauhien Exp $

EAPI=5

inherit vim-plugin git-r3

DESCRIPTION=Rust mode for vim
HOMEPAGE=http://www.rust-lang.org/;
EGIT_REPO_URI=git://github.com/rust-lang/rust.git

LICENSE=|| ( MIT Apache-2.0 )
SLOT=0
KEYWORDS=

DEPEND=!!=app-admin/eselect-rust-0.1_pre20140820
!=dev-lang/rust-0.11.0-r1:0.11
!=dev-lang/rust-999:nightly
!=dev-lang/rust--r2:git


S=${S}/src/etc/vim






[gentoo-commits] gentoo-x86 commit in app-shells/rust-zshcomp: rust-zshcomp-9999.ebuild ChangeLog

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:44:35

  Modified: ChangeLog
  Added:rust-zshcomp-.ebuild
  Log:
  add live version
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.2  app-shells/rust-zshcomp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/rust-zshcomp/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   18 Oct 2014 11:52:06 -  1.1
+++ ChangeLog   18 Oct 2014 12:44:35 -  1.2
@@ -1,6 +1,11 @@
 # ChangeLog for app-shells/rust-zshcomp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/rust-zshcomp/ChangeLog,v 1.1 
2014/10/18 11:52:06 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/rust-zshcomp/ChangeLog,v 1.2 
2014/10/18 12:44:35 jauhien Exp $
+
+*rust-zshcomp- (18 Oct 2014)
+
+  18 Oct 2014; Jauhien Piatlicki jauh...@gentoo.org 
+rust-zshcomp-.ebuild:
+  add live version
 
 *rust-zshcomp-0.11.0 (18 Oct 2014)
 *rust-zshcomp-0.12.0 (18 Oct 2014)



1.1  app-shells/rust-zshcomp/rust-zshcomp-.ebuild

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

Index: rust-zshcomp-.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-shells/rust-zshcomp/rust-zshcomp-.ebuild,v 1.1 
2014/10/18 12:44:35 jauhien Exp $

EAPI=5

inherit git-r3

DESCRIPTION=Rust zsh completions
HOMEPAGE=http://www.rust-lang.org/;
EGIT_REPO_URI=git://github.com/rust-lang/rust.git

LICENSE=|| ( MIT Apache-2.0 )
SLOT=0
KEYWORDS=

DEPEND=app-shells/zsh
!!=app-admin/eselect-rust-0.1_pre20140820
!=dev-lang/rust-0.11.0-r1:0.11
!=dev-lang/rust-999:nightly
!=dev-lang/rust--r2:git

RDEPEND=${DEPEND}

src_configure() {
:
}

src_compile() {
:
}

src_install() {
insinto /usr/share/zsh/site-functions
doins src/etc/zsh/_rust
}






[gentoo-commits] gentoo-x86 commit in dev-lang/rust: rust-9999-r3.ebuild rust-999-r1.ebuild rust-0.11.0-r2.ebuild rust-0.12.0.ebuild ChangeLog rust-9999-r2.ebuild rust-0.11.0-r1.ebuild rust-999.ebuild

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:48:43

  Modified: ChangeLog
  Added:rust--r3.ebuild rust-999-r1.ebuild
rust-0.11.0-r2.ebuild rust-0.12.0.ebuild
  Removed:  rust--r2.ebuild rust-0.11.0-r1.ebuild
rust-999.ebuild
  Log:
  version bump, switch to new eselect version
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.5  dev-lang/rust/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/rust/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   29 Aug 2014 14:12:27 -  1.4
+++ ChangeLog   18 Oct 2014 12:48:43 -  1.5
@@ -1,6 +1,18 @@
 # ChangeLog for dev-lang/rust
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/rust/ChangeLog,v 1.4 2014/08/29 
14:12:27 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/rust/ChangeLog,v 1.5 2014/10/18 
12:48:43 jauhien Exp $
+
+*rust-0.12.0 (18 Oct 2014)
+*rust-999-r1 (18 Oct 2014)
+*rust--r3 (18 Oct 2014)
+*rust-0.11.0-r2 (18 Oct 2014)
+
+  18 Oct 2014; Jauhien Piatlicki jauh...@gentoo.org
+  +files/rust-0.12.0-libdir.patch, +files/rust-0.12.0-stage0.patch,
+  +rust-0.11.0-r2.ebuild, +rust-0.12.0.ebuild, +rust-999-r1.ebuild,
+  +rust--r3.ebuild, -files/rust--libdir.patch, -rust-0.11.0-r1.ebuild,
+  -rust-999.ebuild, -rust--r2.ebuild:
+  version bump, switch to new eselect version
 
 *rust-0.11.0-r1 (29 Aug 2014)
 *rust-999 (29 Aug 2014)



1.1  dev-lang/rust/rust--r3.ebuild

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

Index: rust--r3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/rust/rust--r3.ebuild,v 1.1 
2014/10/18 12:48:43 jauhien Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7} )

inherit eutils git-r3 python-any-r1

DESCRIPTION=Systems programming language from Mozilla
HOMEPAGE=http://www.rust-lang.org/;
EGIT_REPO_URI=git://github.com/rust-lang/rust.git

LICENSE=|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA
SLOT=git
KEYWORDS=

IUSE=clang debug emacs libcxx vim-syntax zsh-completion
REQUIRED_USE=libcxx? ( clang )

CDEPEND=libcxx? ( sys-libs/libcxx )
=app-admin/eselect-rust-0.2_pre20141011
!dev-lang/rust:0

DEPEND=${CDEPEND}
${PYTHON_DEPS}
=dev-lang/perl-5.0
clang? ( sys-devel/clang )

RDEPEND=${CDEPEND}
emacs? ( =app-emacs/rust-mode-${PV} )
vim-syntax? ( =app-vim/rust-mode-${PV} )
zsh-completion? ( =app-shells/rust-zshcomp-${PV} )


src_unpack() {
git-r3_src_unpack

use amd64  BUILD_TRIPLE=x86_64-unknown-linux-gnu
use x86  BUILD_TRIPLE=i686-unknown-linux-gnu
export CFG_SRC_DIR=${S}  \
cd ${S}  \
mkdir -p ${S}/dl  \
mkdir -p ${S}/${BUILD_TRIPLE}/stage0/bin  \
python2 ${S}/src/etc/get-snapshot.py ${BUILD_TRIPLE} || die
}

src_prepare() {
epatch ${FILESDIR}/${PN}-0.12.0-no-ldconfig.patch 
${FILESDIR}/${PN}-0.12.0-libdir.patch

local postfix=gentoo-${SLOT}
sed -i -e s/CFG_FILENAME_EXTRA=.*/CFG_FILENAME_EXTRA=${postfix}/ 
mk/main.mk || die
}

src_configure() {
${ECONF_SOURCE:-.}/configure \
--prefix=${EPREFIX}/usr \
--libdir=${EPREFIX}/usr/lib/${P} \
--mandir=${EPREFIX}/usr/share/${P}/man \
$(use_enable clang) \
$(use_enable debug) \
$(use_enable debug llvm-assertions) \
$(use_enable !debug optimize) \
$(use_enable !debug optimize-cxx) \
$(use_enable !debug optimize-llvm) \
$(use_enable !debug optimize-tests) \
$(use_enable libcxx libcpp) \
--disable-manage-submodules \
--disable-verify-install \
--disable-docs \
|| die
}

src_compile() {
emake VERBOSE=1
}

src_install() {
default

mv ${D}/usr/bin/rustc ${D}/usr/bin/rustc-${PV} || die
mv ${D}/usr/bin/rustdoc ${D}/usr/bin/rustdoc-${PV} || die

cat -EOF  ${T}/50${P}

[gentoo-commits] gentoo-x86 commit in dev-lang/rust/files: rust-0.12.0-stage0.patch rust-0.12.0-libdir.patch rust-9999-libdir.patch

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:48:43

  Added:rust-0.12.0-stage0.patch rust-0.12.0-libdir.patch
  Removed:  rust--libdir.patch
  Log:
  version bump, switch to new eselect version
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.1  dev-lang/rust/files/rust-0.12.0-stage0.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust/files/rust-0.12.0-stage0.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust/files/rust-0.12.0-stage0.patch?rev=1.1content-type=text/plain

Index: rust-0.12.0-stage0.patch
===
diff -u -r rust-0.12.0.orig/src/libcollections/string.rs 
rust-0.12.0/src/libcollections/string.rs
--- rust-0.12.0.orig/src/libcollections/string.rs   2014-10-11 
14:54:06.303867073 +0200
+++ rust-0.12.0/src/libcollections/string.rs2014-10-11 14:54:44.063471071 
+0200
@@ -928,29 +928,6 @@
 }
 }
 
-#[cfg(stage0)]
-impl ops::Sliceuint, str for String {
-#[inline]
-fn as_slice_'a('a self) - 'a str {
-self.as_slice()
-}
-
-#[inline]
-fn slice_from_'a('a self, from: uint) - 'a str {
-self[][*from..]
-}
-
-#[inline]
-fn slice_to_'a('a self, to: uint) - 'a str {
-self[][..*to]
-}
-
-#[inline]
-fn slice_'a('a self, from: uint, to: uint) - 'a str {
-self[][*from..*to]
-}
-}
-#[cfg(not(stage0))]
 impl ops::Sliceuint, str for String {
 #[inline]
 fn as_slice_'a('a self) - 'a str {
diff -u -r rust-0.12.0.orig/src/libcollections/trie.rs 
rust-0.12.0/src/libcollections/trie.rs
--- rust-0.12.0.orig/src/libcollections/trie.rs 2014-10-11 14:54:06.303867073 
+0200
+++ rust-0.12.0/src/libcollections/trie.rs  2014-10-11 14:55:10.623192469 
+0200
@@ -389,15 +389,6 @@
 
 implT TrieMapT {
 // If `upper` is true then returns upper_bound else returns lower_bound.
-#[cfg(stage0)]
-#[inline]
-fn bound'a('a self, key: uint, upper: bool) - Entries'a, T {
-bound!(Entries, self = self,
-   key = key, is_upper = upper,
-   slice_from = slice_from_, iter = iter,
-   mutability = )
-}
-#[cfg(not(stage0))]
 #[inline]
 fn bound'a('a self, key: uint, upper: bool) - Entries'a, T {
 bound!(Entries, self = self,
@@ -440,15 +431,6 @@
 self.bound(key, true)
 }
 // If `upper` is true then returns upper_bound else returns lower_bound.
-#[cfg(stage0)]
-#[inline]
-fn bound_mut'a('a mut self, key: uint, upper: bool) - MutEntries'a, 
T {
-bound!(MutEntries, self = self,
-   key = key, is_upper = upper,
-   slice_from = slice_from_mut_, iter = iter_mut,
-   mutability = mut)
-}
-#[cfg(not(stage0))]
 #[inline]
 fn bound_mut'a('a mut self, key: uint, upper: bool) - MutEntries'a, 
T {
 bound!(MutEntries, self = self,
diff -u -r rust-0.12.0.orig/src/libcollections/vec.rs 
rust-0.12.0/src/libcollections/vec.rs
--- rust-0.12.0.orig/src/libcollections/vec.rs  2014-10-11 14:54:06.303867073 
+0200
+++ rust-0.12.0/src/libcollections/vec.rs   2014-10-11 14:55:35.422932321 
+0200
@@ -460,28 +460,6 @@
 }
 }*/
 
-#[cfg(stage0)]
-implT ops::Sliceuint, [T] for VecT {
-#[inline]
-fn as_slice_'a('a self) - 'a [T] {
-self.as_slice()
-}
-
-#[inline]
-fn slice_from_'a('a self, start: uint) - 'a [T] {
-self.as_slice().slice_from_(start)
-}
-
-#[inline]
-fn slice_to_'a('a self, end: uint) - 'a [T] {
-self.as_slice().slice_to_(end)
-}
-#[inline]
-fn slice_'a('a self, start: uint, end: uint) - 'a [T] {
-self.as_slice().slice_(start, end)
-}
-}
-#[cfg(not(stage0))]
 implT ops::Sliceuint, [T] for VecT {
 #[inline]
 fn as_slice_'a('a self) - 'a [T] {
@@ -503,28 +481,6 @@
 }
 }
 
-#[cfg(stage0)]
-implT ops::SliceMutuint, [T] for VecT {
-#[inline]
-fn as_mut_slice_'a('a mut self) - 'a mut [T] {
-self.as_mut_slice()
-}
-
-#[inline]
-fn slice_from_mut_'a('a mut self, start: uint) - 'a mut [T] {
-self.as_mut_slice().slice_from_mut_(start)
-}
-
-#[inline]
-fn slice_to_mut_'a('a mut self, end: uint) - 'a mut [T] {
-self.as_mut_slice().slice_to_mut_(end)
-}
-#[inline]
-fn slice_mut_'a('a mut self, start: uint, end: uint) - 'a mut [T] {
-self.as_mut_slice().slice_mut_(start, end)
-}
-}
-#[cfg(not(stage0))]
 implT ops::SliceMutuint, [T] for VecT {
 #[inline]
 fn as_mut_slice_'a('a mut self) - 'a mut [T] {
diff -u -r rust-0.12.0.orig/src/libcore/intrinsics.rs 
rust-0.12.0/src/libcore/intrinsics.rs
--- rust-0.12.0.orig/src/libcore/intrinsics.rs  2014-10-11 14:54:06.313867033 
+0200
+++ rust-0.12.0/src/libcore/intrinsics.rs   2014-10-11 14:57:53.081488143 
+0200
@@ -254,7 +254,6 @@
 /// 

[gentoo-commits] gentoo-x86 commit in dev-lang/rust-bin/files: - New directory

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:50:01

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-lang/rust-bin/files added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-lang/rust-bin: - New directory

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:49:20

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-lang/rust-bin added to the repository



[gentoo-commits] gentoo-x86 commit in dev-lang/rust-bin: metadata.xml rust-bin-0.12.0.ebuild rust-bin-999.ebuild ChangeLog

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:50:48

  Added:metadata.xml rust-bin-0.12.0.ebuild
rust-bin-999.ebuild ChangeLog
  Log:
  initila import from the rust overlay
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.1  dev-lang/rust-bin/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust-bin/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust-bin/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  dev-lang/rust-bin/rust-bin-0.12.0.ebuild

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

Index: rust-bin-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/dev-lang/rust-bin/rust-bin-0.12.0.ebuild,v 
1.1 2014/10/18 12:50:48 jauhien Exp $

EAPI=5

inherit eutils

DESCRIPTION=Systems programming language from Mozilla
HOMEPAGE=http://www.rust-lang.org/;
SRC_URI=amd64? ( 
http://static.rust-lang.org/dist/rust-${PV}-x86_64-unknown-linux-gnu.tar.gz )
x86? ( 
http://static.rust-lang.org/dist/rust-${PV}-i686-unknown-linux-gnu.tar.gz )

LICENSE=|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA
SLOT=0
KEYWORDS=~amd64 ~x86

IUSE=emacs vim-syntax zsh-completion

DEPEND==app-admin/eselect-rust-0.2_pre20141011
!dev-lang/rust:0

RDEPEND=${DEPEND}
emacs? ( =app-emacs/rust-mode-${PV} )
vim-syntax? ( =app-vim/rust-mode-${PV} )
zsh-completion? ( =app-shells/rust-zshcomp-${PV} )


src_unpack() {
default

local postfix
use amd64  postfix=x86_64-unknown-linux-gnu
use x86  postfix=i686-unknown-linux-gnu
mv ${WORKDIR}/rust-${PV}-${postfix} ${S} || die
}

src_prepare() {
epatch ${FILESDIR}/${PN}-0.12.0-no-ldconfig.patch
}

src_install() {
./install.sh \
--disable-verify \
--prefix=${D}/opt/${P} \
--mandir=${D}/usr/share/${P}/man

local rustc=rustc-bin-${PV}
local rustdoc=rustdoc-bin-${PV}

mv ${D}/opt/${P}/bin/rustc ${D}/opt/${P}/bin/${rustc} || die
mv ${D}/opt/${P}/bin/rustdoc ${D}/opt/${P}/bin/${rustdoc} || die
dosym /opt/${P}/bin/${rustc} /usr/bin/${rustc}
dosym /opt/${P}/bin/${rustdoc} /usr/bin/${rustdoc}

cat -EOF  ${T}/50${P}
LDPATH=/opt/${P}/lib
MANPATH=/usr/share/${P}/man
EOF
doenvd ${T}/50${P}

dodir /etc/env.d/rust
touch ${D}/etc/env.d/rust/provider-${P} || die
}

pkg_postinst() {
eselect rust update --if-unset

elog Rust uses slots now, use 'eselect rust list'
elog and 'eselect rust set' to list and set rust version.
elog For more information see 'eselect rust help'
elog and http://wiki.gentoo.org/wiki/Project:Eselect/User_guide;
}

pkg_postrm() {
eselect rust unset --if-invalid
}



1.1  dev-lang/rust-bin/rust-bin-999.ebuild

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

Index: rust-bin-999.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/rust-bin/rust-bin-999.ebuild,v 1.1 
2014/10/18 12:50:48 jauhien Exp $

EAPI=5

inherit eutils

DESCRIPTION=Systems programming language from Mozilla
HOMEPAGE=http://www.rust-lang.org/;
MY_SRC_URI=http://static.rust-lang.org/dist/rust-nightly;

LICENSE=|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA
SLOT=0
KEYWORDS=

IUSE=emacs vim-syntax zsh-completion

CDEPEND==app-admin/eselect-rust-0.2_pre20141011
!dev-lang/rust:0

DEPEND=${CDEPEND}
net-misc/wget

RDEPEND=${CDEPEND}
emacs? ( =app-emacs/rust-mode-${PV} )
vim-syntax? ( =app-vim/rust-mode-${PV} )
zsh-completion? ( =app-shells/rust-zshcomp-${PV} )


src_unpack() {
local postfix
use amd64  postfix=x86_64-unknown-linux-gnu
use x86  postfix=i686-unknown-linux-gnu

wget ${MY_SRC_URI}-${postfix}.tar.gz || die
unpack 

[gentoo-commits] gentoo-x86 commit in dev-lang/rust-bin/files: rust-bin-0.12.0-no-ldconfig.patch

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:50:48

  Added:rust-bin-0.12.0-no-ldconfig.patch
  Log:
  initila import from the rust overlay
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.1  dev-lang/rust-bin/files/rust-bin-0.12.0-no-ldconfig.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust-bin/files/rust-bin-0.12.0-no-ldconfig.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rust-bin/files/rust-bin-0.12.0-no-ldconfig.patch?rev=1.1content-type=text/plain

Index: rust-bin-0.12.0-no-ldconfig.patch
===
Remove ldconfig(1) execution to prevent the installation script from accessing
outside of a sandbox.

--- install.sh
+++ install.sh
@@ -466,17 +466,6 @@ while read p; do
 # The manifest lists all files to install
 done  ${CFG_SRC_DIR}/${CFG_LIBDIR_RELATIVE}/rustlib/manifest.in

-# Run ldconfig to make dynamic libraries available to the linker
-if [ $CFG_OSTYPE = Linux ]
-then
-ldconfig
-if [ $? -ne 0 ]
-then
-warn failed to run ldconfig.
-warn this may happen when not installing as root and may be fine
-fi
-fi
-
 # Sanity check: can we run the installed binaries?
 #
 # As with the verification above, make sure the right 
LD_LIBRARY_PATH-equivalent






[gentoo-commits] gentoo-x86 commit in app-admin/eselect-rust: ChangeLog eselect-rust-0.1_pre20140820.ebuild

2014-10-18 Thread Jauhien Piatlicki (jauhien)
jauhien 14/10/18 12:51:48

  Modified: ChangeLog
  Removed:  eselect-rust-0.1_pre20140820.ebuild
  Log:
  drop old version
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xB2EFA1D4)

Revision  ChangesPath
1.3  app-admin/eselect-rust/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-rust/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   18 Oct 2014 12:37:31 -  1.2
+++ ChangeLog   18 Oct 2014 12:51:48 -  1.3
@@ -1,6 +1,10 @@
 # ChangeLog for app-admin/eselect-rust
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-rust/ChangeLog,v 1.2 
2014/10/18 12:37:31 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-rust/ChangeLog,v 1.3 
2014/10/18 12:51:48 jauhien Exp $
+
+  18 Oct 2014; Jauhien Piatlicki jauh...@gentoo.org
+  -eselect-rust-0.1_pre20140820.ebuild:
+  drop old version
 
 *eselect-rust-0.2_pre20141011 (18 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.4.ebuild ChangeLog

2014-10-18 Thread Ian Delaney (idella4)
idella4 14/10/18 13:34:53

  Modified: psycopg-2.5.4.ebuild ChangeLog
  Log:
  add python-docs dep for doc build
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  dev-python/psycopg/psycopg-2.5.4.ebuild

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

Index: psycopg-2.5.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- psycopg-2.5.4.ebuild17 Oct 2014 16:47:06 -  1.1
+++ psycopg-2.5.4.ebuild18 Oct 2014 13:34:53 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.4.ebuild,v 
1.1 2014/10/17 16:47:06 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.4.ebuild,v 
1.2 2014/10/18 13:34:53 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
@@ -21,7 +21,8 @@
 
 RDEPEND==dev-db/postgresql-base-8.1
 DEPEND=${RDEPEND}
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   doc? (  dev-python/sphinx[${PYTHON_USEDEP}]
+   =dev-python/python-docs-2.7.6-r1:2.7 )
 
 RESTRICT=test
 # Remove py3.2 entry from intersphinx setting



1.176dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ChangeLog   17 Oct 2014 16:47:06 -  1.175
+++ ChangeLog   18 Oct 2014 13:34:53 -  1.176
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.175 
2014/10/17 16:47:06 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.176 
2014/10/18 13:34:53 idella4 Exp $
+
+  18 Oct 2014; Ian Delaney idel...@gentoo.org psycopg-2.5.4.ebuild:
+  add python-docs dep for doc build
 
 *psycopg-2.5.4 (17 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in www-client/firefox-bin: firefox-bin-31.2.0-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 13:54:58

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

Revision  ChangesPath
1.3  www-client/firefox-bin/firefox-bin-31.2.0-r1.ebuild

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

Index: firefox-bin-31.2.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/www-client/firefox-bin/firefox-bin-31.2.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- firefox-bin-31.2.0-r1.ebuild17 Oct 2014 21:40:15 -  1.2
+++ firefox-bin-31.2.0-r1.ebuild18 Oct 2014 13:54:58 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/www-client/firefox-bin/firefox-bin-31.2.0-r1.ebuild,v 
1.2 2014/10/17 21:40:15 axs Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/www-client/firefox-bin/firefox-bin-31.2.0-r1.ebuild,v 
1.3 2014/10/18 13:54:58 ago Exp $
 
 EAPI=5
 MOZ_ESR=1
@@ -36,7 +36,7 @@
 HOMEPAGE=http://www.mozilla.com/firefox;
 RESTRICT=strip mirror
 
-KEYWORDS=-* ~amd64 ~x86
+KEYWORDS=-* amd64 ~x86
 SLOT=0
 LICENSE=MPL-2.0 GPL-2 LGPL-2.1
 IUSE=selinux startup-notification



1.211www-client/firefox-bin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox-bin/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog   17 Oct 2014 21:40:15 -  1.210
+++ ChangeLog   18 Oct 2014 13:54:58 -  1.211
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/firefox-bin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox-bin/ChangeLog,v 1.210 
2014/10/17 21:40:15 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox-bin/ChangeLog,v 1.211 
2014/10/18 13:54:58 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org firefox-bin-31.2.0-r1.ebuild:
+  Stable for amd64, wrt bug #525474
 
   17 Oct 2014; Ian Stakenvicius (_AxS_) a...@gentoo.org
   firefox-bin-31.2.0-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in mail-client/thunderbird-bin: thunderbird-bin-31.2.0-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 13:55:02

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

Revision  ChangesPath
1.2  
mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild?r1=1.1r2=1.2

Index: thunderbird-bin-31.2.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- thunderbird-bin-31.2.0-r1.ebuild17 Oct 2014 21:41:43 -  1.1
+++ thunderbird-bin-31.2.0-r1.ebuild18 Oct 2014 13:55:02 -  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/mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild,v
 1.1 2014/10/17 21:41:43 axs Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild,v
 1.2 2014/10/18 13:55:02 ago Exp $
 
 EAPI=5
 MOZ_ESR=0
@@ -35,7 +35,7 @@
 HOMEPAGE=http://www.mozilla.com/thunderbird;
 RESTRICT=strip mirror
 
-KEYWORDS=-* ~amd64 ~x86
+KEYWORDS=-* amd64 ~x86
 SLOT=0
 LICENSE=MPL-2.0 GPL-2 LGPL-2.1
 IUSE=+crashreporter selinux



1.162mail-client/thunderbird-bin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird-bin/ChangeLog?rev=1.162view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird-bin/ChangeLog?rev=1.162content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird-bin/ChangeLog?r1=1.161r2=1.162

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/ChangeLog,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- ChangeLog   17 Oct 2014 21:41:43 -  1.161
+++ ChangeLog   18 Oct 2014 13:55:02 -  1.162
@@ -1,6 +1,10 @@
 # ChangeLog for mail-client/thunderbird-bin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/ChangeLog,v 
1.161 2014/10/17 21:41:43 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/ChangeLog,v 
1.162 2014/10/18 13:55:02 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org
+  thunderbird-bin-31.2.0-r1.ebuild:
+  Stable for amd64, wrt bug #525474
 
 *thunderbird-bin-31.2.0-r1 (17 Oct 2014)
 






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 13:55:06

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

Revision  ChangesPath
1.2  www-client/seamonkey-bin/seamonkey-bin-2.30-r1.ebuild

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

Index: seamonkey-bin-2.30-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.30-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- seamonkey-bin-2.30-r1.ebuild17 Oct 2014 21:49:00 -  1.1
+++ seamonkey-bin-2.30-r1.ebuild18 Oct 2014 13:55:06 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.30-r1.ebuild,v 
1.1 2014/10/17 21:49:00 axs Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.30-r1.ebuild,v 
1.2 2014/10/18 13:55:06 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.212www-client/seamonkey-bin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog   17 Oct 2014 21:49:00 -  1.211
+++ ChangeLog   18 Oct 2014 13:55:06 -  1.212
@@ -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.211 
2014/10/17 21:49:00 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v 1.212 
2014/10/18 13:55:06 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org seamonkey-bin-2.30-r1.ebuild:
+  Stable for amd64, wrt bug #525474
 
 *seamonkey-bin-2.30-r1 (17 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in mail-client/thunderbird-bin: thunderbird-bin-31.2.0-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 13:55:27

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

Revision  ChangesPath
1.3  
mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild

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

Index: thunderbird-bin-31.2.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- thunderbird-bin-31.2.0-r1.ebuild18 Oct 2014 13:55:02 -  1.2
+++ thunderbird-bin-31.2.0-r1.ebuild18 Oct 2014 13:55:27 -  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/mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild,v
 1.2 2014/10/18 13:55:02 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-31.2.0-r1.ebuild,v
 1.3 2014/10/18 13:55:27 ago Exp $
 
 EAPI=5
 MOZ_ESR=0
@@ -35,7 +35,7 @@
 HOMEPAGE=http://www.mozilla.com/thunderbird;
 RESTRICT=strip mirror
 
-KEYWORDS=-* amd64 ~x86
+KEYWORDS=-* amd64 x86
 SLOT=0
 LICENSE=MPL-2.0 GPL-2 LGPL-2.1
 IUSE=+crashreporter selinux



1.163mail-client/thunderbird-bin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird-bin/ChangeLog?rev=1.163view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird-bin/ChangeLog?rev=1.163content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird-bin/ChangeLog?r1=1.162r2=1.163

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/ChangeLog,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -r1.162 -r1.163
--- ChangeLog   18 Oct 2014 13:55:02 -  1.162
+++ ChangeLog   18 Oct 2014 13:55:27 -  1.163
@@ -1,6 +1,10 @@
 # ChangeLog for mail-client/thunderbird-bin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/ChangeLog,v 
1.162 2014/10/18 13:55:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/ChangeLog,v 
1.163 2014/10/18 13:55:27 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org
+  thunderbird-bin-31.2.0-r1.ebuild:
+  Stable for x86, wrt bug #525474
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org
   thunderbird-bin-31.2.0-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in www-client/firefox-bin: firefox-bin-31.2.0-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 13:55:23

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

Revision  ChangesPath
1.4  www-client/firefox-bin/firefox-bin-31.2.0-r1.ebuild

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

Index: firefox-bin-31.2.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/www-client/firefox-bin/firefox-bin-31.2.0-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- firefox-bin-31.2.0-r1.ebuild18 Oct 2014 13:54:58 -  1.3
+++ firefox-bin-31.2.0-r1.ebuild18 Oct 2014 13:55:23 -  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/firefox-bin/firefox-bin-31.2.0-r1.ebuild,v 
1.3 2014/10/18 13:54:58 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/www-client/firefox-bin/firefox-bin-31.2.0-r1.ebuild,v 
1.4 2014/10/18 13:55:23 ago Exp $
 
 EAPI=5
 MOZ_ESR=1
@@ -36,7 +36,7 @@
 HOMEPAGE=http://www.mozilla.com/firefox;
 RESTRICT=strip mirror
 
-KEYWORDS=-* amd64 ~x86
+KEYWORDS=-* amd64 x86
 SLOT=0
 LICENSE=MPL-2.0 GPL-2 LGPL-2.1
 IUSE=selinux startup-notification



1.212www-client/firefox-bin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox-bin/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog   18 Oct 2014 13:54:58 -  1.211
+++ ChangeLog   18 Oct 2014 13:55:23 -  1.212
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/firefox-bin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox-bin/ChangeLog,v 1.211 
2014/10/18 13:54:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox-bin/ChangeLog,v 1.212 
2014/10/18 13:55:23 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org firefox-bin-31.2.0-r1.ebuild:
+  Stable for x86, wrt bug #525474
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org firefox-bin-31.2.0-r1.ebuild:
   Stable for amd64, wrt bug #525474






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 13:55:31

  Modified: seamonkey-bin-2.30-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #525474
  
  (Portage version: 2.2.8-r2/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.30-r1.ebuild

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

Index: seamonkey-bin-2.30-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.30-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- seamonkey-bin-2.30-r1.ebuild18 Oct 2014 13:55:06 -  1.2
+++ seamonkey-bin-2.30-r1.ebuild18 Oct 2014 13:55:31 -  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.30-r1.ebuild,v 
1.2 2014/10/18 13:55:06 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.30-r1.ebuild,v 
1.3 2014/10/18 13:55:31 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.213www-client/seamonkey-bin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v
retrieving revision 1.212
retrieving revision 1.213
diff -u -r1.212 -r1.213
--- ChangeLog   18 Oct 2014 13:55:06 -  1.212
+++ ChangeLog   18 Oct 2014 13:55:31 -  1.213
@@ -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.212 
2014/10/18 13:55:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v 1.213 
2014/10/18 13:55:31 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org seamonkey-bin-2.30-r1.ebuild:
+  Stable for x86, wrt bug #525474
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org seamonkey-bin-2.30-r1.ebuild:
   Stable for amd64, wrt bug #525474






[gentoo-commits] gentoo-x86 commit in net-analyzer/ettercap: ettercap-0.8.1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 13:58:39

  Modified: ChangeLog
  Added:ettercap-0.8.1.ebuild
  Log:
  Version bump to 0.8.1 wrt bug #525580
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
7194459F)

Revision  ChangesPath
1.152net-analyzer/ettercap/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog   23 Feb 2014 16:19:25 -  1.151
+++ ChangeLog   18 Oct 2014 13:58:39 -  1.152
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/ettercap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v 1.151 
2014/02/23 16:19:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v 1.152 
2014/10/18 13:58:39 ago Exp $
+
+*ettercap-0.8.1 (18 Oct 2014)
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org +ettercap-0.8.1.ebuild:
+  Version bump to 0.8.1 wrt bug #525580
 
   23 Feb 2014; Agostino Sarubbo a...@gentoo.org ettercap-0.8.0-r1.ebuild:
   Fix compilation on ppc, thanks to upstream author Gianfranco Costamagna, wrt



1.1  net-analyzer/ettercap/ettercap-0.8.1.ebuild

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

Index: ettercap-0.8.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/ettercap/ettercap-0.8.1.ebuild,v 1.1 
2014/10/18 13:58:39 ago Exp $

EAPI=5

CMAKE_MIN_VERSION=2.8

inherit cmake-utils

DESCRIPTION=A suite for man in the middle attacks
HOMEPAGE=https://github.com/Ettercap/ettercap;
SRC_URI=https://github.com/Ettercap/${PN}/archive/v${PV}.tar.gz - 
${P}.tar.gz #mirror does not work

LICENSE=GPL-2+
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
IUSE=gtk ipv6 ncurses +plugins

RDEPEND=dev-libs/libpcre
dev-libs/openssl
net-libs/libnet:1.1
=net-libs/libpcap-0.8.1
sys-libs/zlib
gtk? (
=dev-libs/atk-1.2.4
=dev-libs/glib-2.2.2:2
media-libs/freetype
x11-libs/cairo
x11-libs/gdk-pixbuf:2
=x11-libs/gtk+-2.2.2:2
=x11-libs/pango-1.2.3
)
ncurses? ( =sys-libs/ncurses-5.3 )
plugins? (
=net-misc/curl-7.26.0
sys-devel/libtool
)

DEPEND=${RDEPEND}
app-text/ghostscript-gpl
sys-devel/flex
virtual/yacc

src_prepare() {
sed -i s:Release:Release Gentoo: CMakeLists.txt || die
}

src_configure() {
local mycmakeargs=(
$(cmake-utils_use_enable ncurses CURSES)
$(cmake-utils_use_enable gtk)
$(cmake-utils_use_enable plugins)
$(cmake-utils_use_enable ipv6)
-DENABLE_SSL=ON
-DINSTALL_SYSCONFDIR=${EROOT}etc
)
cmake-utils_src_configure
}






[gentoo-commits] gentoo-x86 commit in dev-python/waitress: waitress-0.8.9.ebuild ChangeLog

2014-10-18 Thread Ian Delaney (idella4)
idella4 14/10/18 14:01:42

  Modified: waitress-0.8.9.ebuild ChangeLog
  Log:
  fix doc build, fixes Bug #525384
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.4  dev-python/waitress/waitress-0.8.9.ebuild

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

Index: waitress-0.8.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/waitress/waitress-0.8.9.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- waitress-0.8.9.ebuild   10 Oct 2014 23:53:40 -  1.3
+++ waitress-0.8.9.ebuild   18 Oct 2014 14:01:42 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/waitress/waitress-0.8.9.ebuild,v 
1.3 2014/10/10 23:53:40 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/waitress/waitress-0.8.9.ebuild,v 
1.4 2014/10/18 14:01:42 idella4 Exp $
 
 EAPI=5
 
@@ -29,6 +29,10 @@
einfo doc patch applied
mv ${WORKDIR}/_themes ./docs/ || die
fi
+
+   # Fix generation of documentation with Waitress not installed. Bug 
#525384
+   sed -e s/^version = 
pkg_resources.get_distribution('waitress').version$/version = '${PV}'/ -i 
docs/conf.py
+
distutils-r1_python_prepare_all
 }
 



1.11 dev-python/waitress/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/waitress/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   10 Oct 2014 23:53:40 -  1.10
+++ ChangeLog   18 Oct 2014 14:01:42 -  1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/waitress
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/waitress/ChangeLog,v 1.10 
2014/10/10 23:53:40 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/waitress/ChangeLog,v 1.11 
2014/10/18 14:01:42 idella4 Exp $
+
+  18 Oct 2014; Ian Delaney idel...@gentoo.org waitress-0.8.9.ebuild:
+  fix doc build, fixes Bug #525384
 
   10 Oct 2014; Ian Delaney idel...@gentoo.org waitress-0.8.9.ebuild:
   correction to dep nose






[gentoo-commits] gentoo-x86 commit in dev-db/mysql: mysql-5.5.40.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:00

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

Revision  ChangesPath
1.11 dev-db/mysql/mysql-5.5.40.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild?r1=1.10r2=1.11

Index: mysql-5.5.40.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- mysql-5.5.40.ebuild 17 Oct 2014 13:26:42 -  1.10
+++ mysql-5.5.40.ebuild 18 Oct 2014 14:05: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/dev-db/mysql/mysql-5.5.40.ebuild,v 1.10 
2014/10/17 13:26:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild,v 1.11 
2014/10/18 14:05:00 ago Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 EGIT_REPO_URI=git://git.overlays.gentoo.org/proj/mysql-extras.git
 
 # REMEMBER: also update eclass/mysql*.eclass before committing!
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
 
 # When MY_EXTRAS is bumped, the index should be revised to exclude these.
 EPATCH_EXCLUDE=''



1.703dev-db/mysql/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v
retrieving revision 1.702
retrieving revision 1.703
diff -u -r1.702 -r1.703
--- ChangeLog   17 Oct 2014 13:26:42 -  1.702
+++ ChangeLog   18 Oct 2014 14:05:00 -  1.703
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/mysql
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.702 2014/10/17 
13:26:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.703 2014/10/18 
14:05:00 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org mysql-5.5.40.ebuild:
+  Stable for ia64, wrt bug #525504
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org mysql-5.5.40.ebuild:
   Stable for ppc64, wrt bug #525504






[gentoo-commits] gentoo-x86 commit in net-proxy/squid: squid-3.3.13-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:09

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

Revision  ChangesPath
1.10 net-proxy/squid/squid-3.3.13-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild?r1=1.9r2=1.10

Index: squid-3.3.13-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- squid-3.3.13-r1.ebuild  17 Oct 2014 13:38:28 -  1.9
+++ squid-3.3.13-r1.ebuild  18 Oct 2014 14:05:09 -  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/net-proxy/squid/squid-3.3.13-r1.ebuild,v 
1.9 2014/10/17 13:38:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild,v 
1.10 2014/10/18 14:05:09 ago Exp $
 
 EAPI=5
 inherit autotools eutils linux-info pam toolchain-funcs user versionator
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd
 IUSE=caps ipv6 pam ldap samba sasl kerberos nis radius ssl snmp selinux 
logrotate test \
ecap icap-client ssl-crtd \
mysql postgres sqlite \



1.492net-proxy/squid/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/ChangeLog?rev=1.492view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/ChangeLog?rev=1.492content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/ChangeLog?r1=1.491r2=1.492

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-proxy/squid/ChangeLog,v
retrieving revision 1.491
retrieving revision 1.492
diff -u -r1.491 -r1.492
--- ChangeLog   17 Oct 2014 13:38:28 -  1.491
+++ ChangeLog   18 Oct 2014 14:05:09 -  1.492
@@ -1,6 +1,9 @@
 # ChangeLog for net-proxy/squid
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/ChangeLog,v 1.491 
2014/10/17 13:38:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/ChangeLog,v 1.492 
2014/10/18 14:05:09 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org squid-3.3.13-r1.ebuild:
+  Stable for ia64, wrt bug #522498
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org squid-3.3.13-r1.ebuild:
   Stable for ppc64, wrt bug #522498






[gentoo-commits] gentoo-x86 commit in dev-python/pyxdg: pyxdg-0.25-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:22

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

Revision  ChangesPath
1.10 dev-python/pyxdg/pyxdg-0.25-r1.ebuild

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

Index: pyxdg-0.25-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxdg/pyxdg-0.25-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- pyxdg-0.25-r1.ebuild17 Oct 2014 13:27:01 -  1.9
+++ pyxdg-0.25-r1.ebuild18 Oct 2014 14:05:22 -  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-python/pyxdg/pyxdg-0.25-r1.ebuild,v 1.9 
2014/10/17 13:27:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/pyxdg-0.25-r1.ebuild,v 
1.10 2014/10/18 14:05:22 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=LGPL-2
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd
 IUSE=test
 
 DEPEND=test? ( dev-python/nose[${PYTHON_USEDEP}]



1.128dev-python/pyxdg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog   17 Oct 2014 13:27:01 -  1.127
+++ ChangeLog   18 Oct 2014 14:05:22 -  1.128
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyxdg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.127 
2014/10/17 13:27:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.128 
2014/10/18 14:05:22 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org pyxdg-0.25-r1.ebuild:
+  Stable for ia64, wrt bug #498934
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org pyxdg-0.25-r1.ebuild:
   Stable for ppc64, wrt bug #498934






[gentoo-commits] gentoo-x86 commit in mail-mta/exim: exim-4.84.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:30

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

Revision  ChangesPath
1.11 mail-mta/exim/exim-4.84.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/exim/exim-4.84.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/exim/exim-4.84.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/exim/exim-4.84.ebuild?r1=1.10r2=1.11

Index: exim-4.84.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.84.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- exim-4.84.ebuild17 Oct 2014 13:38:36 -  1.10
+++ exim-4.84.ebuild18 Oct 2014 14:05:30 -  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/mail-mta/exim/exim-4.84.ebuild,v 1.10 
2014/10/17 13:38:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.84.ebuild,v 1.11 
2014/10/18 14:05:30 ago Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 
 SLOT=0
 LICENSE=GPL-2
-KEYWORDS=alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-solaris
+KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-solaris
 
 COMMON_DEPEND==sys-apps/sed-4.0.5
=sys-libs/db-3.2



1.298mail-mta/exim/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -r1.297 -r1.298
--- ChangeLog   17 Oct 2014 13:38:36 -  1.297
+++ ChangeLog   18 Oct 2014 14:05:30 -  1.298
@@ -1,6 +1,9 @@
 # ChangeLog for mail-mta/exim
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.297 2014/10/17 
13:38:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.298 2014/10/18 
14:05:30 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org exim-4.84.ebuild:
+  Stable for ia64, wrt bug #524154
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org exim-4.84.ebuild:
   Stable for ppc64, wrt bug #524154






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:33

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

Revision  ChangesPath
1.9  dev-libs/hiredis/hiredis-0.11.0-r1.ebuild

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

Index: hiredis-0.11.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/hiredis/hiredis-0.11.0-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- hiredis-0.11.0-r1.ebuild17 Oct 2014 13:38:40 -  1.8
+++ hiredis-0.11.0-r1.ebuild18 Oct 2014 14:05:33 -  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/hiredis/hiredis-0.11.0-r1.ebuild,v 
1.8 2014/10/17 13:38:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/hiredis/hiredis-0.11.0-r1.ebuild,v 
1.9 2014/10/18 14:05:33 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ppc ppc64 x86 ~x86-fbsd ~x64-solaris
+KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 x86 ~x86-fbsd ~x64-solaris
 IUSE=static-libs
 
 src_prepare() {



1.18 dev-libs/hiredis/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/hiredis/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   17 Oct 2014 13:38:40 -  1.17
+++ ChangeLog   18 Oct 2014 14:05:33 -  1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/hiredis
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/hiredis/ChangeLog,v 1.17 
2014/10/17 13:38:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/hiredis/ChangeLog,v 1.18 
2014/10/18 14:05:33 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org hiredis-0.11.0-r1.ebuild:
+  Stable for ia64, wrt bug #524154
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org hiredis-0.11.0-r1.ebuild:
   Stable for ppc64, wrt bug #524154






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:04

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

Revision  ChangesPath
1.2  dev-db/mariadb/mariadb-5.5.40-r1.ebuild

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

Index: mariadb-5.5.40-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.5.40-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mariadb-5.5.40-r1.ebuild17 Oct 2014 14:35:12 -  1.1
+++ mariadb-5.5.40-r1.ebuild18 Oct 2014 14:05:04 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.5.40-r1.ebuild,v 
1.1 2014/10/17 14:35:12 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.5.40-r1.ebuild,v 
1.2 2014/10/18 14:05:04 ago Exp $
 
 EAPI=5
 MY_EXTRAS_VER=20141017-1419Z
@@ -13,7 +13,7 @@
 IUSE=$IUSE
 
 # REMEMBER: also update eclass/mysql*.eclass before committing!
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
 
 # When MY_EXTRAS is bumped, the index should be revised to exclude these.
 EPATCH_EXCLUDE=''



1.67 dev-db/mariadb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mariadb/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog   17 Oct 2014 14:35:12 -  1.66
+++ ChangeLog   18 Oct 2014 14:05:04 -  1.67
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/mariadb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/ChangeLog,v 1.66 2014/10/17 
14:35:12 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/ChangeLog,v 1.67 2014/10/18 
14:05:04 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org mariadb-5.5.40-r1.ebuild:
+  Stable for ia64, wrt bug #525504
 
 *mariadb-5.5.40-r1 (17 Oct 2014)
 






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:18

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

Revision  ChangesPath
1.11 dev-libs/nspr/nspr-4.10.6-r1.ebuild

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

Index: nspr-4.10.6-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- nspr-4.10.6-r1.ebuild   15 Oct 2014 13:18:42 -  1.10
+++ nspr-4.10.6-r1.ebuild   18 Oct 2014 14:05:18 -  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/nspr/nspr-4.10.6-r1.ebuild,v 1.10 
2014/10/15 13:18:42 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6-r1.ebuild,v 1.11 
2014/10/18 14:05: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
 
 RDEPEND=



1.284dev-libs/nspr/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v
retrieving revision 1.283
retrieving revision 1.284
diff -u -r1.283 -r1.284
--- ChangeLog   16 Oct 2014 17:44:25 -  1.283
+++ ChangeLog   18 Oct 2014 14:05:18 -  1.284
@@ -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.283 2014/10/16 
17:44:25 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.284 2014/10/18 
14:05:18 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6-r1.ebuild:
+  Stable for ia64, wrt bug #523652
 
 *nspr-4.10.7-r1 (16 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/Switch: Switch-2.160.0-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:39

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

Revision  ChangesPath
1.5  dev-perl/Switch/Switch-2.160.0-r1.ebuild

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

Index: Switch-2.160.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Switch/Switch-2.160.0-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- Switch-2.160.0-r1.ebuild17 Oct 2014 13:38:47 -  1.4
+++ Switch-2.160.0-r1.ebuild18 Oct 2014 14:05:39 -  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-perl/Switch/Switch-2.160.0-r1.ebuild,v 
1.4 2014/10/17 13:38:47 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Switch/Switch-2.160.0-r1.ebuild,v 
1.5 2014/10/18 14:05:39 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 SRC_URI+= 
http://dev.gentoo.org/~tove/distfiles/perl-core/Switch/Switch-2.16-rt60380.patch;
 
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ppc ppc64 x86 ~x86-fbsd
+KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 x86 ~x86-fbsd
 IUSE=
 
 SRC_TEST=do



1.5  dev-perl/Switch/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Switch/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   17 Oct 2014 13:38:47 -  1.4
+++ ChangeLog   18 Oct 2014 14:05:39 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Switch
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Switch/ChangeLog,v 1.4 2014/10/17 
13:38:47 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Switch/ChangeLog,v 1.5 2014/10/18 
14:05:39 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org Switch-2.160.0-r1.ebuild:
+  Stable for ia64, wrt bug #524154
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org Switch-2.160.0-r1.ebuild:
   Stable for ppc64, wrt bug #524154






[gentoo-commits] gentoo-x86 commit in dev-libs/nss: nss-3.16.5.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:15

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

Revision  ChangesPath
1.9  dev-libs/nss/nss-3.16.5.ebuild

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

Index: nss-3.16.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.16.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nss-3.16.5.ebuild   17 Oct 2014 13:26:56 -  1.8
+++ nss-3.16.5.ebuild   18 Oct 2014 14:05:15 -  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/nss/nss-3.16.5.ebuild,v 1.8 
2014/10/17 13:26:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.16.5.ebuild,v 1.9 
2014/10/18 14:05:15 ago Exp $
 
 EAPI=5
 inherit eutils flag-o-matic multilib toolchain-funcs multilib-minimal
@@ -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-0-r1[${MULTILIB_USEDEP}]



1.390dev-libs/nss/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v
retrieving revision 1.389
retrieving revision 1.390
diff -u -r1.389 -r1.390
--- ChangeLog   17 Oct 2014 13:26:56 -  1.389
+++ ChangeLog   18 Oct 2014 14:05:15 -  1.390
@@ -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.389 2014/10/17 
13:26:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.390 2014/10/18 
14:05:15 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org nss-3.16.5.ebuild:
+  Stable for ia64, wrt bug #523652
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org nss-3.16.5.ebuild:
   Stable for ppc64, wrt bug #523652






[gentoo-commits] gentoo-x86 commit in app-admin/sysklogd: sysklogd-1.5.1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:48

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

Revision  ChangesPath
1.8  app-admin/sysklogd/sysklogd-1.5.1.ebuild

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

Index: sysklogd-1.5.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/sysklogd/sysklogd-1.5.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sysklogd-1.5.1.ebuild   17 Oct 2014 13:26:51 -  1.7
+++ sysklogd-1.5.1.ebuild   18 Oct 2014 14:05:48 -  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-admin/sysklogd/sysklogd-1.5.1.ebuild,v 
1.7 2014/10/17 13:26:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sysklogd/sysklogd-1.5.1.ebuild,v 
1.8 2014/10/18 14:05:48 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86
 IUSE=logrotate
 RESTRICT=test
 



1.98 app-admin/sysklogd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/sysklogd/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog   17 Oct 2014 13:26:51 -  1.97
+++ ChangeLog   18 Oct 2014 14:05:48 -  1.98
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/sysklogd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sysklogd/ChangeLog,v 1.97 
2014/10/17 13:26:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sysklogd/ChangeLog,v 1.98 
2014/10/18 14:05:48 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org sysklogd-1.5.1.ebuild:
+  Stable for ia64, wrt bug #524058
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org sysklogd-1.5.1.ebuild:
   Stable for ppc64, wrt bug #524058






[gentoo-commits] gentoo-x86 commit in dev-libs/openssl: openssl-1.0.1j.ebuild ChangeLog

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

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

Revision  ChangesPath
1.7  dev-libs/openssl/openssl-1.0.1j.ebuild

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

Index: openssl-1.0.1j.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1j.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- openssl-1.0.1j.ebuild   17 Oct 2014 12:36:40 -  1.6
+++ openssl-1.0.1j.ebuild   18 Oct 2014 14:05:44 -  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.1j.ebuild,v 
1.6 2014/10/17 12:36:40 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1j.ebuild,v 
1.7 2014/10/18 14:05:44 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE=openssl
 SLOT=0
-KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=bindist gmp kerberos rfc3779 sse2 static-libs test +tls-heartbeat 
vanilla zlib
 
 # The blocks are temporary just to make sure people upgrade to a



1.608dev-libs/openssl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.607
retrieving revision 1.608
diff -u -r1.607 -r1.608
--- ChangeLog   17 Oct 2014 12:36:40 -  1.607
+++ ChangeLog   18 Oct 2014 14:05:44 -  1.608
@@ -1,6 +1,9 @@
 # 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.607 
2014/10/17 12:36:40 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.608 
2014/10/18 14:05:44 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org openssl-1.0.1j.ebuild:
+  Stable for ia64, wrt bug #525468
 
   17 Oct 2014; Anthony G. Basile bluen...@gentoo.org openssl-1.0.1j.ebuild:
   Stable on ppc and ppc64, bug #525468






[gentoo-commits] gentoo-x86 commit in mail-filter/opendmarc: opendmarc-1.1.3.ebuild ChangeLog

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

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

Revision  ChangesPath
1.15 mail-filter/opendmarc/opendmarc-1.1.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild?r1=1.14r2=1.15

Index: opendmarc-1.1.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- opendmarc-1.1.3.ebuild  17 Oct 2014 13:38:44 -  1.14
+++ opendmarc-1.1.3.ebuild  18 Oct 2014 14:05:36 -  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/mail-filter/opendmarc/opendmarc-1.1.3.ebuild,v 1.14 
2014/10/17 13:38:44 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild,v 1.15 
2014/10/18 14:05:36 ago Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=alpha amd64 hppa ~ia64 ppc ppc64 x86 ~x86-fbsd
+KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 x86 ~x86-fbsd
 IUSE=
 
 DEPEND=dev-perl/DBI



1.18 mail-filter/opendmarc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   17 Oct 2014 13:38:44 -  1.17
+++ ChangeLog   18 Oct 2014 14:05:36 -  1.18
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/opendmarc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v 1.17 
2014/10/17 13:38:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v 1.18 
2014/10/18 14:05:36 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org opendmarc-1.1.3.ebuild:
+  Stable for ia64, wrt bug #524154
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org opendmarc-1.1.3.ebuild:
   Stable for ppc64, wrt bug #524154






[gentoo-commits] gentoo-x86 commit in virtual/perl-File-Temp: perl-File-Temp-0.230.0-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:54

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

Revision  ChangesPath
1.9  virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild?r1=1.8r2=1.9

Index: perl-File-Temp-0.230.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- perl-File-Temp-0.230.0-r1.ebuild17 Oct 2014 13:27:07 -  1.8
+++ perl-File-Temp-0.230.0-r1.ebuild18 Oct 2014 14:05:54 -  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/virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild,v
 1.8 2014/10/17 13:27:07 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild,v
 1.9 2014/10/18 14:05:54 ago Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 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 ~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
+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 ~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=
 RDEPEND=



1.87 virtual/perl-File-Temp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-File-Temp/ChangeLog?rev=1.87view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-File-Temp/ChangeLog?rev=1.87content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-File-Temp/ChangeLog?r1=1.86r2=1.87

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-File-Temp/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   17 Oct 2014 13:27:07 -  1.86
+++ ChangeLog   18 Oct 2014 14:05:54 -  1.87
@@ -1,6 +1,10 @@
 # ChangeLog for virtual/perl-File-Temp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-File-Temp/ChangeLog,v 1.86 
2014/10/17 13:27:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-File-Temp/ChangeLog,v 1.87 
2014/10/18 14:05:54 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org
+  perl-File-Temp-0.230.0-r1.ebuild:
+  Stable for ia64, wrt bug #390719
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org
   perl-File-Temp-0.230.0-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-lang/perl: perl-5.18.2-r2.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:06:01

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

Revision  ChangesPath
1.9  dev-lang/perl/perl-5.18.2-r2.ebuild

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

Index: perl-5.18.2-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/perl/perl-5.18.2-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- perl-5.18.2-r2.ebuild   17 Oct 2014 13:27:15 -  1.8
+++ perl-5.18.2-r2.ebuild   18 Oct 2014 14:06:01 -  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-lang/perl/perl-5.18.2-r2.ebuild,v 1.8 
2014/10/17 13:27:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/perl-5.18.2-r2.ebuild,v 1.9 
2014/10/18 14:06:01 ago Exp $
 
 EAPI=5
 
@@ -27,7 +27,7 @@
 
 LICENSE=|| ( Artistic GPL-1+ )
 SLOT=0/${SHORT_PV}
-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 ~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
+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 ~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=berkdb debug doc gdbm ithreads
 
 RDEPEND=



1.446dev-lang/perl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/perl/ChangeLog,v
retrieving revision 1.445
retrieving revision 1.446
diff -u -r1.445 -r1.446
--- ChangeLog   17 Oct 2014 13:27:15 -  1.445
+++ ChangeLog   18 Oct 2014 14:06:01 -  1.446
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/perl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/ChangeLog,v 1.445 2014/10/17 
13:27:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/ChangeLog,v 1.446 2014/10/18 
14:06:01 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org perl-5.18.2-r2.ebuild:
+  Stable for ia64, wrt bug #390719
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org perl-5.18.2-r2.ebuild:
   Stable for ppc64, wrt bug #390719






[gentoo-commits] gentoo-x86 commit in perl-core/File-Temp: File-Temp-0.230.0.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:05:57

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

Revision  ChangesPath
1.10 perl-core/File-Temp/File-Temp-0.230.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild?r1=1.9r2=1.10

Index: File-Temp-0.230.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- File-Temp-0.230.0.ebuild17 Oct 2014 13:27:11 -  1.9
+++ File-Temp-0.230.0.ebuild18 Oct 2014 14:05:57 -  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/perl-core/File-Temp/File-Temp-0.230.0.ebuild,v 1.9 
2014/10/17 13:27:11 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild,v 1.10 
2014/10/18 14:05:57 ago Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION=File::Temp can be used to create and open temporary files in a 
safe way
 
 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 ~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
+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 ~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=
 
 # bug 390719



1.78 perl-core/File-Temp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/ChangeLog?rev=1.78view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/ChangeLog?rev=1.78content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/ChangeLog?r1=1.77r2=1.78

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/perl-core/File-Temp/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog   17 Oct 2014 13:27:11 -  1.77
+++ ChangeLog   18 Oct 2014 14:05:57 -  1.78
@@ -1,6 +1,9 @@
 # ChangeLog for perl-core/File-Temp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/perl-core/File-Temp/ChangeLog,v 1.77 
2014/10/17 13:27:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/perl-core/File-Temp/ChangeLog,v 1.78 
2014/10/18 14:05:57 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org File-Temp-0.230.0.ebuild:
+  Stable for ia64, wrt bug #390719
 
   17 Oct 2014; Agostino Sarubbo a...@gentoo.org File-Temp-0.230.0.ebuild:
   Stable for ppc64, wrt bug #390719






[gentoo-commits] gentoo-x86 commit in dev-db/mysql: mysql-5.5.40.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:03

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

Revision  ChangesPath
1.12 dev-db/mysql/mysql-5.5.40.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild?r1=1.11r2=1.12

Index: mysql-5.5.40.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- mysql-5.5.40.ebuild 18 Oct 2014 14:05:00 -  1.11
+++ mysql-5.5.40.ebuild 18 Oct 2014 14:09:03 -  1.12
@@ -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-db/mysql/mysql-5.5.40.ebuild,v 1.11 
2014/10/18 14:05:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.5.40.ebuild,v 1.12 
2014/10/18 14:09:03 ago Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 EGIT_REPO_URI=git://git.overlays.gentoo.org/proj/mysql-extras.git
 
 # REMEMBER: also update eclass/mysql*.eclass before committing!
-KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
 
 # When MY_EXTRAS is bumped, the index should be revised to exclude these.
 EPATCH_EXCLUDE=''



1.704dev-db/mysql/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v
retrieving revision 1.703
retrieving revision 1.704
diff -u -r1.703 -r1.704
--- ChangeLog   18 Oct 2014 14:05:00 -  1.703
+++ ChangeLog   18 Oct 2014 14:09:03 -  1.704
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/mysql
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.703 2014/10/18 
14:05:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.704 2014/10/18 
14:09:03 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org mysql-5.5.40.ebuild:
+  Stable for sparc, wrt bug #525504
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org mysql-5.5.40.ebuild:
   Stable for ia64, wrt bug #525504






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:21

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

Revision  ChangesPath
1.12 dev-libs/nspr/nspr-4.10.6-r1.ebuild

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

Index: nspr-4.10.6-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- nspr-4.10.6-r1.ebuild   18 Oct 2014 14:05:18 -  1.11
+++ nspr-4.10.6-r1.ebuild   18 Oct 2014 14:09:21 -  1.12
@@ -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-r1.ebuild,v 1.11 
2014/10/18 14:05:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.6-r1.ebuild,v 1.12 
2014/10/18 14:09:21 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
 
 RDEPEND=



1.285dev-libs/nspr/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -r1.284 -r1.285
--- ChangeLog   18 Oct 2014 14:05:18 -  1.284
+++ ChangeLog   18 Oct 2014 14:09:21 -  1.285
@@ -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.284 2014/10/18 
14:05:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.285 2014/10/18 
14:09:21 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6-r1.ebuild:
+  Stable for sparc, wrt bug #523652
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org nspr-4.10.6-r1.ebuild:
   Stable for ia64, wrt bug #523652






[gentoo-commits] gentoo-x86 commit in net-proxy/squid: squid-3.3.13-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:12

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

Revision  ChangesPath
1.11 net-proxy/squid/squid-3.3.13-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild?r1=1.10r2=1.11

Index: squid-3.3.13-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- squid-3.3.13-r1.ebuild  18 Oct 2014 14:05:09 -  1.10
+++ squid-3.3.13-r1.ebuild  18 Oct 2014 14:09:12 -  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/net-proxy/squid/squid-3.3.13-r1.ebuild,v 
1.10 2014/10/18 14:05:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild,v 
1.11 2014/10/18 14:09:12 ago Exp $
 
 EAPI=5
 inherit autotools eutils linux-info pam toolchain-funcs user versionator
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd
 IUSE=caps ipv6 pam ldap samba sasl kerberos nis radius ssl snmp selinux 
logrotate test \
ecap icap-client ssl-crtd \
mysql postgres sqlite \



1.493net-proxy/squid/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-proxy/squid/ChangeLog,v
retrieving revision 1.492
retrieving revision 1.493
diff -u -r1.492 -r1.493
--- ChangeLog   18 Oct 2014 14:05:09 -  1.492
+++ ChangeLog   18 Oct 2014 14:09:12 -  1.493
@@ -1,6 +1,9 @@
 # ChangeLog for net-proxy/squid
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/ChangeLog,v 1.492 
2014/10/18 14:05:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/ChangeLog,v 1.493 
2014/10/18 14:09:12 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org squid-3.3.13-r1.ebuild:
+  Stable for sparc, wrt bug #522498
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org squid-3.3.13-r1.ebuild:
   Stable for ia64, wrt bug #522498






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:36

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

Revision  ChangesPath
1.10 dev-libs/hiredis/hiredis-0.11.0-r1.ebuild

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

Index: hiredis-0.11.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/hiredis/hiredis-0.11.0-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- hiredis-0.11.0-r1.ebuild18 Oct 2014 14:05:33 -  1.9
+++ hiredis-0.11.0-r1.ebuild18 Oct 2014 14:09:36 -  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/hiredis/hiredis-0.11.0-r1.ebuild,v 
1.9 2014/10/18 14:05:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/hiredis/hiredis-0.11.0-r1.ebuild,v 
1.10 2014/10/18 14:09:36 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 x86 ~x86-fbsd ~x64-solaris
+KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~x64-solaris
 IUSE=static-libs
 
 src_prepare() {



1.19 dev-libs/hiredis/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/hiredis/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   18 Oct 2014 14:05:33 -  1.18
+++ ChangeLog   18 Oct 2014 14:09:36 -  1.19
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/hiredis
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/hiredis/ChangeLog,v 1.18 
2014/10/18 14:05:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/hiredis/ChangeLog,v 1.19 
2014/10/18 14:09:36 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org hiredis-0.11.0-r1.ebuild:
+  Stable for sparc, wrt bug #524154
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org hiredis-0.11.0-r1.ebuild:
   Stable for ia64, wrt bug #524154






[gentoo-commits] gentoo-x86 commit in mail-mta/exim: exim-4.84.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:33

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

Revision  ChangesPath
1.12 mail-mta/exim/exim-4.84.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/exim/exim-4.84.ebuild?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/exim/exim-4.84.ebuild?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/exim/exim-4.84.ebuild?r1=1.11r2=1.12

Index: exim-4.84.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.84.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- exim-4.84.ebuild18 Oct 2014 14:05:30 -  1.11
+++ exim-4.84.ebuild18 Oct 2014 14:09:33 -  1.12
@@ -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-mta/exim/exim-4.84.ebuild,v 1.11 
2014/10/18 14:05:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.84.ebuild,v 1.12 
2014/10/18 14:09:33 ago Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 
 SLOT=0
 LICENSE=GPL-2
-KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-solaris
+KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-solaris
 
 COMMON_DEPEND==sys-apps/sed-4.0.5
=sys-libs/db-3.2



1.299mail-mta/exim/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v
retrieving revision 1.298
retrieving revision 1.299
diff -u -r1.298 -r1.299
--- ChangeLog   18 Oct 2014 14:05:30 -  1.298
+++ ChangeLog   18 Oct 2014 14:09:33 -  1.299
@@ -1,6 +1,9 @@
 # ChangeLog for mail-mta/exim
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.298 2014/10/18 
14:05:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.299 2014/10/18 
14:09:33 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org exim-4.84.ebuild:
+  Stable for sparc, wrt bug #524154
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org exim-4.84.ebuild:
   Stable for ia64, wrt bug #524154






[gentoo-commits] gentoo-x86 commit in mail-filter/opendmarc: opendmarc-1.1.3.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:39

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

Revision  ChangesPath
1.16 mail-filter/opendmarc/opendmarc-1.1.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild?rev=1.16view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild?rev=1.16content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild?r1=1.15r2=1.16

Index: opendmarc-1.1.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- opendmarc-1.1.3.ebuild  18 Oct 2014 14:05:36 -  1.15
+++ opendmarc-1.1.3.ebuild  18 Oct 2014 14:09:39 -  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/mail-filter/opendmarc/opendmarc-1.1.3.ebuild,v 1.15 
2014/10/18 14:05:36 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/mail-filter/opendmarc/opendmarc-1.1.3.ebuild,v 1.16 
2014/10/18 14:09:39 ago Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 x86 ~x86-fbsd
+KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd
 IUSE=
 
 DEPEND=dev-perl/DBI



1.19 mail-filter/opendmarc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   18 Oct 2014 14:05:36 -  1.18
+++ ChangeLog   18 Oct 2014 14:09:39 -  1.19
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/opendmarc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v 1.18 
2014/10/18 14:05:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v 1.19 
2014/10/18 14:09:39 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org opendmarc-1.1.3.ebuild:
+  Stable for sparc, wrt bug #524154
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org opendmarc-1.1.3.ebuild:
   Stable for ia64, wrt bug #524154






[gentoo-commits] gentoo-x86 commit in dev-libs/nss: nss-3.16.5.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:18

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

Revision  ChangesPath
1.10 dev-libs/nss/nss-3.16.5.ebuild

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

Index: nss-3.16.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.16.5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nss-3.16.5.ebuild   18 Oct 2014 14:05:15 -  1.9
+++ nss-3.16.5.ebuild   18 Oct 2014 14:09:18 -  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.5.ebuild,v 1.9 
2014/10/18 14:05:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.16.5.ebuild,v 1.10 
2014/10/18 14:09:18 ago Exp $
 
 EAPI=5
 inherit eutils flag-o-matic multilib toolchain-funcs multilib-minimal
@@ -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-0-r1[${MULTILIB_USEDEP}]



1.391dev-libs/nss/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v
retrieving revision 1.390
retrieving revision 1.391
diff -u -r1.390 -r1.391
--- ChangeLog   18 Oct 2014 14:05:15 -  1.390
+++ ChangeLog   18 Oct 2014 14:09:18 -  1.391
@@ -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.390 2014/10/18 
14:05:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.391 2014/10/18 
14:09:18 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org nss-3.16.5.ebuild:
+  Stable for sparc, wrt bug #523652
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org nss-3.16.5.ebuild:
   Stable for ia64, wrt bug #523652






[gentoo-commits] gentoo-x86 commit in dev-perl/Switch: Switch-2.160.0-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:42

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

Revision  ChangesPath
1.6  dev-perl/Switch/Switch-2.160.0-r1.ebuild

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

Index: Switch-2.160.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Switch/Switch-2.160.0-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Switch-2.160.0-r1.ebuild18 Oct 2014 14:05:39 -  1.5
+++ Switch-2.160.0-r1.ebuild18 Oct 2014 14:09:42 -  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-perl/Switch/Switch-2.160.0-r1.ebuild,v 
1.5 2014/10/18 14:05:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Switch/Switch-2.160.0-r1.ebuild,v 
1.6 2014/10/18 14:09:42 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 SRC_URI+= 
http://dev.gentoo.org/~tove/distfiles/perl-core/Switch/Switch-2.16-rt60380.patch;
 
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 x86 ~x86-fbsd
+KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd
 IUSE=
 
 SRC_TEST=do



1.6  dev-perl/Switch/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Switch/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   18 Oct 2014 14:05:39 -  1.5
+++ ChangeLog   18 Oct 2014 14:09:42 -  1.6
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Switch
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Switch/ChangeLog,v 1.5 2014/10/18 
14:05:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Switch/ChangeLog,v 1.6 2014/10/18 
14:09:42 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org Switch-2.160.0-r1.ebuild:
+  Stable for sparc, wrt bug #524154
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org Switch-2.160.0-r1.ebuild:
   Stable for ia64, wrt bug #524154






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:07

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

Revision  ChangesPath
1.3  dev-db/mariadb/mariadb-5.5.40-r1.ebuild

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

Index: mariadb-5.5.40-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.5.40-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mariadb-5.5.40-r1.ebuild18 Oct 2014 14:05:04 -  1.2
+++ mariadb-5.5.40-r1.ebuild18 Oct 2014 14:09:07 -  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-db/mariadb/mariadb-5.5.40-r1.ebuild,v 
1.2 2014/10/18 14:05:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-5.5.40-r1.ebuild,v 
1.3 2014/10/18 14:09:07 ago Exp $
 
 EAPI=5
 MY_EXTRAS_VER=20141017-1419Z
@@ -13,7 +13,7 @@
 IUSE=$IUSE
 
 # REMEMBER: also update eclass/mysql*.eclass before committing!
-KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
 
 # When MY_EXTRAS is bumped, the index should be revised to exclude these.
 EPATCH_EXCLUDE=''



1.68 dev-db/mariadb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mariadb/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   18 Oct 2014 14:05:04 -  1.67
+++ ChangeLog   18 Oct 2014 14:09:07 -  1.68
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/mariadb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/ChangeLog,v 1.67 2014/10/18 
14:05:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/ChangeLog,v 1.68 2014/10/18 
14:09:07 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org mariadb-5.5.40-r1.ebuild:
+  Stable for sparc, wrt bug #525504
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org mariadb-5.5.40-r1.ebuild:
   Stable for ia64, wrt bug #525504






[gentoo-commits] gentoo-x86 commit in dev-python/pyxdg: pyxdg-0.25-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:25

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

Revision  ChangesPath
1.11 dev-python/pyxdg/pyxdg-0.25-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxdg/pyxdg-0.25-r1.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxdg/pyxdg-0.25-r1.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxdg/pyxdg-0.25-r1.ebuild?r1=1.10r2=1.11

Index: pyxdg-0.25-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxdg/pyxdg-0.25-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- pyxdg-0.25-r1.ebuild18 Oct 2014 14:05:22 -  1.10
+++ pyxdg-0.25-r1.ebuild18 Oct 2014 14:09:25 -  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-python/pyxdg/pyxdg-0.25-r1.ebuild,v 
1.10 2014/10/18 14:05:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/pyxdg-0.25-r1.ebuild,v 
1.11 2014/10/18 14:09:25 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=LGPL-2
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd
 IUSE=test
 
 DEPEND=test? ( dev-python/nose[${PYTHON_USEDEP}]



1.129dev-python/pyxdg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   18 Oct 2014 14:05:22 -  1.128
+++ ChangeLog   18 Oct 2014 14:09:25 -  1.129
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyxdg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.128 
2014/10/18 14:05:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.129 
2014/10/18 14:09:25 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org pyxdg-0.25-r1.ebuild:
+  Stable for sparc, wrt bug #498934
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org pyxdg-0.25-r1.ebuild:
   Stable for ia64, wrt bug #498934






[gentoo-commits] gentoo-x86 commit in dev-libs/openssl: openssl-1.0.1j.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:47

  Modified: openssl-1.0.1j.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #525468
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=sparc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.8  dev-libs/openssl/openssl-1.0.1j.ebuild

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

Index: openssl-1.0.1j.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1j.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- openssl-1.0.1j.ebuild   18 Oct 2014 14:05:44 -  1.7
+++ openssl-1.0.1j.ebuild   18 Oct 2014 14:09:47 -  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.1j.ebuild,v 
1.7 2014/10/18 14:05:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1j.ebuild,v 
1.8 2014/10/18 14:09:47 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE=openssl
 SLOT=0
-KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=bindist gmp kerberos rfc3779 sse2 static-libs test +tls-heartbeat 
vanilla zlib
 
 # The blocks are temporary just to make sure people upgrade to a



1.609dev-libs/openssl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.608
retrieving revision 1.609
diff -u -r1.608 -r1.609
--- ChangeLog   18 Oct 2014 14:05:44 -  1.608
+++ ChangeLog   18 Oct 2014 14:09:47 -  1.609
@@ -1,6 +1,9 @@
 # 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.608 
2014/10/18 14:05:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.609 
2014/10/18 14:09:47 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org openssl-1.0.1j.ebuild:
+  Stable for sparc, wrt bug #525468
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org openssl-1.0.1j.ebuild:
   Stable for ia64, wrt bug #525468






[gentoo-commits] gentoo-x86 commit in virtual/perl-File-Temp: perl-File-Temp-0.230.0-r1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:57

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

Revision  ChangesPath
1.10 virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild

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

Index: perl-File-Temp-0.230.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- perl-File-Temp-0.230.0-r1.ebuild18 Oct 2014 14:05:54 -  1.9
+++ perl-File-Temp-0.230.0-r1.ebuild18 Oct 2014 14:09:57 -  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/virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild,v
 1.9 2014/10/18 14:05:54 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/perl-File-Temp/perl-File-Temp-0.230.0-r1.ebuild,v
 1.10 2014/10/18 14:09:57 ago Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 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 ~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
+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 ~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=
 RDEPEND=



1.88 virtual/perl-File-Temp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-File-Temp/ChangeLog?rev=1.88view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-File-Temp/ChangeLog?rev=1.88content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/perl-File-Temp/ChangeLog?r1=1.87r2=1.88

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/perl-File-Temp/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog   18 Oct 2014 14:05:54 -  1.87
+++ ChangeLog   18 Oct 2014 14:09:57 -  1.88
@@ -1,6 +1,10 @@
 # ChangeLog for virtual/perl-File-Temp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/perl-File-Temp/ChangeLog,v 1.87 
2014/10/18 14:05:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/perl-File-Temp/ChangeLog,v 1.88 
2014/10/18 14:09:57 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org
+  perl-File-Temp-0.230.0-r1.ebuild:
+  Stable for sparc, wrt bug #390719
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org
   perl-File-Temp-0.230.0-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in perl-core/File-Temp: File-Temp-0.230.0.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:10:00

  Modified: File-Temp-0.230.0.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #390719
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=sparc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.11 perl-core/File-Temp/File-Temp-0.230.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild?r1=1.10r2=1.11

Index: File-Temp-0.230.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- File-Temp-0.230.0.ebuild18 Oct 2014 14:05:57 -  1.10
+++ File-Temp-0.230.0.ebuild18 Oct 2014 14:10: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/perl-core/File-Temp/File-Temp-0.230.0.ebuild,v 1.10 
2014/10/18 14:05:57 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/perl-core/File-Temp/File-Temp-0.230.0.ebuild,v 1.11 
2014/10/18 14:10:00 ago Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION=File::Temp can be used to create and open temporary files in a 
safe way
 
 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 ~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
+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 ~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=
 
 # bug 390719



1.79 perl-core/File-Temp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/ChangeLog?rev=1.79view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/ChangeLog?rev=1.79content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/File-Temp/ChangeLog?r1=1.78r2=1.79

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/perl-core/File-Temp/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog   18 Oct 2014 14:05:57 -  1.78
+++ ChangeLog   18 Oct 2014 14:10:00 -  1.79
@@ -1,6 +1,9 @@
 # ChangeLog for perl-core/File-Temp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/perl-core/File-Temp/ChangeLog,v 1.78 
2014/10/18 14:05:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/perl-core/File-Temp/ChangeLog,v 1.79 
2014/10/18 14:10:00 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org File-Temp-0.230.0.ebuild:
+  Stable for sparc, wrt bug #390719
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org File-Temp-0.230.0.ebuild:
   Stable for ia64, wrt bug #390719






[gentoo-commits] gentoo-x86 commit in dev-lang/perl: perl-5.18.2-r2.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:10:04

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

Revision  ChangesPath
1.10 dev-lang/perl/perl-5.18.2-r2.ebuild

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

Index: perl-5.18.2-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/perl/perl-5.18.2-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- perl-5.18.2-r2.ebuild   18 Oct 2014 14:06:01 -  1.9
+++ perl-5.18.2-r2.ebuild   18 Oct 2014 14:10:04 -  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-lang/perl/perl-5.18.2-r2.ebuild,v 1.9 
2014/10/18 14:06:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/perl-5.18.2-r2.ebuild,v 1.10 
2014/10/18 14:10:04 ago Exp $
 
 EAPI=5
 
@@ -27,7 +27,7 @@
 
 LICENSE=|| ( Artistic GPL-1+ )
 SLOT=0/${SHORT_PV}
-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 ~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
+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 ~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=berkdb debug doc gdbm ithreads
 
 RDEPEND=



1.447dev-lang/perl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/perl/ChangeLog,v
retrieving revision 1.446
retrieving revision 1.447
diff -u -r1.446 -r1.447
--- ChangeLog   18 Oct 2014 14:06:01 -  1.446
+++ ChangeLog   18 Oct 2014 14:10:04 -  1.447
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/perl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/ChangeLog,v 1.446 2014/10/18 
14:06:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/ChangeLog,v 1.447 2014/10/18 
14:10:04 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org perl-5.18.2-r2.ebuild:
+  Stable for sparc, wrt bug #390719
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org perl-5.18.2-r2.ebuild:
   Stable for ia64, wrt bug #390719






[gentoo-commits] gentoo-x86 commit in app-admin/sysklogd: sysklogd-1.5.1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:09:51

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

Revision  ChangesPath
1.9  app-admin/sysklogd/sysklogd-1.5.1.ebuild

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

Index: sysklogd-1.5.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/sysklogd/sysklogd-1.5.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sysklogd-1.5.1.ebuild   18 Oct 2014 14:05:48 -  1.8
+++ sysklogd-1.5.1.ebuild   18 Oct 2014 14:09:51 -  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-admin/sysklogd/sysklogd-1.5.1.ebuild,v 
1.8 2014/10/18 14:05:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sysklogd/sysklogd-1.5.1.ebuild,v 
1.9 2014/10/18 14:09:51 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86
+KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86
 IUSE=logrotate
 RESTRICT=test
 



1.99 app-admin/sysklogd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/sysklogd/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog   18 Oct 2014 14:05:48 -  1.98
+++ ChangeLog   18 Oct 2014 14:09:51 -  1.99
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/sysklogd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sysklogd/ChangeLog,v 1.98 
2014/10/18 14:05:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sysklogd/ChangeLog,v 1.99 
2014/10/18 14:09:51 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org sysklogd-1.5.1.ebuild:
+  Stable for sparc, wrt bug #524058
 
   18 Oct 2014; Agostino Sarubbo a...@gentoo.org sysklogd-1.5.1.ebuild:
   Stable for ia64, wrt bug #524058






[gentoo-commits] gentoo-x86 commit in media-libs/aalib: aalib-1.4_rc5-r6.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:14:56

  Modified: aalib-1.4_rc5-r6.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #522434
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  media-libs/aalib/aalib-1.4_rc5-r6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/aalib/aalib-1.4_rc5-r6.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/aalib/aalib-1.4_rc5-r6.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/aalib/aalib-1.4_rc5-r6.ebuild?r1=1.6r2=1.7

Index: aalib-1.4_rc5-r6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/aalib/aalib-1.4_rc5-r6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- aalib-1.4_rc5-r6.ebuild 15 Oct 2014 09:04:38 -  1.6
+++ aalib-1.4_rc5-r6.ebuild 18 Oct 2014 14:14:55 -  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-libs/aalib/aalib-1.4_rc5-r6.ebuild,v 
1.6 2014/10/15 09:04:38 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/aalib/aalib-1.4_rc5-r6.ebuild,v 
1.7 2014/10/18 14:14:55 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd
+KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd
 IUSE=X slang gpm static-libs
 
 RDEPEND=X? ( =x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] )



1.56 media-libs/aalib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/aalib/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   15 Oct 2014 09:04:38 -  1.55
+++ ChangeLog   18 Oct 2014 14:14:55 -  1.56
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/aalib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/aalib/ChangeLog,v 1.55 
2014/10/15 09:04:38 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/aalib/ChangeLog,v 1.56 
2014/10/18 14:14:55 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org aalib-1.4_rc5-r6.ebuild:
+  Stable for ppc, wrt bug #522434
 
   15 Oct 2014; Pacho Ramos pa...@gentoo.org aalib-1.4_rc5-r6.ebuild:
   x86 stable, bug #522434






[gentoo-commits] gentoo-x86 commit in app-shells/mksh: mksh-50d.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:14:34

  Modified: mksh-50d.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #522416
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.3  app-shells/mksh/mksh-50d.ebuild

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

Index: mksh-50d.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/mksh/mksh-50d.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mksh-50d.ebuild 13 Oct 2014 08:42:42 -  1.2
+++ mksh-50d.ebuild 18 Oct 2014 14:14:34 -  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-shells/mksh/mksh-50d.ebuild,v 1.2 
2014/10/13 08:42:42 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/mksh-50d.ebuild,v 1.3 
2014/10/18 14:14:34 ago Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 SRC_URI=http://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz;
 LICENSE=BSD
 SLOT=0
-KEYWORDS=amd64 ~ppc ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=amd64 ppc ~x86 ~amd64-linux ~x86-linux
 IUSE=static
 DEPEND=static? ( dev-libs/klibc )
 RDEPEND=



1.58 app-shells/mksh/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/mksh/ChangeLog?rev=1.58view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/mksh/ChangeLog?rev=1.58content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/mksh/ChangeLog?r1=1.57r2=1.58

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog   13 Oct 2014 08:42:42 -  1.57
+++ ChangeLog   18 Oct 2014 14:14:34 -  1.58
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/mksh
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.57 2014/10/13 
08:42:42 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.58 2014/10/18 
14:14:34 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org mksh-50d.ebuild:
+  Stable for ppc, wrt bug #522416
 
   13 Oct 2014; Chema Alonso nim...@gentoo.org mksh-50d.ebuild:
   Stable for amd64 wrt bug #522416






[gentoo-commits] gentoo-x86 commit in x11-libs/tslib: tslib-1.0-r3.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:15:17

  Modified: tslib-1.0-r3.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #522436
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  x11-libs/tslib/tslib-1.0-r3.ebuild

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

Index: tslib-1.0-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/tslib/tslib-1.0-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- tslib-1.0-r3.ebuild 12 Oct 2014 08:49:14 -  1.5
+++ tslib-1.0-r3.ebuild 18 Oct 2014 14:15:17 -  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/x11-libs/tslib/tslib-1.0-r3.ebuild,v 1.5 
2014/10/12 08:49:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/tslib/tslib-1.0-r3.ebuild,v 1.6 
2014/10/18 14:15:17 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=LGPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86
+KEYWORDS=~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86
 IUSE=
 #extras arctic2 collie corgi h3600 linear-h2200 mk712 ucb1x00
 



1.31 x11-libs/tslib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/tslib/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   12 Oct 2014 08:49:14 -  1.30
+++ ChangeLog   18 Oct 2014 14:15:17 -  1.31
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/tslib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/tslib/ChangeLog,v 1.30 2014/10/12 
08:49:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/tslib/ChangeLog,v 1.31 2014/10/18 
14:15:17 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org tslib-1.0-r3.ebuild:
+  Stable for ppc, wrt bug #522436
 
   12 Oct 2014; Agostino Sarubbo a...@gentoo.org tslib-1.0-r3.ebuild:
   Stable for x86, wrt bug #522436






[gentoo-commits] gentoo-x86 commit in games-board/mah-jong: mah-jong-1.14.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:15:37

  Modified: mah-jong-1.14.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #522560
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  games-board/mah-jong/mah-jong-1.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/mah-jong/mah-jong-1.14.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/mah-jong/mah-jong-1.14.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/mah-jong/mah-jong-1.14.ebuild?r1=1.3r2=1.4

Index: mah-jong-1.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-board/mah-jong/mah-jong-1.14.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mah-jong-1.14.ebuild12 Oct 2014 08:52:56 -  1.3
+++ mah-jong-1.14.ebuild18 Oct 2014 14:15:37 -  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/games-board/mah-jong/mah-jong-1.14.ebuild,v 
1.3 2014/10/12 08:52:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/mah-jong/mah-jong-1.14.ebuild,v 
1.4 2014/10/18 14:15:37 ago Exp $
 
 EAPI=5
 inherit eutils toolchain-funcs games
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=amd64 ~ppc x86
+KEYWORDS=amd64 ppc x86
 IUSE=
 
 RDEPEND=x11-libs/gtk+:2



1.27 games-board/mah-jong/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/mah-jong/ChangeLog?rev=1.27view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/mah-jong/ChangeLog?rev=1.27content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/mah-jong/ChangeLog?r1=1.26r2=1.27

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-board/mah-jong/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   12 Oct 2014 08:52:56 -  1.26
+++ ChangeLog   18 Oct 2014 14:15:37 -  1.27
@@ -1,6 +1,9 @@
 # ChangeLog for games-board/mah-jong
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/mah-jong/ChangeLog,v 1.26 
2014/10/12 08:52:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/mah-jong/ChangeLog,v 1.27 
2014/10/18 14:15:37 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org mah-jong-1.14.ebuild:
+  Stable for ppc, wrt bug #522560
 
   12 Oct 2014; Agostino Sarubbo a...@gentoo.org mah-jong-1.14.ebuild:
   Stable for x86, wrt bug #522560






[gentoo-commits] gentoo-x86 commit in games-board/gnuchess: gnuchess-6.1.2.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:15:57

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

Revision  ChangesPath
1.4  games-board/gnuchess/gnuchess-6.1.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnuchess/gnuchess-6.1.2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnuchess/gnuchess-6.1.2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnuchess/gnuchess-6.1.2.ebuild?r1=1.3r2=1.4

Index: gnuchess-6.1.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-board/gnuchess/gnuchess-6.1.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnuchess-6.1.2.ebuild   12 Oct 2014 08:52:22 -  1.3
+++ gnuchess-6.1.2.ebuild   18 Oct 2014 14:15:57 -  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/games-board/gnuchess/gnuchess-6.1.2.ebuild,v 1.3 
2014/10/12 08:52:22 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-board/gnuchess/gnuchess-6.1.2.ebuild,v 1.4 
2014/10/18 14:15:57 ago Exp $
 
 EAPI=5
 inherit flag-o-matic games
@@ -9,7 +9,7 @@
 HOMEPAGE=http://www.gnu.org/software/chess/chess.html;
 SRC_URI=mirror://gnu/chess/${P}.tar.gz
 
-KEYWORDS=amd64 ~arm ~ppc ~ppc64 x86
+KEYWORDS=amd64 ~arm ppc ~ppc64 x86
 LICENSE=GPL-3
 SLOT=0
 IUSE=



1.48 games-board/gnuchess/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnuchess/ChangeLog?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnuchess/ChangeLog?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnuchess/ChangeLog?r1=1.47r2=1.48

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-board/gnuchess/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   12 Oct 2014 08:52:22 -  1.47
+++ ChangeLog   18 Oct 2014 14:15:57 -  1.48
@@ -1,6 +1,9 @@
 # ChangeLog for games-board/gnuchess
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/gnuchess/ChangeLog,v 1.47 
2014/10/12 08:52:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/gnuchess/ChangeLog,v 1.48 
2014/10/18 14:15:57 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org gnuchess-6.1.2.ebuild:
+  Stable for ppc, wrt bug #522612
 
   12 Oct 2014; Agostino Sarubbo a...@gentoo.org gnuchess-6.1.2.ebuild:
   Stable for x86, wrt bug #522122






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:16:37

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

Revision  ChangesPath
1.8  net-libs/axtls/axtls-1.4.9-r1.ebuild

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

Index: axtls-1.4.9-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- axtls-1.4.9-r1.ebuild   10 Oct 2014 11:03:18 -  1.7
+++ axtls-1.4.9-r1.ebuild   18 Oct 2014 14:16:37 -  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-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.7 
2014/10/10 11:03:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.8 
2014/10/18 14:16:37 ago Exp $
 
 EAPI=5
 
@@ -41,7 +41,7 @@
 
 LICENSE=BSD GPL-2
 SLOT=0
-KEYWORDS=amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 x86
+KEYWORDS=amd64 arm hppa ~mips ppc ~ppc64 ~s390 x86
 
 IUSE=httpd cgi-lua cgi-php static static-libs doc
 



1.34 net-libs/axtls/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   10 Oct 2014 11:03:18 -  1.33
+++ ChangeLog   18 Oct 2014 14:16:37 -  1.34
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/axtls
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.33 2014/10/10 
11:03:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.34 2014/10/18 
14:16:37 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org axtls-1.4.9-r1.ebuild:
+  Stable for ppc, wrt bug #522818
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org axtls-1.4.9-r1.ebuild:
   Stable for x86, wrt bug #522818






[gentoo-commits] gentoo-x86 commit in dev-libs/geoip: geoip-1.6.2.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:17:22

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

Revision  ChangesPath
1.7  dev-libs/geoip/geoip-1.6.2.ebuild

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

Index: geoip-1.6.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.6.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- geoip-1.6.2.ebuild  10 Oct 2014 11:04:13 -  1.6
+++ geoip-1.6.2.ebuild  18 Oct 2014 14:17:22 -  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/geoip/geoip-1.6.2.ebuild,v 1.6 
2014/10/10 11:04:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.6.2.ebuild,v 1.7 
2014/10/18 14:17:22 ago Exp $
 
 EAPI=5
 inherit autotools eutils
@@ -14,7 +14,7 @@
 # GPL-2 for md5.c - part of libGeoIPUpdate, MaxMind for GeoLite Country db
 LICENSE=LGPL-2.1 GPL-2 MaxMind2
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux 
~x86-linux ~x86-macos
+KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux 
~x86-linux ~x86-macos
 IUSE=static-libs
 RESTRICT=test
 



1.226dev-libs/geoip/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v
retrieving revision 1.225
retrieving revision 1.226
diff -u -r1.225 -r1.226
--- ChangeLog   10 Oct 2014 11:04:13 -  1.225
+++ ChangeLog   18 Oct 2014 14:17:22 -  1.226
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/geoip
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.225 2014/10/10 
11:04:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.226 2014/10/18 
14:17:22 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org geoip-1.6.2.ebuild:
+  Stable for ppc, wrt bug #523034
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org geoip-1.6.2.ebuild:
   Stable for x86, wrt bug #523034






[gentoo-commits] gentoo-x86 commit in net-misc/geoipupdate: geoipupdate-2.0.2.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:16:59

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

Revision  ChangesPath
1.5  net-misc/geoipupdate/geoipupdate-2.0.2.ebuild

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

Index: geoipupdate-2.0.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-misc/geoipupdate/geoipupdate-2.0.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- geoipupdate-2.0.2.ebuild10 Oct 2014 11:03:55 -  1.4
+++ geoipupdate-2.0.2.ebuild18 Oct 2014 14:16:59 -  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/geoipupdate/geoipupdate-2.0.2.ebuild,v 1.4 
2014/10/10 11:03:55 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-misc/geoipupdate/geoipupdate-2.0.2.ebuild,v 1.5 
2014/10/18 14:16:59 ago Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 x86 ~x86-fbsd
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ppc ~ppc64 ~s390 x86 ~x86-fbsd
 IUSE=
 
 DEPEND=



1.25 net-misc/geoipupdate/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/geoipupdate/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   10 Oct 2014 11:03:55 -  1.24
+++ ChangeLog   18 Oct 2014 14:16:59 -  1.25
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/geoipupdate
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/geoipupdate/ChangeLog,v 1.24 
2014/10/10 11:03:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/geoipupdate/ChangeLog,v 1.25 
2014/10/18 14:16:59 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org geoipupdate-2.0.2.ebuild:
+  Stable for ppc, wrt bug #523032
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org geoipupdate-2.0.2.ebuild:
   Stable for x86, wrt bug #523032






[gentoo-commits] gentoo-x86 commit in app-emulation/e-uae: e-uae-0.8.29_rc4-r2.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:17:44

  Modified: e-uae-0.8.29_rc4-r2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #523042
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild?r1=1.4r2=1.5

Index: e-uae-0.8.29_rc4-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- e-uae-0.8.29_rc4-r2.ebuild  10 Oct 2014 11:04:31 -  1.4
+++ e-uae-0.8.29_rc4-r2.ebuild  18 Oct 2014 14:17:44 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild,v 1.4 
2014/10/10 11:04:31 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild,v 1.5 
2014/10/18 14:17:44 ago Exp $
 
 EAPI=3
 
@@ -24,7 +24,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=amd64 ~ppc x86
+KEYWORDS=amd64 ppc x86
 IUSE=X dga ncurses sdl alsa oss sdl-sound capslib
 
 # Note: opposed to ./configure --help zlib support required! Check



1.48 app-emulation/e-uae/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/e-uae/ChangeLog?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/e-uae/ChangeLog?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/e-uae/ChangeLog?r1=1.47r2=1.48

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/e-uae/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   10 Oct 2014 11:04:31 -  1.47
+++ ChangeLog   18 Oct 2014 14:17:44 -  1.48
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/e-uae
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/ChangeLog,v 1.47 
2014/10/10 11:04:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/ChangeLog,v 1.48 
2014/10/18 14:17:44 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org e-uae-0.8.29_rc4-r2.ebuild:
+  Stable for ppc, wrt bug #523042
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org e-uae-0.8.29_rc4-r2.ebuild:
   Stable for x86, wrt bug #523042






[gentoo-commits] gentoo-x86 commit in media-gfx/inkscape: inkscape-0.48.5.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:18:39

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

Revision  ChangesPath
1.4  media-gfx/inkscape/inkscape-0.48.5.ebuild

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

Index: inkscape-0.48.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/inkscape/inkscape-0.48.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- inkscape-0.48.5.ebuild  16 Oct 2014 08:26:30 -  1.3
+++ inkscape-0.48.5.ebuild  18 Oct 2014 14:18:39 -  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/media-gfx/inkscape/inkscape-0.48.5.ebuild,v 
1.3 2014/10/16 08:26:30 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/inkscape-0.48.5.ebuild,v 
1.4 2014/10/18 14:18:39 ago Exp $
 
 EAPI=5
 
@@ -18,7 +18,7 @@
 
 LICENSE=GPL-2 LGPL-2.1
 SLOT=0
-KEYWORDS=amd64 ~arm hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris
+KEYWORDS=amd64 ~arm hppa ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris
 IUSE=dia gnome postscript inkjar lcms nls spell wmf
 
 REQUIRED_USE=${PYTHON_REQUIRED_USE}



1.213media-gfx/inkscape/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/ChangeLog?rev=1.213view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/ChangeLog?rev=1.213content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/ChangeLog?r1=1.212r2=1.213

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v
retrieving revision 1.212
retrieving revision 1.213
diff -u -r1.212 -r1.213
--- ChangeLog   16 Oct 2014 08:26:30 -  1.212
+++ ChangeLog   18 Oct 2014 14:18:39 -  1.213
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/inkscape
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.212 
2014/10/16 08:26:30 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.213 
2014/10/18 14:18:39 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org inkscape-0.48.5.ebuild:
+  Stable for ppc, wrt bug #523384
 
   16 Oct 2014; Chema Alonso nim...@gentoo.org inkscape-0.48.5.ebuild:
   Stable for amd64 wrt bug #523384






[gentoo-commits] gentoo-x86 commit in net-analyzer/fping: fping-2.4_beta2_p161-r2.ebuild fping-3.10.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:18:12

  Modified: fping-2.4_beta2_p161-r2.ebuild fping-3.10.ebuild
ChangeLog
  Log:
  Stable for ppc, wrt bug #523210
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild

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

Index: fping-2.4_beta2_p161-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fping-2.4_beta2_p161-r2.ebuild  10 Oct 2014 11:04:51 -  1.4
+++ fping-2.4_beta2_p161-r2.ebuild  18 Oct 2014 14:18:12 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild,v 1.4 
2014/10/10 11:04:51 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild,v 1.5 
2014/10/18 14:18:12 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 SLOT=0
 LICENSE=fping
-KEYWORDS=~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=~alpha ~amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 IUSE=ipv6
 
 S=${WORKDIR}/fping-2.4b2_to-ipv6



1.5  net-analyzer/fping/fping-3.10.ebuild

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

Index: fping-3.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-3.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fping-3.10.ebuild   10 Oct 2014 11:04:51 -  1.4
+++ fping-3.10.ebuild   18 Oct 2014 14:18:12 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-3.10.ebuild,v 1.4 
2014/10/10 11:04:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-3.10.ebuild,v 1.5 
2014/10/18 14:18:12 ago Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE=fping
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 IUSE=ipv6 suid
 
 src_configure() {



1.71 net-analyzer/fping/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fping/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog   10 Oct 2014 11:04:51 -  1.70
+++ ChangeLog   18 Oct 2014 14:18:12 -  1.71
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/fping
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/ChangeLog,v 1.70 
2014/10/10 11:04:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/ChangeLog,v 1.71 
2014/10/18 14:18:12 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org 
fping-2.4_beta2_p161-r2.ebuild,
+  fping-3.10.ebuild:
+  Stable for ppc, wrt bug #523210
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org 
fping-2.4_beta2_p161-r2.ebuild,
   fping-3.10.ebuild:






[gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-3.5.0.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:19:47

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

Revision  ChangesPath
1.4  app-editors/scite/scite-3.5.0.ebuild

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

Index: scite-3.5.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.5.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- scite-3.5.0.ebuild  12 Oct 2014 08:46:40 -  1.3
+++ scite-3.5.0.ebuild  18 Oct 2014 14:19: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/app-editors/scite/scite-3.5.0.ebuild,v 1.3 
2014/10/12 08:46:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.5.0.ebuild,v 1.4 
2014/10/18 14:19:47 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=HPND lua? ( MIT )
 SLOT=0
-KEYWORDS=amd64 ~ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~x86-linux
+KEYWORDS=amd64 ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~x86-linux
 IUSE=lua
 
 RDEPEND=dev-libs/glib



1.175app-editors/scite/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog   12 Oct 2014 08:46:40 -  1.174
+++ ChangeLog   18 Oct 2014 14:19:47 -  1.175
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.174 
2014/10/12 08:46:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.175 
2014/10/18 14:19:47 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org scite-3.5.0.ebuild:
+  Stable for ppc, wrt bug #523638
 
   12 Oct 2014; Agostino Sarubbo a...@gentoo.org scite-3.5.0.ebuild:
   Stable for x86, wrt bug #523638






[gentoo-commits] gentoo-x86 commit in app-text/wgetpaste: wgetpaste-2.25-r3.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:19:24

  Modified: wgetpaste-2.25-r3.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #523612
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  app-text/wgetpaste/wgetpaste-2.25-r3.ebuild

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

Index: wgetpaste-2.25-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.25-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wgetpaste-2.25-r3.ebuild10 Oct 2014 21:59:25 -  1.4
+++ wgetpaste-2.25-r3.ebuild18 Oct 2014 14:19: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-text/wgetpaste/wgetpaste-2.25-r3.ebuild,v 1.4 
2014/10/10 21:59:25 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.25-r3.ebuild,v 1.5 
2014/10/18 14:19:24 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=public-domain
 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-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
 IUSE=
 
 DEPEND=



1.151app-text/wgetpaste/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog   10 Oct 2014 21:59:25 -  1.150
+++ ChangeLog   18 Oct 2014 14:19:24 -  1.151
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/wgetpaste
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.150 
2014/10/10 21:59:25 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.151 
2014/10/18 14:19:24 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org wgetpaste-2.25-r3.ebuild:
+  Stable for ppc, wrt bug #523612
 
   10 Oct 2014; Mikle Kolyada zlog...@gentoo.org wgetpaste-2.25-r3.ebuild:
   x86 stable wrt bug #523612






[gentoo-commits] gentoo-x86 commit in app-misc/muttprint: muttprint-0.73-r2.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:19:02

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

Revision  ChangesPath
1.4  app-misc/muttprint/muttprint-0.73-r2.ebuild

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

Index: muttprint-0.73-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/muttprint/muttprint-0.73-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- muttprint-0.73-r2.ebuild10 Oct 2014 11:00:14 -  1.3
+++ muttprint-0.73-r2.ebuild18 Oct 2014 14:19:02 -  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-misc/muttprint/muttprint-0.73-r2.ebuild,v 1.3 
2014/10/10 11:00:14 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-misc/muttprint/muttprint-0.73-r2.ebuild,v 1.4 
2014/10/18 14:19:02 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 SLOT=0
 LICENSE=GPL-2
-KEYWORDS=amd64 ~ppc ~ppc64 x86
+KEYWORDS=amd64 ppc ~ppc64 x86
 IUSE=doc
 
 DEPEND=dev-lang/perl



1.64 app-misc/muttprint/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/muttprint/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog   10 Oct 2014 11:00:14 -  1.63
+++ ChangeLog   18 Oct 2014 14:19:02 -  1.64
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/muttprint
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/muttprint/ChangeLog,v 1.63 
2014/10/10 11:00:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/muttprint/ChangeLog,v 1.64 
2014/10/18 14:19:02 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org muttprint-0.73-r2.ebuild:
+  Stable for ppc, wrt bug #523450
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org muttprint-0.73-r2.ebuild:
   Stable for x86, wrt bug #523450






[gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.5.5.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:20:10

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

Revision  ChangesPath
1.8  net-ftp/lftp/lftp-4.5.5.ebuild

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

Index: lftp-4.5.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.5.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- lftp-4.5.5.ebuild   13 Oct 2014 19:28:18 -  1.7
+++ lftp-4.5.5.ebuild   18 Oct 2014 14:20:10 -  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-ftp/lftp/lftp-4.5.5.ebuild,v 1.7 
2014/10/13 19:28:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.5.5.ebuild,v 1.8 
2014/10/18 14:20:10 ago Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc x86 
~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris
 
 IUSE=convert-mozilla-cookies +gnutls idn nls openssl socks5 +ssl verify-file
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru uk zh_CN zh_HK zh_TW )



1.491net-ftp/lftp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.491view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.491content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.490r2=1.491

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.490
retrieving revision 1.491
diff -u -r1.490 -r1.491
--- ChangeLog   15 Oct 2014 14:28:25 -  1.490
+++ ChangeLog   18 Oct 2014 14:20:10 -  1.491
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.490 2014/10/15 
14:28:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.491 2014/10/18 
14:20:10 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org lftp-4.5.5.ebuild:
+  Stable for ppc, wrt bug #523654
 
   15 Oct 2014; Jeroen Roovers j...@gentoo.org lftp-4.6.0.ebuild,
   lftp-.ebuild, files/lftp-4.6.0-gnutls-2-compat.patch,






[gentoo-commits] gentoo-x86 commit in dev-util/global: global-6.3.1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:20:31

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

Revision  ChangesPath
1.5  dev-util/global/global-6.3.1.ebuild

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

Index: global-6.3.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/global-6.3.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- global-6.3.1.ebuild 10 Oct 2014 10:57:01 -  1.4
+++ global-6.3.1.ebuild 18 Oct 2014 14:20:31 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.3.1.ebuild,v 1.4 
2014/10/10 10:57:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.3.1.ebuild,v 1.5 
2014/10/18 14:20:31 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=amd64 ~ppc x86 ~x86-fbsd
+KEYWORDS=amd64 ppc x86 ~x86-fbsd
 IUSE=doc emacs vim
 
 RDEPEND=sys-devel/libtool



1.135dev-util/global/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog   10 Oct 2014 10:57:01 -  1.134
+++ ChangeLog   18 Oct 2014 14:20:31 -  1.135
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/global
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.134 
2014/10/10 10:57:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.135 
2014/10/18 14:20:31 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org global-6.3.1.ebuild:
+  Stable for ppc, wrt bug #524248
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org global-6.3.1.ebuild:
   Stable for x86, wrt bug #524248






[gentoo-commits] gentoo-x86 commit in app-shells/dash: dash-0.5.7.4.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:20:51

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

Revision  ChangesPath
1.7  app-shells/dash/dash-0.5.7.4.ebuild

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

Index: dash-0.5.7.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/dash/dash-0.5.7.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- dash-0.5.7.4.ebuild 10 Oct 2014 20:10:38 -  1.6
+++ dash-0.5.7.4.ebuild 18 Oct 2014 14:20:51 -  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-shells/dash/dash-0.5.7.4.ebuild,v 1.6 
2014/10/10 20:10:38 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/dash/dash-0.5.7.4.ebuild,v 1.7 
2014/10/18 14:20:51 ago Exp $
 
 EAPI=4
 
@@ -18,7 +18,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
+KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
 IUSE=libedit static
 
 RDEPEND=!static? ( libedit? ( dev-libs/libedit ) )



1.121app-shells/dash/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/dash/ChangeLog?rev=1.121view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/dash/ChangeLog?rev=1.121content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/dash/ChangeLog?r1=1.120r2=1.121

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/dash/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog   10 Oct 2014 20:10:38 -  1.120
+++ ChangeLog   18 Oct 2014 14:20:51 -  1.121
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/dash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/dash/ChangeLog,v 1.120 
2014/10/10 20:10:38 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/dash/ChangeLog,v 1.121 
2014/10/18 14:20:51 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org dash-0.5.7.4.ebuild:
+  Stable for ppc, wrt bug #524262
 
   10 Oct 2014; Markus Meier mae...@gentoo.org dash-0.5.7.4.ebuild:
   arm stable, bug #524262






[gentoo-commits] gentoo-x86 commit in dev-libs/liblouis: liblouis-2.5.3.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:21:39

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

Revision  ChangesPath
1.9  dev-libs/liblouis/liblouis-2.5.3.ebuild

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

Index: liblouis-2.5.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/liblouis/liblouis-2.5.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- liblouis-2.5.3.ebuild   10 Oct 2014 10:59:36 -  1.8
+++ liblouis-2.5.3.ebuild   18 Oct 2014 14:21:39 -  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/liblouis/liblouis-2.5.3.ebuild,v 
1.8 2014/10/10 10:59:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblouis/liblouis-2.5.3.ebuild,v 
1.9 2014/10/18 14:21:39 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=LGPL-3
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86
+KEYWORDS=~alpha amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86
 IUSE=python
 RDEPEND=python? ( ${PYTHON_DEPS} )
 DEPEND=${RDEPEND}



1.9  dev-libs/liblouis/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/liblouis/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   10 Oct 2014 10:59:36 -  1.8
+++ ChangeLog   18 Oct 2014 14:21:39 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/liblouis
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblouis/ChangeLog,v 1.8 
2014/10/10 10:59:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblouis/ChangeLog,v 1.9 
2014/10/18 14:21:39 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org liblouis-2.5.3.ebuild:
+  Stable for ppc, wrt bug #524354
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org liblouis-2.5.3.ebuild:
   Stable for x86, wrt bug #524354






[gentoo-commits] gentoo-x86 commit in dev-python/markupsafe: markupsafe-0.23.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:21:17

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

Revision  ChangesPath
1.6  dev-python/markupsafe/markupsafe-0.23.ebuild

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

Index: markupsafe-0.23.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/markupsafe/markupsafe-0.23.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- markupsafe-0.23.ebuild  10 Oct 2014 20:12:18 -  1.5
+++ markupsafe-0.23.ebuild  18 Oct 2014 14:21:16 -  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/markupsafe/markupsafe-0.23.ebuild,v 1.5 
2014/10/10 20:12:18 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/markupsafe/markupsafe-0.23.ebuild,v 1.6 
2014/10/18 14:21:16 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris
+KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris
 IUSE=
 
 DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]



1.69 dev-python/markupsafe/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/markupsafe/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   10 Oct 2014 20:12:18 -  1.68
+++ ChangeLog   18 Oct 2014 14:21:16 -  1.69
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/markupsafe
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/markupsafe/ChangeLog,v 1.68 
2014/10/10 20:12:18 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/markupsafe/ChangeLog,v 1.69 
2014/10/18 14:21:16 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org markupsafe-0.23.ebuild:
+  Stable for ppc, wrt bug #524302
 
   10 Oct 2014; Markus Meier mae...@gentoo.org markupsafe-0.23.ebuild:
   arm stable, bug #524302






[gentoo-commits] gentoo-x86 commit in sys-fs/ddrescue: ddrescue-1.18.1.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:22:27

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

Revision  ChangesPath
1.4  sys-fs/ddrescue/ddrescue-1.18.1.ebuild

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

Index: ddrescue-1.18.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ddrescue-1.18.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ddrescue-1.18.1.ebuild  10 Oct 2014 10:54:22 -  1.3
+++ ddrescue-1.18.1.ebuild  18 Oct 2014 14:22: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/sys-fs/ddrescue/ddrescue-1.18.1.ebuild,v 
1.3 2014/10/10 10:54:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ddrescue-1.18.1.ebuild,v 
1.4 2014/10/18 14:22:27 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=amd64 ~arm ~ia64 ~ppc ~sparc x86 ~amd64-linux
+KEYWORDS=amd64 ~arm ~ia64 ppc ~sparc x86 ~amd64-linux
 IUSE=static
 
 DEPEND=$(unpacker_src_uri_depends)



1.54 sys-fs/ddrescue/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog   10 Oct 2014 10:54:22 -  1.53
+++ ChangeLog   18 Oct 2014 14:22:27 -  1.54
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/ddrescue
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.53 2014/10/10 
10:54:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.54 2014/10/18 
14:22:27 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org ddrescue-1.18.1.ebuild:
+  Stable for ppc, wrt bug #524472
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org ddrescue-1.18.1.ebuild:
   Stable for x86, wrt bug #524472






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:22:04

  Modified: gtk-gnutella-1.1.1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #524424
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild

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

Index: gtk-gnutella-1.1.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gtk-gnutella-1.1.1.ebuild   10 Oct 2014 10:53:44 -  1.3
+++ gtk-gnutella-1.1.1.ebuild   18 Oct 2014 14:22:04 -  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-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild,v 1.3 
2014/10/10 10:53:44 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild,v 1.4 
2014/10/18 14:22:04 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 SLOT=0
 LICENSE=GPL-2
-KEYWORDS=amd64 ~ppc x86 ~x86-fbsd
+KEYWORDS=amd64 ppc x86 ~x86-fbsd
 
 RDEPEND=
dev-libs/glib:2



1.165net-p2p/gtk-gnutella/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ChangeLog   10 Oct 2014 10:53:44 -  1.164
+++ ChangeLog   18 Oct 2014 14:22:04 -  1.165
@@ -1,6 +1,9 @@
 # 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.164 
2014/10/10 10:53:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/ChangeLog,v 1.165 
2014/10/18 14:22:04 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org gtk-gnutella-1.1.1.ebuild:
+  Stable for ppc, wrt bug #524424
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org gtk-gnutella-1.1.1.ebuild:
   Stable for x86, wrt bug #524424






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:23:47

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

Revision  ChangesPath
1.6  sys-apps/hwids/hwids-20141010.ebuild

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

Index: hwids-20141010.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20141010.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- hwids-20141010.ebuild   16 Oct 2014 17:57:07 -  1.5
+++ hwids-20141010.ebuild   18 Oct 2014 14:23:47 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20141010.ebuild,v 1.5 
2014/10/16 17:57:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20141010.ebuild,v 1.6 
2014/10/18 14:23:47 ago Exp $
 
 EAPI=5
 inherit udev eutils
@@ -12,7 +12,7 @@
inherit git-2
 else
SRC_URI=${HOMEPAGE}/archive/${P}.tar.gz
-   KEYWORDS=~alpha amd64 arm arm64 hppa ia64 m68k ~mips ~ppc ~ppc64 s390 
sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux 
~x86-linux
+   KEYWORDS=~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ~ppc64 s390 
sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux 
~x86-linux
 fi
 
 LICENSE=|| ( GPL-2 BSD ) public-domain



1.153sys-apps/hwids/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- ChangeLog   16 Oct 2014 17:57:07 -  1.152
+++ ChangeLog   18 Oct 2014 14:23:47 -  1.153
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/hwids
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.152 2014/10/16 
17:57:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.153 2014/10/18 
14:23:47 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org hwids-20141010.ebuild:
+  Stable for ppc, wrt bug #524976
 
   16 Oct 2014; Mike Frysinger vap...@gentoo.org hwids-20141010.ebuild:
   Mark arm/arm64/ia64/m68k/s390/sh stable.






[gentoo-commits] gentoo-x86 commit in net-proxy/haproxy: haproxy-1.5.4.ebuild ChangeLog

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:23:27

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

Revision  ChangesPath
1.4  net-proxy/haproxy/haproxy-1.5.4.ebuild

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

Index: haproxy-1.5.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-proxy/haproxy/haproxy-1.5.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- haproxy-1.5.4.ebuild10 Oct 2014 10:55:37 -  1.3
+++ haproxy-1.5.4.ebuild18 Oct 2014 14:23: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/net-proxy/haproxy/haproxy-1.5.4.ebuild,v 
1.3 2014/10/10 10:55:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/haproxy-1.5.4.ebuild,v 
1.4 2014/10/18 14:23:27 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2 LGPL-2.1
 SLOT=0
-KEYWORDS=amd64 ~ppc x86
+KEYWORDS=amd64 ppc x86
 IUSE=+crypt examples +pcre ssl tools vim-syntax +zlib
 
 DEPEND=pcre? ( dev-libs/libpcre )



1.107net-proxy/haproxy/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/haproxy/ChangeLog?rev=1.107view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/haproxy/ChangeLog?rev=1.107content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/haproxy/ChangeLog?r1=1.106r2=1.107

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-proxy/haproxy/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog   10 Oct 2014 10:55:37 -  1.106
+++ ChangeLog   18 Oct 2014 14:23:27 -  1.107
@@ -1,6 +1,9 @@
 # ChangeLog for net-proxy/haproxy
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/ChangeLog,v 1.106 
2014/10/10 10:55:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/ChangeLog,v 1.107 
2014/10/18 14:23:27 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org haproxy-1.5.4.ebuild:
+  Stable for ppc, wrt bug #524762
 
   10 Oct 2014; Agostino Sarubbo a...@gentoo.org haproxy-1.5.4.ebuild:
   Stable for x86, wrt bug #524762






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

2014-10-18 Thread Agostino Sarubbo (ago)
ago 14/10/18 14:23:07

  Modified: sudo-1.8.11_p1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #524752
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  app-admin/sudo/sudo-1.8.11_p1.ebuild

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

Index: sudo-1.8.11_p1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.11_p1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sudo-1.8.11_p1.ebuild   16 Oct 2014 17:57:45 -  1.6
+++ sudo-1.8.11_p1.ebuild   18 Oct 2014 14:23:07 -  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-admin/sudo/sudo-1.8.11_p1.ebuild,v 1.6 
2014/10/16 17:57:45 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.11_p1.ebuild,v 1.7 
2014/10/18 14:23:07 ago Exp $
 
 EAPI=5
 
@@ -23,7 +23,7 @@
 # 3-clause BSD license
 LICENSE=ISC BSD
 SLOT=0
-KEYWORDS=~alpha amd64 arm arm64 hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris
+KEYWORDS=~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ~ppc64 s390 sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris
 IUSE=ldap nls pam offensive selinux skey +sendmail
 
 DEPEND=pam? ( virtual/pam )



1.373app-admin/sudo/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v
retrieving revision 1.372
retrieving revision 1.373
diff -u -r1.372 -r1.373
--- ChangeLog   16 Oct 2014 17:57:45 -  1.372
+++ ChangeLog   18 Oct 2014 14:23:07 -  1.373
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/sudo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v 1.372 2014/10/16 
17:57:45 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v 1.373 2014/10/18 
14:23:07 ago Exp $
+
+  18 Oct 2014; Agostino Sarubbo a...@gentoo.org sudo-1.8.11_p1.ebuild:
+  Stable for ppc, wrt bug #524752
 
   16 Oct 2014; Mike Frysinger vap...@gentoo.org sudo-1.8.11_p1.ebuild:
   Mark arm64/ia64/m68k/s390/sh stable.






  1   2   3   4   >