[gentoo-commits] gentoo-x86 commit in sys-cluster/neutron/files: 2013.2.3-CVE-2014-0187.patch 2014.1-CVE-2014-0187.patch

2014-05-14 Thread Matt Thode (prometheanfire)
prometheanfire14/05/14 06:01:28

  Added:2013.2.3-CVE-2014-0187.patch
2014.1-CVE-2014-0187.patch
  Log:
  fixing a CVE and failed patch
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2471eb3e40ac5ac3)

Revision  ChangesPath
1.1  sys-cluster/neutron/files/2013.2.3-CVE-2014-0187.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/neutron/files/2013.2.3-CVE-2014-0187.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/neutron/files/2013.2.3-CVE-2014-0187.patch?rev=1.1content-type=text/plain

Index: 2013.2.3-CVE-2014-0187.patch
===
From 03eed8cd34cd4fb043c11fc99f6bb0b4fbd5728d Mon Sep 17 00:00:00 2001
From: marios mar...@redhat.com
Date: Fri, 29 Nov 2013 18:23:54 +0200
Subject: [PATCH] Validate CIDR given as ip-prefix in
 security-group-rule-create

There was no validation for the provided ip prefix. This just adds
a simple parse using netaddr and explodes with appropriate message.
Also makes sure ip prefix _is_ cidr (192.168.1.1--192.168.1.1/32).

Validation occurs at the attribute level (API model) as well as at
the db level, where the ethertype is validated against the ip_prefix
address type.

Unit test cases added - bad prefix, unmasked prefix and incorrect
ethertype. Also adds attribute test cases for the added
convert_ip_prefix_to_cidr method

Closes-Bug: 1255338

Conflicts:
neutron/tests/unit/test_security_groups_rpc.py
neutron/tests/unit/test_extension_security_group.py

Change-Id: I71fb8c887963a122a5bd8cfdda800026c1cd3954
(cherry picked from commit 65aa92b0348b7ab8413f359b00825610cdf66607)
---
 neutron/common/exceptions.py   |  4 +
 neutron/db/securitygroups_db.py| 20 +
 neutron/extensions/securitygroup.py| 18 -
 .../tests/unit/test_extension_security_group.py| 86 ++
 4 files changed, 127 insertions(+), 1 deletion(-)

diff --git a/neutron/common/exceptions.py b/neutron/common/exceptions.py
index 88fa6e4..80a75d1 100644
--- a/neutron/common/exceptions.py
+++ b/neutron/common/exceptions.py
@@ -306,3 +306,7 @@ class NetworkVxlanPortRangeError(object):
 class DeviceIDNotOwnedByTenant(Conflict):
 message = _(The following device_id %(device_id)s is not owned by your 
 tenant or matches another tenants router.)
+
+
+class InvalidCIDR(BadRequest):
+message = _(Invalid CIDR %(input)s given as IP prefix)
diff --git a/neutron/db/securitygroups_db.py b/neutron/db/securitygroups_db.py
index 2a7d2ef..8868546 100644
--- a/neutron/db/securitygroups_db.py
+++ b/neutron/db/securitygroups_db.py
@@ -16,6 +16,7 @@
 #
 # @author: Aaron Rosen, Nicira, Inc
 
+import netaddr
 import sqlalchemy as sa
 from sqlalchemy import orm
 from sqlalchemy.orm import exc
@@ -331,6 +332,7 @@ class SecurityGroupDbMixin(ext_sg.SecurityGroupPluginBase):
 new_rules.add(rule['security_group_id'])
 
 self._validate_port_range(rule)
+self._validate_ip_prefix(rule)
 
 if rule['remote_ip_prefix'] and rule['remote_group_id']:
 raise ext_sg.SecurityGroupRemoteGroupAndRemoteIpPrefix()
@@ -411,6 +413,24 @@ class SecurityGroupDbMixin(ext_sg.SecurityGroupPluginBase):
 if (i['security_group_rule'] == db_rule):
 raise ext_sg.SecurityGroupRuleExists(id=id)
 
+def _validate_ip_prefix(self, rule):
+Check that a valid cidr was specified as remote_ip_prefix
+
+No need to check that it is in fact an IP address as this is already
+validated by attribute validators.
+Check that rule ethertype is consistent with remote_ip_prefix ip type.
+Add mask to ip_prefix if absent (192.168.1.10 - 192.168.1.10/32).
+
+input_prefix = rule['remote_ip_prefix']
+if input_prefix:
+addr = netaddr.IPNetwork(input_prefix)
+# set input_prefix to always include the netmask:
+rule['remote_ip_prefix'] = str(addr)
+# check consistency of ethertype with addr version
+if rule['ethertype'] != IPv%d % (addr.version):
+raise ext_sg.SecurityGroupRuleParameterConflict(
+ethertype=rule['ethertype'], cidr=input_prefix)
+
 def get_security_group_rules(self, context, filters=None, fields=None,
  sorts=None, limit=None, marker=None,
  page_reverse=False):
diff --git a/neutron/extensions/securitygroup.py 
b/neutron/extensions/securitygroup.py
index 85d499a..3d10b5a 100644
--- a/neutron/extensions/securitygroup.py
+++ b/neutron/extensions/securitygroup.py
@@ -17,6 +17,7 @@
 
 from abc import ABCMeta
 from abc import abstractmethod
+import netaddr
 
 from oslo.config import cfg
 
@@ -102,6 +103,10 @@ class 

[gentoo-commits] gentoo-x86 commit in sys-cluster/neutron: neutron-2013.2.3-r1.ebuild neutron-2014.1-r2.ebuild neutron-2014.1.9999.ebuild ChangeLog neutron-2014.1.ebuild neutron-2014.1-r1.ebuild neutr

2014-05-14 Thread Matt Thode (prometheanfire)
prometheanfire14/05/14 06:01:28

  Modified: neutron-2014.1..ebuild ChangeLog
  Added:neutron-2013.2.3-r1.ebuild neutron-2014.1-r2.ebuild
  Removed:  neutron-2014.1.ebuild neutron-2014.1-r1.ebuild
neutron-2013.2.3.ebuild
  Log:
  fixing a CVE and failed patch
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2471eb3e40ac5ac3)

Revision  ChangesPath
1.2  sys-cluster/neutron/neutron-2014.1..ebuild

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

Index: neutron-2014.1..ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-cluster/neutron/neutron-2014.1..ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- neutron-2014.1..ebuild  28 Apr 2014 02:59:13 -  1.1
+++ neutron-2014.1..ebuild  14 May 2014 06:01:28 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-cluster/neutron/neutron-2014.1..ebuild,v 1.1 
2014/04/28 02:59:13 prometheanfire Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-cluster/neutron/neutron-2014.1..ebuild,v 1.2 
2014/05/14 06:01:28 prometheanfire Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -74,8 +74,7 @@
openvswitch? ( net-misc/openvswitch )
dhcp? ( net-dns/dnsmasq[dhcp-tools] )
 
-PATCHES=( ${FILESDIR}/sphinx_mapping.patch
-   ${FILESDIR}/nicira.patch )
+PATCHES=( ${FILESDIR}/sphinx_mapping.patch )
 
 pkg_setup() {
enewgroup neutron



1.31 sys-cluster/neutron/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/neutron/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   11 May 2014 13:03:16 -  1.30
+++ ChangeLog   14 May 2014 06:01:28 -  1.31
@@ -1,6 +1,16 @@
 # ChangeLog for sys-cluster/neutron
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/neutron/ChangeLog,v 1.30 
2014/05/11 13:03:16 vadimk Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/neutron/ChangeLog,v 1.31 
2014/05/14 06:01:28 prometheanfire Exp $
+
+*neutron-2014.1-r2 (14 May 2014)
+*neutron-2013.2.3-r1 (14 May 2014)
+
+  14 May 2014; Matthew Thode prometheanf...@gentoo.org
+  +files/2013.2.3-CVE-2014-0187.patch, +files/2014.1-CVE-2014-0187.patch,
+  +neutron-2013.2.3-r1.ebuild, +neutron-2014.1-r2.ebuild,
+  -neutron-2013.2.3.ebuild, -neutron-2014.1-r1.ebuild, -neutron-2014.1.ebuild,
+  neutron-2014.1..ebuild:
+  fixing a CVE and failed patch
 
 *neutron-2014.1-r1 (11 May 2014)
 



1.1  sys-cluster/neutron/neutron-2013.2.3-r1.ebuild

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

Index: neutron-2013.2.3-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-cluster/neutron/neutron-2013.2.3-r1.ebuild,v 1.1 
2014/05/14 06:01:28 prometheanfire Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1 user

DESCRIPTION=A virtual network service for Openstack.
HOMEPAGE=https://launchpad.net/neutron;
SRC_URI=http://launchpad.net/${PN}/havana/${PV}/+download/${P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=+dhcp doc +l3 +metadata +openvswitch +server test sqlite mysql postgres
REQUIRED_USE=|| ( mysql postgres sqlite )

#the cliff dep is as below because it depends on pyparsing, which only has 2.7 
OR 3.2, not both
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
=dev-python/pbr-0.5.21[${PYTHON_USEDEP}]
dev-python/pbr-1.0[${PYTHON_USEDEP}]
app-admin/sudo
test? ( =dev-python/cliff-1.4.3[${PYTHON_USEDEP}]

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

2014-05-14 Thread Hans de Graaff (graaff)
graaff  14/05/14 06:15:57

  Modified: ChangeLog
  Log:
  Add missing slotmove for dev-ruby/listen version, bug 510226.

Revision  ChangesPath
1.8958   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8957
retrieving revision 1.8958
diff -u -r1.8957 -r1.8958
--- ChangeLog   13 May 2014 21:55:35 -  1.8957
+++ ChangeLog   14 May 2014 06:15:57 -  1.8958
@@ -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.8957 2014/05/13 
21:55:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8958 2014/05/14 
06:15:57 graaff 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!
 
+  14 May 2014; Hans de Graaff gra...@gentoo.org +updates/2Q-2014:
+  Add missing slotmove for dev-ruby/listen version, bug 510226.
+
   13 May 2014; Michał Górny mgo...@gentoo.org package.mask:
   Mask multilib gnutls.
 






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

2014-05-14 Thread Hans de Graaff (graaff)
graaff  14/05/14 06:15:57

  Added:2Q-2014
  Log:
  Add missing slotmove for dev-ruby/listen version, bug 510226.

Revision  ChangesPath
1.1  profiles/updates/2Q-2014

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

Index: 2Q-2014
===
slotmove =dev-ruby/listen-1.3.1-r1 0 1






[gentoo-commits] gentoo-x86 commit in app-admin/puppet: puppet-3.5.1.ebuild ChangeLog

2014-05-14 Thread Matt Thode (prometheanfire)
prometheanfire14/05/14 06:36:08

  Modified: ChangeLog
  Added:puppet-3.5.1.ebuild
  Log:
  fixing bug 508500 and bug 508498 (in 3.5.1)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2471eb3e40ac5ac3)

Revision  ChangesPath
1.196app-admin/puppet/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/puppet/ChangeLog,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -r1.195 -r1.196
--- ChangeLog   16 Mar 2014 21:52:37 -  1.195
+++ ChangeLog   14 May 2014 06:36:08 -  1.196
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/puppet
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/puppet/ChangeLog,v 1.195 
2014/03/16 21:52:37 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/puppet/ChangeLog,v 1.196 
2014/05/14 06:36:08 prometheanfire Exp $
+
+*puppet-3.5.1 (14 May 2014)
+
+  14 May 2014; Matthew Thode prometheanf...@gentoo.org +puppet-3.5.1.ebuild:
+  fixing bug 508500 and bug 508498 (in 3.5.1)
 
 *puppet-3.4.3-r1 (16 Mar 2014)
 



1.1  app-admin/puppet/puppet-3.5.1.ebuild

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

Index: puppet-3.5.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/puppet/puppet-3.5.1.ebuild,v 1.1 
2014/05/14 06:36:08 prometheanfire Exp $

EAPI=5

USE_RUBY=ruby19 ruby20

inherit elisp-common xemacs-elisp-common eutils user ruby-fakegem versionator

DESCRIPTION=A system automation and configuration management software
HOMEPAGE=http://puppetlabs.com/;
SRC_URI=http://www.puppetlabs.com/downloads/puppet/${P}.tar.gz;

LICENSE=Apache-2.0 GPL-2
SLOT=0
KEYWORDS=~amd64 ~hppa ~ppc ~sparc ~x86
IUSE=augeas diff doc emacs ldap minimal rrdtool selinux shadow sqlite3 
vim-syntax xemacs

ruby_add_rdepend 
dev-ruby/hiera
dev-ruby/rgen
=dev-ruby/facter-1.6.2
augeas? ( dev-ruby/ruby-augeas )
diff? ( dev-ruby/diff-lcs )
doc? ( dev-ruby/rdoc )
ldap? ( dev-ruby/ruby-ldap )
shadow? ( dev-ruby/ruby-shadow )
sqlite3? ( dev-ruby/sqlite3 )
virtual/ruby-ssl

DEPEND=${DEPEND}
ruby_targets_ruby19? ( dev-lang/ruby:1.9[yaml] )
emacs? ( virtual/emacs )
xemacs? ( app-editors/xemacs )
RDEPEND=${RDEPEND}
ruby_targets_ruby19? ( dev-lang/ruby:1.9[yaml] )
rrdtool? ( =net-analyzer/rrdtool-1.2.23[ruby] )
selinux? (
sys-libs/libselinux[ruby]
sec-policy/selinux-puppet
)
vim-syntax? ( =app-vim/puppet-syntax-3.0.1 )
=app-portage/eix-0.18.0

SITEFILE=50${PN}-mode-gentoo.el

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

all_ruby_compile() {
if use emacs ; then
elisp-compile ext/emacs/puppet-mode.el
fi

if use xemacs ; then
# Create a separate version for xemacs to be able to install
# emacs and xemacs in parallel.
mkdir ext/xemacs
cp ext/emacs/* ext/xemacs/
xemacs-elisp-compile ext/xemacs/puppet-mode.el
fi
}

each_ruby_install() {
each_fakegem_install
#${RUBY} install.rb --destdir=${D} install || die
}

all_ruby_install() {
all_fakegem_install

#systemd stuffs
insinto /usr/lib/systemd/system
doins ${WORKDIR}/all/${P}/ext/systemd/puppet.service
insinto /usr/lib/tmpfiles.d
newins ${FILESDIR}/tmpfiles.d puppet.conf

newinitd ${FILESDIR}/puppet.init-r1 puppet

# Initial configuration files
insinto /etc/puppet

# Location of log and data files
keepdir /var/log/puppet
fowners -R puppet:puppet /var/log/puppet

if use minimal ; then
rm ${ED}/etc/puppet/auth.conf
else
insinto /usr/lib/systemd/system
doins ${WORKDIR}/all/${P}/ext/systemd/puppetmaster.service
newinitd ${FILESDIR}/puppetmaster.init-r1 puppetmaster
newconfd ${FILESDIR}/puppetmaster.confd puppetmaster

insinto /etc/puppet


[gentoo-commits] gentoo-x86 commit in app-shells/bash: ChangeLog bash-4.3_p11-r5.ebuild

2014-05-14 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/14 07:08:53

  Modified: ChangeLog bash-4.3_p11-r5.ebuild
  Log:
  Fixed patchname
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.370app-shells/bash/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.369
retrieving revision 1.370
diff -u -r1.369 -r1.370
--- ChangeLog   13 May 2014 08:48:24 -  1.369
+++ ChangeLog   14 May 2014 07:08:53 -  1.370
@@ -1,6 +1,11 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.369 
2014/05/13 08:48:24 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.370 
2014/05/14 07:08:53 polynomial-c Exp $
+
+  14 May 2014; Lars Wendler polynomia...@gentoo.org bash-4.3_p11-r5.ebuild,
+  +files/bash-4.3-bind-compound-arry.patch,
+  -files/bash-4.3-bind-compund-arry.patch:
+  Fixed patchname.
 
 *bash-4.3_p11-r5 (13 May 2014)
 



1.2  app-shells/bash/bash-4.3_p11-r5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.3_p11-r5.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.3_p11-r5.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.3_p11-r5.ebuild?r1=1.1r2=1.2

Index: bash-4.3_p11-r5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.3_p11-r5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bash-4.3_p11-r5.ebuild  13 May 2014 08:48:24 -  1.1
+++ bash-4.3_p11-r5.ebuild  14 May 2014 07:08: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/app-shells/bash/bash-4.3_p11-r5.ebuild,v 
1.1 2014/05/13 08:48:24 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.3_p11-r5.ebuild,v 
1.2 2014/05/14 07:08:53 polynomial-c Exp $
 
 EAPI=4
 
@@ -87,7 +87,7 @@
${FILESDIR}/${PN}-4.3-complete-dequoting.patch \
${FILESDIR}/${PN}-4.3-extglob-directory.patch \
${FILESDIR}/${PN}-4.3-localvar-invisible.patch \
-   ${FILESDIR}/${PN}-4.3-bind-compund-arry.patch
+   ${FILESDIR}/${PN}-4.3-bind-compound-arry.patch
 
epatch_user
 }






[gentoo-commits] gentoo-x86 commit in app-shells/bash/files: bash-4.3-bind-compound-arry.patch bash-4.3-bind-compund-arry.patch

2014-05-14 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/14 07:08:53

  Added:bash-4.3-bind-compound-arry.patch
  Removed:  bash-4.3-bind-compund-arry.patch
  Log:
  Fixed patchname
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.1  app-shells/bash/files/bash-4.3-bind-compound-arry.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/files/bash-4.3-bind-compound-arry.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/files/bash-4.3-bind-compound-arry.patch?rev=1.1content-type=text/plain

Index: bash-4.3-bind-compound-arry.patch
===
*** ../bash-4.3-patched/arrayfunc.c 2014-03-28 10:54:21.0 -0400
--- arrayfunc.c 2014-05-12 11:19:00.0 -0400
***
*** 180,183 
--- 180,184 
FREE (newval);
  
+   VUNSETATTR (entry, att_invisible);  /* no longer invisible */
return (entry);
  }






[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut/files: 037-0005-modsign-do-not-hardcode-path-to-keyctl.patch

2014-05-14 Thread Amadeusz Zolnowski (aidecoe)
aidecoe 14/05/14 07:09:46

  Added:   
037-0005-modsign-do-not-hardcode-path-to-keyctl.patch
  Log:
  Fixes bug #506094 and rels bug #508652 in behalf of Alexander Tsoy.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F0134531E1DBFAB5)

Revision  ChangesPath
1.1  
sys-kernel/dracut/files/037-0005-modsign-do-not-hardcode-path-to-keyctl.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/037-0005-modsign-do-not-hardcode-path-to-keyctl.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/037-0005-modsign-do-not-hardcode-path-to-keyctl.patch?rev=1.1content-type=text/plain

Index: 037-0005-modsign-do-not-hardcode-path-to-keyctl.patch
===
From 99f913857dd38facd8f2af16a8b591fa6d7f2d45 Mon Sep 17 00:00:00 2001
From: Alexander Tsoy alexan...@tsoy.me
Date: Mon, 31 Mar 2014 17:56:13 +0400
Subject: [PATCH 5/5] modsign: do not hardcode path to keyctl

https://bugs.gentoo.org/show_bug.cgi?id=506094
---
 modules.d/03modsign/module-setup.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules.d/03modsign/module-setup.sh 
b/modules.d/03modsign/module-setup.sh
index 09285d3..cc0e241 100755
--- a/modules.d/03modsign/module-setup.sh
+++ b/modules.d/03modsign/module-setup.sh
@@ -29,7 +29,7 @@ depends() {
 # called by dracut
 install() {
 inst_dir /lib/modules/keys
-inst_binary /usr/bin/keyctl
+inst_binary keyctl
 
 inst_hook pre-trigger 01 $moddir/load-modsign-keys.sh
 
-- 
1.9.3







[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut: ChangeLog dracut-037-r1.ebuild

2014-05-14 Thread Amadeusz Zolnowski (aidecoe)
aidecoe 14/05/14 07:09:46

  Modified: ChangeLog
  Added:dracut-037-r1.ebuild
  Log:
  Fixes bug #506094 and rels bug #508652 in behalf of Alexander Tsoy.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F0134531E1DBFAB5)

Revision  ChangesPath
1.166sys-kernel/dracut/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog   24 Apr 2014 20:09:28 -  1.165
+++ ChangeLog   14 May 2014 07:09:46 -  1.166
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/dracut
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.165 
2014/04/24 20:09:28 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.166 
2014/05/14 07:09:46 aidecoe Exp $
+
+*dracut-037-r1 (13 May 2014)
+
+  13 May 2014; Amadeusz Żołnowski aide...@gentoo.org +dracut-037-r1.ebuild,
+  +files/037-0005-modsign-do-not-hardcode-path-to-keyctl.patch:
+  Fixes bug #506094 and rels bug #508652 in behalf of Alexander Tsoy.
 
   24 Apr 2014; Amadeusz Żołnowski aide...@gentoo.org dracut-036-r4.ebuild,
   dracut-037.ebuild:



1.1  sys-kernel/dracut/dracut-037-r1.ebuild

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

Index: dracut-037-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-037-r1.ebuild,v 1.1 
2014/05/14 07:09:46 aidecoe Exp $

EAPI=4

inherit bash-completion-r1 eutils linux-info multilib systemd

DESCRIPTION=Generic initramfs generation tool
HOMEPAGE=http://dracut.wiki.kernel.org;
SRC_URI=mirror://kernel/linux/utils/boot/${PN}/${P}.tar.xz
LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=debug selinux systemd

RESTRICT=test

CDEPEND=virtual/udev
systemd? ( =sys-apps/systemd-199 )
selinux? ( sec-policy/selinux-dracut )

RDEPEND=${CDEPEND}
app-arch/cpio
=app-shells/bash-4.0
sys-apps/kmod-5[tools]
|| ( =sys-apps/sysvinit-2.87-r3 sys-apps/systemd-sysv-utils )
=sys-apps/util-linux-2.21

debug? ( dev-util/strace )
selinux? ( sys-libs/libselinux sys-libs/libsepol )

DEPEND=${CDEPEND}
app-text/asciidoc
=dev-libs/libxslt-1.1.26
app-text/docbook-xml-dtd:4.5
=app-text/docbook-xsl-stylesheets-1.75.2
virtual/pkgconfig


DOCS=( AUTHORS HACKING NEWS README README.generic README.kernel README.modules
README.testsuite TODO )
MY_LIBDIR=/usr/lib
PATCHES=(
${FILESDIR}/${PV}-0001-dracut-functions.sh-support-for-altern.patch
${FILESDIR}/${PV}-0002-gentoo.conf-let-udevdir-be-handled-by-.patch
${FILESDIR}/${PV}-0003-Use-the-same-paths-in-dracut.sh-as-tho.patch
${FILESDIR}/${PV}-0004-Install-dracut-install-into-libexec-di.patch
${FILESDIR}/${PV}-0005-modsign-do-not-hardcode-path-to-keyctl.patch
)

#
# Helper functions
#

# Removes module from modules.d.
# $1 = module name
# Module name can be specified without number prefix.
rm_module() {
local force m
[[ $1 = -f ]]  force=-f

for m in $@; do
if [[ $m =~ ^[0-9][0-9][^\ ]*$ ]]; then
rm ${force} --interactive=never -r ${modules_dir}/$m
else
rm ${force} --interactive=never -r 
${modules_dir}/[0-9][0-9]$m
fi
done
}

# Grabbed from net-misc/netctl ebuild.
optfeature() {
local desc=$1
shift
while (( $# )); do
if has_version $1; then
elog   [I] $1 to ${desc}
else
elog   [ ] $1 to ${desc}
fi
shift
done
}

#
# ebuild functions
#

src_prepare() {
epatch ${PATCHES[@]}

local libdirs=/$(get_libdir) /usr/$(get_libdir)
if [[ ${SYMLINK_LIB} = yes ]]; then
# Preserve lib - lib64 symlinks in initramfs
[[ $libdirs =~ /lib\  ]] || libdirs+= /lib /usr/lib
fi
einfo Setting libdirs 

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

2014-05-14 Thread Jason Donenfeld (zx2c4)
zx2c4   14/05/14 07:49:03

  Modified: ChangeLog
  Added:pass-1.6.2.ebuild
  Removed:  pass-1.6.1-r1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A5DE03AE)

Revision  ChangesPath
1.24 app-admin/pass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/pass/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   9 May 2014 22:52:56 -   1.23
+++ ChangeLog   14 May 2014 07:49:03 -  1.24
@@ -1,6 +1,12 @@
 # ChangeLog for app-admin/pass
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/ChangeLog,v 1.23 2014/05/09 
22:52:56 zx2c4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/ChangeLog,v 1.24 2014/05/14 
07:49:03 zx2c4 Exp $
+
+*pass-1.6.2 (14 May 2014)
+
+  14 May 2014; Jason A. Donenfeld zx...@gentoo.org +pass-1.6.2.ebuild,
+  -pass-1.6.1-r1.ebuild:
+  Version bump.
 
   09 May 2014; Jason A. Donenfeld zx...@gentoo.org pass-1.6.1-r1.ebuild,
   pass-.ebuild:



1.1  app-admin/pass/pass-1.6.2.ebuild

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

Index: pass-1.6.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/pass-1.6.2.ebuild,v 1.1 
2014/05/14 07:49:03 zx2c4 Exp $

EAPI=4

inherit bash-completion-r1 elisp-common

DESCRIPTION=Stores, retrieves, generates, and synchronizes passwords securely 
using gpg, pwgen, and git
HOMEPAGE=http://zx2c4.com/projects/password-store/;
SRC_URI=http://git.zx2c4.com/password-store/snapshot/password-store-${PV}.tar.xz;

SLOT=0
LICENSE=GPL-2
KEYWORDS=~amd64 ~x86 ~x86-macos
IUSE=+git X zsh-completion fish-completion emacs dmenu importers elibc_Darwin

RDEPEND=
app-crypt/gnupg
app-admin/pwgen
=app-text/tree-1.7.0
git? ( dev-vcs/git )
X? ( x11-misc/xclip )
elibc_Darwin? ( app-misc/getopt )
zsh-completion? ( app-shells/zsh-completion )
fish-completion? ( app-shells/fish )
dmenu? ( x11-misc/dmenu )
emacs? ( virtual/emacs )


S=${WORKDIR}/password-store-${PV}

src_prepare() {
use elibc_Darwin || return
# use coreutils'
sed -i -e 's/openssl base64/base64/g' src/platform/darwin.sh || die
# host getopt isn't cool, and we aren't brew (rip out brew reference)
sed -i -e '/^GETOPT=/s/=.*$/=getopt-long/' src/platform/darwin.sh || die
# make sure we can find mount
sed -i -e 's:mount -t:/sbin/mount -t:' src/platform/darwin.sh || die
}

src_compile() {
:;
}

src_install() {
use zsh-completion  export FORCE_ZSHCOMP=1
use fish-completion  export FORCE_FISHCOMP=1
default
use dmenu  dobin contrib/dmenu/passmenu
newbashcomp src/completion/pass.bash-completion pass
if use emacs; then
elisp-install ${PN} contrib/emacs/*.el
elisp-site-file-install ${FILESDIR}/50${PN}-gentoo.el
fi
if use importers; then
exeinto /usr/share/${PN}/importers
doexe contrib/importers/*
fi
}

pkg_postinst() {
use emacs  elisp-site-regen
if use importers; then
einfo To import passwords from other password managers, you 
may use the
einfo various importer scripts found in:
einfo ${ROOT}usr/share/${PN}/importers/
fi
}

pkg_postrm() {
use emacs  elisp-site-regen
}






[gentoo-commits] gentoo-x86 commit in app-arch/defluff: - New directory

2014-05-14 Thread Tom Wijsman (tomwij)
tomwij  14/05/14 08:12:42

  Log:
  Directory /var/cvsroot/gentoo-x86/app-arch/defluff added to the repository



[gentoo-commits] gentoo-x86 commit in app-arch/defluff: metadata.xml defluff-0.3.2.ebuild ChangeLog

2014-05-14 Thread Tom Wijsman (tomwij)
tomwij  14/05/14 08:14:30

  Added:metadata.xml defluff-0.3.2.ebuild ChangeLog
  Log:
  New ebuild for app-arch/defluff, a deflate huffman optimizer; fixes bug 
#498210, filed by Hello71 who will proxy maintain this package.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.1  app-arch/defluff/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/defluff/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/defluff/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
herdproxy-maintainers/herd
maintainer
emailalex_y...@yahoo.ca/email
nameAlex Xu/name
/maintainer
/pkgmetadata



1.1  app-arch/defluff/defluff-0.3.2.ebuild

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

Index: defluff-0.3.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/defluff/defluff-0.3.2.ebuild,v 1.1 
2014/05/14 08:14:30 tomwij Exp $

EAPI=5

DESCRIPTION=deflate huffman optimizer
HOMEPAGE=http://j-o.users.sourceforge.net/
http://encode.ru/threads/1214-defluff-a-deflate-huffman-optimizer;
SRC_URI=amd64? ( http://encode.ru/attachment.php?attachmentid=1523 - 
${P}-linux-x86_64.zip )
x86? ( http://encode.ru/attachment.php?attachmentid=1522 - 
${P}-linux-i686.zip )

LICENSE=all-rights-reserved
SLOT=0
KEYWORDS=~amd64 ~x86 -*
IUSE=

DEPEND=app-arch/unzip
RDEPEND=
S=${WORKDIR}

QA_PREBUILT=/opt/bin/${PN}

src_install() {
into /opt
dobin ${PN}
}



1.1  app-arch/defluff/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for app-arch/defluff
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/defluff/ChangeLog,v 1.1 2014/05/14 
08:14:30 tomwij Exp $

*defluff-0.3.2 (14 May 2014)

  14 May 2014; Tom Wijsman tom...@gentoo.org +defluff-0.3.2.ebuild,
  +metadata.xml:
  New ebuild for app-arch/defluff, a deflate huffman optimizer; fixes bug
  #498210, filed by Hello71 who will proxy maintain this package.






[gentoo-commits] gentoo-x86 commit in dev-python/python-ldap: python-ldap-2.4.15.ebuild ChangeLog

2014-05-14 Thread Ian Delaney (idella4)
idella4 14/05/14 08:31:55

  Modified: ChangeLog
  Added:python-ldap-2.4.15.ebuild
  Log:
  bump; drop py2.6 support, drop IUSE doc, update deps
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.132dev-python/python-ldap/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog   9 Apr 2014 21:32:50 -   1.131
+++ ChangeLog   14 May 2014 08:31:55 -  1.132
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/python-ldap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v 1.131 
2014/04/09 21:32:50 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v 1.132 
2014/05/14 08:31:55 idella4 Exp $
+
+*python-ldap-2.4.15 (14 May 2014)
+
+  14 May 2014; Ian Delaney idel...@gentoo.org +python-ldap-2.4.15.ebuild,
+  python-ldap-2.4.14.ebuild:
+  bump; drop py2.6 support, drop IUSE doc, update deps
 
   09 Apr 2014; Michał Górny mgo...@gentoo.org python-ldap-.ebuild:
   Remove python2.5 leftover.



1.1  dev-python/python-ldap/python-ldap-2.4.15.ebuild

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

Index: python-ldap-2.4.15.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.15.ebuild,v 1.1 
2014/05/14 08:31:55 idella4 Exp $

EAPI=5

# pypy: bug #458558 (wrong linker options due to not respecting CC)
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1 multilib

DESCRIPTION=Various LDAP-related Python modules
HOMEPAGE=http://www.python-ldap.org http://pypi.python.org/pypi/python-ldap;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=PSF-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-solaris
IUSE=examples sasl ssl

# If you need support for openldap-2.3.x, please use python-ldap-2.3.9.
# python team: Please do not remove python-ldap-2.3.9 from the tree.
# OpenSSL is an optional runtime dep.
RDEPEND=net-nds/openldap-2.4.11
dev-python/pyasn1[${PYTHON_USEDEP}]
sasl? ( =dev-libs/cyrus-sasl-2.1 )
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]

python_prepare_all() {
sed -e s:^library_dirs =.*:library_dirs = /usr/$(get_libdir) 
/usr/$(get_libdir)/sasl2: \
-e s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include 
${EPREFIX}/usr/include/sasl: \
-i setup.cfg || die error fixing setup.cfg

local mylibs=ldap
if use sasl; then
use ssl  mylibs=ldap_r
mylibs=${mylibs} sasl2
else
sed -e 's/HAVE_SASL//g' -i setup.cfg || die
fi
use ssl  mylibs=${mylibs} ssl crypto
use elibc_glibc  mylibs=${mylibs} resolv

sed -e s:^libs = .*:libs = lber ${mylibs}: \
-i setup.cfg || die error setting up libs in setup.cfg

distutils-r1_python_prepare_all
}

python_test() {
# XXX: the tests supposedly can start local slapd
# but it requires some manual config, it seems.

${PYTHON} Tests/t_ldapurl.py || die Tests fail with ${EPYTHON}
}

python_install_all() {
use examples  local EXAMPLES=( Demo/. )
distutils-r1_python_install_all
}






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

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 08:46:16

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

Revision  ChangesPath
1.8959   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8958
retrieving revision 1.8959
diff -u -r1.8958 -r1.8959
--- ChangeLog   14 May 2014 06:15:57 -  1.8958
+++ ChangeLog   14 May 2014 08:46:15 -  1.8959
@@ -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.8958 2014/05/14 
06:15:57 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8959 2014/05/14 
08:46:15 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  14 May 2014; Michał Górny mgo...@gentoo.org package.mask:
+  Mask multilib cups.
+
   14 May 2014; Hans de Graaff gra...@gentoo.org +updates/2Q-2014:
   Add missing slotmove for dev-ruby/listen version, bug 510226.
 



1.15686  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15685
retrieving revision 1.15686
diff -u -r1.15685 -r1.15686
--- package.mask13 May 2014 21:55:35 -  1.15685
+++ package.mask14 May 2014 08:46:15 -  1.15686
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15685 2014/05/13 
21:55:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15686 2014/05/14 
08:46:15 mgorny Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -453,6 +453,8 @@
 =dev-libs/libevent-2.0.21-r1
 =net-dns/unbound-1.4.21-r2
 =net-libs/gnutls-3.3.1-r1
+=net-print/cups-1.7.1-r2
+=app-emulation/emul-linux-x86-baselibs-20140508-r1
 
 # Luca Barbato lu_z...@gentoo.org (20 Feb 2014)
 # Beta ebuild, unmask to test the tree.






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

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 08:47:49

  Added:remove-native-20140508-r1
  Log:
  Update for multilib gnutls  cups.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

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

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







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

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 08:47:49

  Modified: ChangeLog
  Added:emul-linux-x86-baselibs-20140508-r1.ebuild
  Log:
  Update for multilib gnutls  cups.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

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

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

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog   13 May 2014 18:03:30 -  1.208
+++ ChangeLog   14 May 2014 08:47:49 -  1.209
@@ -1,6 +1,12 @@
 # ChangeLog for app-emulation/emul-linux-x86-baselibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog,v 1.208 
2014/05/13 18:03:30 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-baselibs/ChangeLog,v 1.209 
2014/05/14 08:47:49 mgorny Exp $
+
+*emul-linux-x86-baselibs-20140508-r1 (14 May 2014)
+
+  14 May 2014; Michał Górny mgo...@gentoo.org
+  +emul-linux-x86-baselibs-20140508-r1.ebuild, 
+files/remove-native-20140508-r1:
+  Update for multilib gnutls  cups.
 
   13 May 2014; Michał Górny mgo...@gentoo.org
   emul-linux-x86-baselibs-20140406-r4.ebuild,



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

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







[gentoo-commits] gentoo-x86 commit in net-print/cups: cups-1.7.2-r1.ebuild cups-1.7.1-r2.ebuild cups-9999.ebuild ChangeLog

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 08:47:24

  Modified: cups-.ebuild ChangeLog
  Added:cups-1.7.2-r1.ebuild cups-1.7.1-r2.ebuild
  Log:
  Enable multilib support, bug #493172.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.55 net-print/cups/cups-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups/cups-.ebuild?rev=1.55view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups/cups-.ebuild?rev=1.55content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups/cups-.ebuild?r1=1.54r2=1.55

Index: cups-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-print/cups/cups-.ebuild,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- cups-.ebuild15 Apr 2014 21:26:13 -  1.54
+++ cups-.ebuild14 May 2014 08:47:24 -  1.55
@@ -1,14 +1,14 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/cups/cups-.ebuild,v 1.54 
2014/04/15 21:26:13 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/cups/cups-.ebuild,v 1.55 
2014/05/14 08:47:24 mgorny Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python{2_6,2_7} )
 
 inherit autotools base fdo-mime gnome2-utils flag-o-matic linux-info \
-   multilib pam python-single-r1 user versionator java-pkg-opt-2 systemd \
-   toolchain-funcs
+   multilib multilib-minimal pam python-single-r1 user versionator \
+   java-pkg-opt-2 systemd toolchain-funcs
 
 MY_P=${P/_rc/rc}
 MY_P=${MY_P/_beta/b}
@@ -48,7 +48,7 @@
sys-apps/attr
)
)
-   dbus? ( sys-apps/dbus )
+   dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
java? ( =virtual/jre-1.6 )
kerberos? ( virtual/krb5 )
!lprng-compat? ( !net-print/lprng )
@@ -57,19 +57,23 @@
selinux? ( sec-policy/selinux-cups )
ssl? (
gnutls? (
-   dev-libs/libgcrypt:0
-   net-libs/gnutls
+   dev-libs/libgcrypt:0[${MULTILIB_USEDEP}]
+   net-libs/gnutls[${MULTILIB_USEDEP}]
)
-   !gnutls? ( =dev-libs/openssl-0.9.8g )
+   !gnutls? ( =dev-libs/openssl-0.9.8g[${MULTILIB_USEDEP}] )
)
usb? ( virtual/libusb:1 )
X? ( x11-misc/xdg-utils )
xinetd? ( sys-apps/xinetd )
-   zeroconf? ( net-dns/avahi )
+   zeroconf? ( net-dns/avahi[${MULTILIB_USEDEP}] )
+   abi_x86_32? (
+   !=app-emulation/emul-linux-x86-baselibs-20140508
+   !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
+   )
 
 
 DEPEND=${RDEPEND}
-   virtual/pkgconfig
+   virtual/pkgconfig[${MULTILIB_USEDEP}]
 
 
 PDEPEND=
@@ -143,39 +147,45 @@
base_src_prepare
use systemd  epatch ${FILESDIR}/${PN}-1.7.2-systemd-socket-2.patch
 
+   # Fix install-sh, posix sh does not have 'function'.
+   sed 's#function gzipcp#gzipcp()#g' -i ${S}/install-sh
+
AT_M4DIR=config-scripts eaclocal
eautoconf
+
+   # custom Makefiles
+   multilib_copy_sources
 }
 
-src_configure() {
+multilib_src_configure() {
export DSOFLAGS=${LDFLAGS}
 
einfo LANGS=\${LANGS}\
einfo LINGUAS=\${LINGUAS}\
 
-   local myconf
+   local myconf=()
if use ssl ; then
-   myconf+=
+   myconf+=(
$(use_enable gnutls)
$(use_enable !gnutls openssl)
-   
+   )
else
-   myconf+=
+   myconf+=(
--disable-gnutls
--disable-openssl
-   
+   )
fi
 
if tc-is-static-only; then
-   myconf+=
+   myconf+=(
--disable-shared
-   
+   )
fi
 
if use systemd; then
-   myconf+=
+   myconf+=(
--with-systemdsystemunitdir=$(systemd_get_unitdir)
-   
+   )
fi
 
econf \
@@ -187,24 +197,24 @@
--with-docdir=${EPREFIX}/usr/share/cups/html \
--with-languages=${LINGUAS} \
--with-system-groups=lpadmin \
-   $(use_enable acl) \
+   $(multilib_native_use_enable acl) \
$(use_enable zeroconf avahi) \
$(use_enable dbus) \
$(use_enable debug) \
$(use_enable debug debug-guards) \
-   $(use_enable kerberos gssapi) \
-   $(use_enable pam) \
+   $(multilib_native_use_enable kerberos gssapi) \
+   

[gentoo-commits] gentoo-x86 commit in dev-python/mockldap: mockldap-0.2.0.ebuild ChangeLog

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

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

Revision  ChangesPath
1.9  dev-python/mockldap/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/mockldap/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   12 Apr 2014 08:35:10 -  1.8
+++ ChangeLog   14 May 2014 08:54:51 -  1.9
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/mockldap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mockldap/ChangeLog,v 1.8 
2014/04/12 08:35:10 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mockldap/ChangeLog,v 1.9 
2014/05/14 08:54:51 idella4 Exp $
+
+*mockldap-0.2.0 (14 May 2014)
+
+  14 May 2014; Ian Delaney idel...@gentoo.org +mockldap-0.2.0.ebuild:
+  bump; drop py2.6 support
 
 *mockldap-0.1.7 (12 Apr 2014)
 



1.1  dev-python/mockldap/mockldap-0.2.0.ebuild

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

Index: mockldap-0.2.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/mockldap/mockldap-0.2.0.ebuild,v 
1.1 2014/05/14 08:54:51 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=A simple mock implementation of python-ldap
HOMEPAGE=https://bitbucket.org/psagers/mockldap/ 
https://pypi.python.org/pypi/mockldap;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

RDEPEND=~dev-python/funcparserlib-0.3.6[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/python-ldap[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/passlib[${PYTHON_USEDEP}] )

# Disable un-needed d'loading during doc build
PATCHES=( ${FILESDIR}/mapping.patch )

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
}

pkg_postinst() {
if ! has_version dev-python/passlib; then
elog Please install dev-python/passlib for hashed password 
support.
fi
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/rinku: ChangeLog rinku-1.7.3.ebuild

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

  Modified: ChangeLog rinku-1.7.3.ebuild
  Log:
  Fix building with USE=doc.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.2  dev-ruby/rinku/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rinku/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   7 May 2014 22:10:12 -   1.1
+++ ChangeLog   14 May 2014 09:09:30 -  1.2
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rinku
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rinku/ChangeLog,v 1.1 2014/05/07 
22:10:12 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rinku/ChangeLog,v 1.2 2014/05/14 
09:09:30 graaff Exp $
+
+  14 May 2014; Hans de Graaff gra...@gentoo.org rinku-1.7.3.ebuild:
+  Fix building with USE=doc.
 
 *rinku-1.7.3 (07 May 2014)
 



1.2  dev-ruby/rinku/rinku-1.7.3.ebuild

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

Index: rinku-1.7.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rinku/rinku-1.7.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rinku-1.7.3.ebuild  7 May 2014 22:10:12 -   1.1
+++ rinku-1.7.3.ebuild  14 May 2014 09:09:31 -  1.2
@@ -1,11 +1,11 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rinku/rinku-1.7.3.ebuild,v 1.1 
2014/05/07 22:10:12 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rinku/rinku-1.7.3.ebuild,v 1.2 
2014/05/14 09:09:31 graaff Exp $
 
 EAPI=5
 USE_RUBY=ruby19 ruby20 ruby21
 
-RUBY_FAKEGEM_TASK_DOC=rdoc
+RUBY_FAKEGEM_RECIPE_DOC=rdoc
 RUBY_FAKEGEM_EXTRADOC=README.markdown
 
 inherit multilib ruby-fakegem






[gentoo-commits] gentoo-x86 commit in dev-db/mongodb/files: mongos.initd-r2 mongodb.initd-r2 mongodb-2.6.1-fix-scons.patch mongos.conf-r2 mongodb.confd-r2 mongos.confd-r2 mongodb.conf-r2 mms-agent.ini

2014-05-14 Thread Alexys Jacob (ultrabug)
ultrabug14/05/14 09:16:49

  Added:mongos.initd-r2 mongodb.initd-r2
mongodb-2.6.1-fix-scons.patch mongos.conf-r2
mongodb.confd-r2 mongos.confd-r2 mongodb.conf-r2
mms-agent.initd-r2
  Log:
  version 2.6.x bump fix #508190
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B658FA13)

Revision  ChangesPath
1.1  dev-db/mongodb/files/mongos.initd-r2

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongos.initd-r2?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongos.initd-r2?rev=1.1content-type=text/plain

Index: mongos.initd-r2
===
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/files/mongos.initd-r2,v 1.1 
2014/05/14 09:16:49 ultrabug Exp $

config_file=${config_file:-/etc/${SVCNAME}.conf}
run_dir=${run_dir:-/run/mongodb}

command=/usr/bin/mongos
command_args=--config ${config_file}
command_background=true
pidfile=${run_dir}/${SVCNAME}.pid
user=${user:-mongodb}
group=${group:-mongodb}

depend() {
use net
}

start_pre() {
checkpath -d -m 0750 -o ${user}:${group} ${run_dir}
if [ ! -f ${config_file} ]; then
eerror Missing configuration file ${config_file}
return 1
fi
}



1.1  dev-db/mongodb/files/mongodb.initd-r2

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb.initd-r2?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb.initd-r2?rev=1.1content-type=text/plain

Index: mongodb.initd-r2
===
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/files/mongodb.initd-r2,v 1.1 
2014/05/14 09:16:49 ultrabug Exp $

config_file=${config_file:-/etc/${SVCNAME}.conf}
run_dir=${run_dir:-/run/mongodb}

command=/usr/bin/mongod
command_args=--config ${config_file}
command_background=true
pidfile=${run_dir}/${SVCNAME}.pid
user=${user:-mongodb}
group=${group:-mongodb}

depend() {
use net
}

start_pre() {
checkpath -d -m 0750 -o ${user}:${group} ${run_dir}
if [ ! -f ${config_file} ]; then
eerror Missing configuration file ${config_file}
return 1
fi
}



1.1  dev-db/mongodb/files/mongodb-2.6.1-fix-scons.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb-2.6.1-fix-scons.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb-2.6.1-fix-scons.patch?rev=1.1content-type=text/plain

Index: mongodb-2.6.1-fix-scons.patch
===
diff --git SConstruct SConstruct
index 3886d1b..81c59a9 100644
--- SConstruct
+++ SConstruct
@@ -811,19 +811,17 @@ if nix:
 # -Winvalid-pch Warn if a precompiled header (see Precompiled Headers) is 
found in the search path but can't be used.
 env.Append( CCFLAGS=[-fPIC,
  -fno-strict-aliasing,
- -ggdb,
  -pthread,
  -Wall,
  -Wsign-compare,
  -Wno-unknown-pragmas,
  -Winvalid-pch] )
 # env.Append(  -Wconversion ) TODO: this doesn't really work yet
-if linux or darwin:
-env.Append( CCFLAGS=[-Werror, -pipe] )
 
 env.Append( CPPDEFINES=[_FILE_OFFSET_BITS=64] )
-env.Append( CXXFLAGS=[-Wnon-virtual-dtor, -Woverloaded-virtual] )
 env.Append( LINKFLAGS=[-fPIC, -pthread] )
+env.Append( CXXFLAGS=os.environ['CXXFLAGS'])
+env.Append( LINKFLAGS=os.environ['LDFLAGS'] )
 
 # SERVER-9761: Ensure early detection of missing symbols in dependent 
libraries at program
 # startup.
@@ -840,7 +838,7 @@ if nix:
 if not darwin:
 env.Append( LINKFLAGS=[-rdynamic] )
 
-env.Append( LIBS=[] )
+env.Append( LIBS=['pcre', 'pcrecpp', 'snappy', 'yaml-cpp'] )
 
 #make scons colorgcc friendly
 for key in ('HOME', 'TERM'):



1.1  dev-db/mongodb/files/mongos.conf-r2

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongos.conf-r2?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongos.conf-r2?rev=1.1content-type=text/plain

Index: mongos.conf-r2
===
# !! IMPORTANT !!
#
# This file uses the YAML format as described in the documentation:
#   http://docs.mongodb.org/manual/reference/configuration-options/

systemLog:

[gentoo-commits] gentoo-x86 commit in dev-db/mongodb: mongodb-2.6.1.ebuild ChangeLog

2014-05-14 Thread Alexys Jacob (ultrabug)
ultrabug14/05/14 09:16:49

  Modified: ChangeLog
  Added:mongodb-2.6.1.ebuild
  Log:
  version 2.6.x bump fix #508190
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B658FA13)

Revision  ChangesPath
1.91 dev-db/mongodb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mongodb/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog   9 Apr 2014 15:42:11 -   1.90
+++ ChangeLog   14 May 2014 09:16:49 -  1.91
@@ -1,6 +1,15 @@
 # ChangeLog for dev-db/mongodb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/ChangeLog,v 1.90 2014/04/09 
15:42:11 ultrabug Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/ChangeLog,v 1.91 2014/05/14 
09:16:49 ultrabug Exp $
+
+*mongodb-2.6.1 (14 May 2014)
+
+  14 May 2014; Ultrabug ultra...@gentoo.org +mongodb-2.6.1.ebuild,
+  +files/mongodb-2.6.1-fix-scons.patch, +files/mms-agent.initd-r2,
+  +files/mongodb.conf-r2, +files/mongodb.confd-r2, +files/mongodb.initd-r2,
+  +files/mongos.conf-r2, +files/mongos.confd-r2, +files/mongos.initd-r2:
+  version 2.6.x bump fix #508190 thx to Mike Limansky, Johan Bergstrom and
+  Jason A. Donenfeld
 
   09 Apr 2014; Ultrabug ultra...@gentoo.org mongodb-2.4.10-r1.ebuild:
   quick typo on elog



1.1  dev-db/mongodb/mongodb-2.6.1.ebuild

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

Index: mongodb-2.6.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/mongodb-2.6.1.ebuild,v 1.1 
2014/05/14 09:16:49 ultrabug Exp $

EAPI=5
SCONS_MIN_VERSION=1.2.0
CHECKREQS_DISK_BUILD=2400M
CHECKREQS_DISK_USR=512M
CHECKREQS_MEMORY=1024M

inherit eutils flag-o-matic multilib scons-utils systemd user versionator 
check-reqs

MY_P=${PN}-src-r${PV/_rc/-rc}

DESCRIPTION=A high-performance, open source, schema-free document-oriented 
database
HOMEPAGE=http://www.mongodb.org;
SRC_URI=http://downloads.mongodb.org/src/${MY_P}.tar.gz
mms-agent? ( 
http://dev.gentoo.org/~ultrabug/20140409-mms-monitoring-agent.zip )

LICENSE=AGPL-3 Apache-2.0
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=kerberos mms-agent ssl static-libs

PDEPEND=mms-agent? ( dev-python/pymongo app-arch/unzip )
RDEPEND=
app-arch/snappy
=dev-cpp/yaml-cpp-0.5.1
=dev-libs/boost-1.50[threads(+)]
=dev-libs/libpcre-8.30[cxx]
dev-libs/snowball-stemmer
dev-util/google-perftools[-minimal]
net-libs/libpcap
ssl? ( =dev-libs/openssl-1.0.1g )
DEPEND=${RDEPEND}
sys-libs/ncurses
sys-libs/readline
kerberos? ( dev-libs/cyrus-sasl[kerberos] )

S=${WORKDIR}/${MY_P}

pkg_setup() {
enewgroup mongodb
enewuser mongodb -1 -1 /var/lib/${PN} mongodb

scons_opts=--variant-dir=build --cc=$(tc-getCC) --cxx=$(tc-getCXX)
scons_opts+= --use-system-boost
scons_opts+= --use-system-pcre
scons_opts+= --use-system-snappy
scons_opts+= --use-system-stemmer
scons_opts+= --use-system-tcmalloc
scons_opts+= --use-system-yaml
scons_opts+= --usev8

if use prefix; then
scons_opts+= --cpppath=${EPREFIX}/usr/include
scons_opts+= --libpath=${EPREFIX}/usr/$(get_libdir)
fi

if use kerberos; then
scons_opts+= --use-sasl-client
fi

if use ssl; then
scons_opts+= --ssl
fi
}

src_prepare() {
epatch ${FILESDIR}/${PN}-2.6.1-fix-scons.patch

# fix yaml-cpp detection
sed -i -e s/\[\yaml\\]/\[\yaml-cpp\\]/ SConstruct || die

# bug #462606
sed -i -e s@\$INSTALL_DIR/lib@\$INSTALL_DIR/$(get_libdir)@g 
src/SConscript.client || die

# bug #482576
sed -i -e /-Werror/d src/third_party/v8/SConscript || die
}

src_compile() {
escons ${scons_opts} all
}

src_install() {
escons ${scons_opts} --full --nostrip install --prefix=${ED}/usr

use static-libs || find ${ED}/usr/ -type f -name *.a -delete

for x in /var/{lib,log}/${PN}; do
keepdir ${x}
fowners mongodb:mongodb ${x}
done

doman 

[gentoo-commits] dev/ultrabug:master commit in: dev-db/mongodb/

2014-05-14 Thread Alexys Jacob
commit: d7ee43686723735d07544e1b520142e799ed7b69
Author: Ultrabug ultrabug AT gentoo DOT org
AuthorDate: Wed May 14 09:19:40 2014 +
Commit: Alexys Jacob ultrabug AT gentoo DOT org
CommitDate: Wed May 14 09:19:40 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/ultrabug.git;a=commit;h=d7ee4368

bump manifest

---
 dev-db/mongodb/Manifest | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/dev-db/mongodb/Manifest b/dev-db/mongodb/Manifest
index f6f2ac8..c5a53ce 100644
--- a/dev-db/mongodb/Manifest
+++ b/dev-db/mongodb/Manifest
@@ -1,27 +1,16 @@
 AUX mms-agent.confd 205 SHA256 
29e678e722268311fb59f5af57ac3fbadb9e930cd3cb1ce9e4dc33d30e021e40 SHA512 
e81e68ebad2d409a9e631de0aaf264eab99b3faa5c313a7c96a6672a6c51d3243100f5ef599bf2a347b4f9e1b1a6ebf95fa890cb614d9745c58430fadd8ee13a
 WHIRLPOOL 
24d98082e138dbcee0a276c4874d88a23f7f53d1bf0f6a7f2e979c005413f14809269622ecd013913221a267eb1fc806130d69915ce5cd38a646b498912ca729
 AUX mms-agent.initd 1277 SHA256 
fda9a9eb7e2abceef572ffbad0987b74670b6b5e0c50d93f58ef8141825a2cea SHA512 
32bdcadf7395f371809b253934f8c3dd0074e6aafccfab091f8bf699524eb32ffdc787b479e08056e2fac933f1627a5f1cc03842a2f8b939f8b68bb2e6da71c2
 WHIRLPOOL 
a9f78afe5286e2762c27ab0a272e4e5719e070cbd9ab5f551ef322346bb3ff46d0b49c76906fe63f8c78c9bf6a11d720d2908044d5666e5dd98afdef55fca76e
-AUX mms-agent.initd-r2 608 SHA256 
6c44dcd08fbf15a84673f6475ee0996d9cf0afea3a5ff9c3f82dee1e7990b11f SHA512 
e0e780c4ad8097f912cc88d645af8fab08b9cd6562963c42dfddaa99dc4956959ae249dcc79c2f9998d180523c058de4fe8ced62f1b9d25bcab96d81cdda898a
 WHIRLPOOL 
5a36fec62ea36bc16114f093a047a7225df7e53b47ba830b0944473981d9b12f6c847ec9826b1598ced3d963ffa9685852d9e6aece14e753021fd60b67cd21c1
 AUX mongodb-2.2-r1-fix-boost.patch 870 SHA256 
885991e16aecc66d88b40418531a66449ab8e434ca677acc7814e7485231e841 SHA512 
902c11e15e26be6c64053b4f3c0d0fda1670373fa3a5805063b49957843173b3663f6271ae541bb07aedf884a9861099bb1f452761f7baeaa819f14eb0755336
 WHIRLPOOL 
b5df66a5e90202db903989c66b7423103ca1a666a477175c1746c94d5cf250ac4ceb2d237737ee2bfc158a8f9c611916e91d5133ba94e544abbaaec8b0d0361a
 AUX mongodb-2.4.8-fix-grsec.patch 824 SHA256 
65a50faa697f4e76eaf87b459121b8ba7c04d028a5524939296db2ca701cf2fb SHA512 
7dac727a63dab7713a85f7d483f68a6fe9ed7c5ef06324a899a558d118857e9937c5e48e1fe2ae2063d1442c17b68b60b6c14934184a2badf4ecc9b3f68731bd
 WHIRLPOOL 
feef78707135bd128c21a5c344bbf25eef1ef796b236461656baa6299a0335759fff42103c36aebca1afcb23697f4ff42df382ceb2d05d0f90e913cfdac0e597
 AUX mongodb-2.5.4-fix-scons.patch 1355 SHA256 
02b90cf2a6f35df5021d8985b1bddd8c0f65d4764f59469c3c51e46864bac02f SHA512 
f2f0e1439bab449951696f6d49f32e89dba0f848391475354d0b4d34e325a88604c8e87d2fe85701b5dcb7958a22714df283e79ba61bbd0b93f5b20d0914923c
 WHIRLPOOL 
7fb2929f03744819395c00ef2eefc3fcb91fa00dc436348a69dbca55d2ac1c18c9d76c7d29dfb47aff751088d9798061f588bb4b22a94353229d39d65f6090af
-AUX mongodb-2.6.1-fix-scons.patch 1386 SHA256 
18c454168e6c4feac4b67a3ff18e811d486284cb014ba0ededc039433c1caf28 SHA512 
a67a1b2f75783ac3520f3ea5765e7a57669c23969a8242f481594e3a28e400a3656068e65ebaac0765b66433eb56c30280762fe3f6fe49b9b255c3b80dd24a29
 WHIRLPOOL 
7828f0314e6fa8e44cdfdbe90255e94158aa3136e71a3afff001c2308b4ef31bc8f0001083d68f00a767baff69c8bb0034f65a50e970deda45acd540fe5de772
 AUX mongodb.conf 246 SHA256 
8010ce728d657524cd76b5afda7ffbc1cc389642336b12b89cec5df2b09fc0e4 SHA512 
05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c
 WHIRLPOOL 
17a27daaa7892140d741256cf9acaf2f2909a545f350c936183aeb7b6671c25a3dc11f191b01ed008195965b8cc39b49f1a3a8c69cfd90c4ca57b9fa2732beff
-AUX mongodb.conf-r2 696 SHA256 
8c1ecfd94e0a6f3acebd5d3ac7a75a19818772b86dcd4c066c33d9d790c420b9 SHA512 
973b0ad866498c2696ee63080b61aeca2a917065a2b3bd0f470b2a70dee4630c8a80fe8d99a4bcc166f14d944c7de1debec24df8c97fb7f9b5fb0d781985ca58
 WHIRLPOOL 
290631e082228076a366356c142efb91d7d1e1c5ae7ef937cac3d9c20930fdabfc3b1bb42a2e0e80f2b85daac6c399a6f7d0a0a1eafe45c54795bb2bfb22291f
 AUX mongodb.confd 361 SHA256 
a4ca29c577428c02cd0b0a8b46756df5f53a05519c9d13c270533cf99b9b819d SHA512 
9bcd870742c31bf25f34188ddc3c414de1103e9860dea9f54eee276b89bc2cf1226abab1749c5cda6a6fb0880e541373754e5e83d63cc7189d4b9c274fd555c3
 WHIRLPOOL 
35d785763d0cb1e21516a3fa15332d6c93d35e6faea02b60f81c389878dd89fe026504c6cfce5e9abfc8353f74b0e959a7501373d2a389f269c6952d33e8d2e8
-AUX mongodb.confd-r2 549 SHA256 
6275df7b1bbee218545331d68da3814d0e0fa89d3b30e21370bbeb776dd19e0a SHA512 
75f11e8350e98b90eccafd577d794e4b05f36ede8d95e7839e9fa1eb77ea7bd9cdd2fdd07719abb78a714cd7d72109c177d265d6417ef198a4217453c0a4db68
 WHIRLPOOL 
974eeb5dd58d52670121b2e8e687250cae4d5c49ec020dc30746bf39356762d63f41371526744f2b9fdd657134e7570d7501a3ce5995e830e039cc9eeb8a427e
 AUX mongodb.initd-r1 1215 SHA256 
d56c5e301a7c35bcc60fa60859eee56342be7e4911edd19e519804bcf08a5ef0 SHA512 

[gentoo-commits] gentoo-x86 commit in sci-chemistry/dssp: ChangeLog dssp-2.2.1.ebuild

2014-05-14 Thread Justin Lecher (jlec)
jlec14/05/14 09:28:33

  Modified: ChangeLog
  Added:dssp-2.2.1.ebuild
  Log:
  sci-chemistry/dssp: Version Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.12 sci-chemistry/dssp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/dssp/ChangeLog?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/dssp/ChangeLog?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/dssp/ChangeLog?r1=1.11r2=1.12

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/dssp/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   9 Jul 2013 08:34:28 -   1.11
+++ ChangeLog   14 May 2014 09:28:33 -  1.12
@@ -1,6 +1,11 @@
 # ChangeLog for sci-chemistry/dssp
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/dssp/ChangeLog,v 1.11 
2013/07/09 08:34:28 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/dssp/ChangeLog,v 1.12 
2014/05/14 09:28:33 jlec Exp $
+
+*dssp-2.2.1 (14 May 2014)
+
+  14 May 2014; Justin Lecher j...@gentoo.org +dssp-2.2.1.ebuild:
+  Version Bump
 
   09 Jul 2013; Justin Lecher j...@gentoo.org dssp-2.1.0.ebuild:
   Add subslot for boost



1.1  sci-chemistry/dssp/dssp-2.2.1.ebuild

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

Index: dssp-2.2.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/dssp/dssp-2.2.1.ebuild,v 1.1 
2014/05/14 09:28:33 jlec Exp $

EAPI=5

inherit eutils multilib toolchain-funcs

DESCRIPTION=The protein secondary structure standard
HOMEPAGE=http://swift.cmbi.ru.nl/gv/dssp/;
SRC_URI=ftp://ftp.cmbi.ru.nl/pub/molbio/software/dssp-2/${P}.tgz;

LICENSE=Boost-1.0
SLOT=0
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
IUSE=

RDEPEND=dev-libs/boost:=
DEPEND=${RDEPEND}

src_prepare() {
tc-export CXX

cat  make.config - EOF
BOOST_LIB_SUFFIX = -mt
BOOST_LIB_DIR = ${EPREFIX}/usr/$(get_libdir)
BOOST_INC_DIR = ${EPREFIX}/usr/include
EOF

epatch \
${FILESDIR}/${PN}-2.1.0-gentoo.patch
}

src_install() {
dobin mkdssp
dosym mkdssp /usr/bin/dssp
doman doc/mkdssp.1
dodoc README.txt changelog

cat  ${T}/30-${PN} - EOF
DSSP=${EPRFIX}/usr/bin/${PN}
EOF
doenvd ${T}/30-${PN}
}






[gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: adobe-flash-11.2.202.359.ebuild ChangeLog

2014-05-14 Thread Mikle Kolyada (zlogene)
zlogene 14/05/14 09:34:51

  Modified: adobe-flash-11.2.202.359.ebuild ChangeLog
  Log:
  amd64/x86 stable wrt bug #510278
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  www-plugins/adobe-flash/adobe-flash-11.2.202.359.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.359.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.359.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.359.ebuild?r1=1.1r2=1.2

Index: adobe-flash-11.2.202.359.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.359.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- adobe-flash-11.2.202.359.ebuild 14 May 2014 05:01:46 -  1.1
+++ adobe-flash-11.2.202.359.ebuild 14 May 2014 09:34:51 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.359.ebuild,v
 1.1 2014/05/14 05:01:46 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.359.ebuild,v
 1.2 2014/05/14 09:34:51 zlogene Exp $
 
 EAPI=5
 inherit nsplugins toolchain-funcs versionator multilib multilib-minimal
@@ -29,7 +29,7 @@
 
 SLOT=0
 
-KEYWORDS=-* ~amd64 ~x86
+KEYWORDS=-* amd64 x86
 LICENSE=AdobeFlash-11.x
 RESTRICT=strip mirror
 



1.250www-plugins/adobe-flash/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.250view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.250content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?r1=1.249r2=1.250

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -r1.249 -r1.250
--- ChangeLog   14 May 2014 05:01:46 -  1.249
+++ ChangeLog   14 May 2014 09:34:51 -  1.250
@@ -1,6 +1,10 @@
 # ChangeLog for www-plugins/adobe-flash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.249 
2014/05/14 05:01:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.250 
2014/05/14 09:34:51 zlogene Exp $
+
+  14 May 2014; Mikle Kolyada zlog...@gentoo.org
+  adobe-flash-11.2.202.359.ebuild:
+  amd64/x86 stable wrt bug #510278
 
 *adobe-flash-11.2.202.359 (14 May 2014)
 






[gentoo-commits] gentoo-x86 commit in sci-biology/update-blastdb: - New directory

2014-05-14 Thread Justin Lecher (jlec)
jlec14/05/14 10:49:00

  Log:
  Directory /var/cvsroot/gentoo-x86/sci-biology/update-blastdb added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.3.ebuild ChangeLog

2014-05-14 Thread Ian Delaney (idella4)
idella4 14/05/14 11:21:44

  Modified: ChangeLog
  Added:nose-1.3.3.ebuild
  Log:
  bump; drop py2.6
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.127dev-python/nose/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog   22 Apr 2014 08:30:33 -  1.126
+++ ChangeLog   14 May 2014 11:21:44 -  1.127
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/nose
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.126 
2014/04/22 08:30:33 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.127 
2014/05/14 11:21:44 idella4 Exp $
+
+*nose-1.3.3 (14 May 2014)
+
+  14 May 2014; Ian Delaney idel...@gentoo.org +nose-1.3.3.ebuild:
+  bump; drop py2.6
 
 *nose-1.3.1-r1 (22 Apr 2014)
 



1.1  dev-python/nose/nose-1.3.3.ebuild

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

Index: nose-1.3.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.3.ebuild,v 1.1 
2014/05/14 11:21:44 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
inherit distutils-r1 eutils

DESCRIPTION=A unittest extension offering automatic test suite discovery and 
easy test authoring
HOMEPAGE=http://pypi.python.org/pypi/nose http://readthedocs.org/docs/nose/ 
https://bitbucket.org/jpellerin/nose;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos
IUSE=doc examples test

RDEPEND=dev-python/coverage[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}
doc? ( =dev-python/sphinx-0.6 )
test? ( dev-python/twisted-core
dev-python/unittest2 )

DOCS=( AUTHORS )
#PATCHES=(
#   ${FILESDIR}/${PN}-1.2.1-skiptest.patch
#   ${FILESDIR}/${PN}-1.3.1-version.patch )

python_prepare_all() {
# Tests need to be converted, and they don't respect BUILD_DIR.
use test  DISTUTILS_IN_SOURCE_BUILD=1

# Disable tests requiring network connection.
sed \
-e s/test_resolve/_/g \
-e s/test_raises_bad_return/_/g \
-e s/test_raises_twisted_error/_/g \
-i unit_tests/test_twisted.py || die sed failed
# Disable versioning of nosetests script to avoid collision with
# versioning performed by the eclass.
sed -e /'nosetests%s = nose:run_exit' % py_vers_tag,/d \
-i setup.py || die sed2 failed

distutils-r1_python_prepare_all
}

python_compile() {
local add_targets=()

if use test; then
add_targets+=( egg_info )
python_is_python3  add_targets+=( build_tests )
fi

distutils-r1_python_compile ${add_targets[@]}
}

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

src_test() {
# nosetests use heavy multiprocessing during the tests.
# this shall make them less likely to kill your system or timeout.
local DISTUTILS_NO_PARALLEL_BUILD=1

distutils-r1_src_test
}

python_test() {
${PYTHON} selftest.py || die Tests fail with ${EPYTHON}
}

python_install() {
distutils-r1_python_install --install-data ${EPREFIX}/usr/share
}

python_install_all() {
local EXAMPLES=( examples/. )
distutils-r1_python_install_all

if use doc; then
dohtml -r -A txt doc/.build/html/.
fi
}






[gentoo-commits] gentoo-x86 commit in dev-python/pyfeyn/files: pyfeyn-0.3.4.patch pyfeyn-0.3.3.patch

2014-05-14 Thread Andrey Grozin (grozin)
grozin  14/05/14 11:25:57

  Added:pyfeyn-0.3.4.patch
  Removed:  pyfeyn-0.3.3.patch
  Log:
  An upstream bugfix; cleaning old
  
  (Portage version: 2.2.10/cvs/Linux i686, signed Manifest commit with key 
0x3AFFCE974D34BD8C!)

Revision  ChangesPath
1.1  dev-python/pyfeyn/files/pyfeyn-0.3.4.patch

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

Index: pyfeyn-0.3.4.patch
===
diff -r -U2 pyfeyn-0.3.4.orig/pyfeyn/lines.py pyfeyn-0.3.4/pyfeyn/lines.py
--- pyfeyn-0.3.4.orig/pyfeyn/lines.py   2014-03-06 23:12:24.0 +0700
+++ pyfeyn-0.3.4/pyfeyn/lines.py2014-05-14 21:45:49.356935407 +0700
@@ -117,8 +117,12 @@
 Make this line a straight line between start and end.
 self.arcthrupoint = None
+return self
 
 
 def bend(self, amount):
 Bend the line to the right by a given distance.
+if amount==0:
+self.arcthrupoint = None
+return self
 middle = self.p1.midpoint(self.p2)
 nx = (middle.y() - self.p1.y()) / abs(self.p1.distance(middle))






[gentoo-commits] gentoo-x86 commit in dev-python/pyfeyn: ChangeLog pyfeyn-0.3.4-r1.ebuild pyfeyn-0.3.3.ebuild pyfeyn-0.3.4.ebuild

2014-05-14 Thread Andrey Grozin (grozin)
grozin  14/05/14 11:25:57

  Modified: ChangeLog
  Added:pyfeyn-0.3.4-r1.ebuild
  Removed:  pyfeyn-0.3.3.ebuild pyfeyn-0.3.4.ebuild
  Log:
  An upstream bugfix; cleaning old
  
  (Portage version: 2.2.10/cvs/Linux i686, signed Manifest commit with key 
0x3AFFCE974D34BD8C!)

Revision  ChangesPath
1.4  dev-python/pyfeyn/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyfeyn/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   9 Mar 2014 14:19:58 -   1.3
+++ ChangeLog   14 May 2014 11:25:57 -  1.4
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/pyfeyn
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfeyn/ChangeLog,v 1.3 
2014/03/09 14:19:58 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfeyn/ChangeLog,v 1.4 
2014/05/14 11:25:57 grozin Exp $
+
+*pyfeyn-0.3.4-r1 (14 May 2014)
+
+  14 May 2014; Andrey Grozin gro...@gentoo.org -pyfeyn-0.3.3.ebuild,
+  -pyfeyn-0.3.4.ebuild, +pyfeyn-0.3.4-r1.ebuild, -files/pyfeyn-0.3.3.patch,
+  +files/pyfeyn-0.3.4.patch:
+  An upstream bugfix; cleaning old
 
 *pyfeyn-0.3.4 (09 Mar 2014)
 



1.1  dev-python/pyfeyn/pyfeyn-0.3.4-r1.ebuild

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

Index: pyfeyn-0.3.4-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfeyn/pyfeyn-0.3.4-r1.ebuild,v 
1.1 2014/05/14 11:25:57 grozin Exp $

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

inherit distutils-r1

DESCRIPTION=Python package for drawing Feynman diagrams
HOMEPAGE=http://pyfeyn.hepforge.org/ https://pypi.python.org/pypi/pyfeyn/;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

DEPEND=
RDEPEND=dev-python/pyx[${PYTHON_USEDEP}]
latex? ( dev-texlive/texlive-science )

PATCHES=( ${FILESDIR}/${P}.patch )






[gentoo-commits] gentoo-x86 commit in sci-biology/update-blastdb: metadata.xml ChangeLog update-blastdb-12.0.0.ebuild Manifest

2014-05-14 Thread Justin Lecher (jlec)
jlec14/05/14 12:03:24

  Added:metadata.xml ChangeLog update-blastdb-12.0.0.ebuild
Manifest
  Log:
  sci-biology/update-blastdb: New addition, written by me
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.1  sci-biology/update-blastdb/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/update-blastdb/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/update-blastdb/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
  herdsci-biology/herd
/pkgmetadata



1.1  sci-biology/update-blastdb/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/update-blastdb/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/update-blastdb/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for sci-biology/update-blastdb
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/update-blastdb/ChangeLog,v 1.1 
2014/05/14 12:03:24 jlec Exp $

*update-blastdb-12.0.0 (14 May 2014)

  14 May 2014; Justin Lecher j...@gentoo.org +update-blastdb-12.0.0.ebuild,
  +metadata.xml:
  New addition, written by me




1.1  sci-biology/update-blastdb/update-blastdb-12.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/update-blastdb/update-blastdb-12.0.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/update-blastdb/update-blastdb-12.0.0.ebuild?rev=1.1content-type=text/plain

Index: update-blastdb-12.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sci-biology/update-blastdb/update-blastdb-12.0.0.ebuild,v
 1.1 2014/05/14 12:03:24 jlec Exp $

EAPI=5

inherit versionator

MY_PV=$(replace_all_version_separators _)

DESCRIPTION=update_blastdb.pl for local blst db maintainance
HOMEPAGE=http://www.ncbi.nlm.nih.gov/books/bv.fcgi?rid=toolkit;
SRC_URI=ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools++/ARCHIVE/${MY_PV}/ncbi_cxx--${MY_PV}.tar.gz;

SLOT=0
LICENSE=public-domain
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
IUSE=

RDEPEND=
dev-lang/perl
!sci-biology/ncbi-tools++
DEPEND=

S=${WORKDIR}

src_install() {
dobin ncbi_cxx--${MY_PV}/src/app/blast/update_blastdb.pl
}



1.1  sci-biology/update-blastdb/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/update-blastdb/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/update-blastdb/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST ncbi_cxx--12_0_0.tar.gz 37925914 SHA256 
432d5c72cc02dad263f1b2f1ab875e04e60b1ded0c5537ed54e8095b50554d20 SHA512 
1a79f2d95960efde6263289814102499460ec235dad36337dd398d668665e44015e06e40fd0e66a8fb16f526d326949adcaadcb667debeba5d8570b1a92e30ed
 WHIRLPOOL 
16f0b6de7e0d898bca7a2a46a64a4aa0795f99673d4715a21cca2dc5aa728143b56f02ad9c108543195a8f86f426d2be9428dcf52f5495083a63961ad867
EBUILD update-blastdb-12.0.0.ebuild 666 SHA256 
ad8df12016f107ae359f9b1fe5855d03cecea4991655a8bde810f32352bd29f6 SHA512 
b25a31ea00f94b8ddfb85a5357f30c8810c571c0d1aaac56c124fa381aeee997f6b4f271ca75f05dc02b0e8443f68504e67c0b53500955cd81b93d621f24f116
 WHIRLPOOL 
57be8c35d6798f6d59b55d87298beb766094f6e76065ef59415a855f7ac9d39586a36c26f643e2c1f1159dc917128f8af9655bf3847232d93c3c357f0cbe25a5
MISC ChangeLog 291 SHA256 
6dbb4e991a6eaf1e21cb6819500718dfefc3fcdcc12df7f60017593266e4fdc1 SHA512 
2fa7615d02a1c6980ecc86385da5820bef535c1f1d1eb31cba9cbf8660e823679f678fa18842897ac3062d2e1b850172ccf00ceb5e3a0813196a3d3ea598b17f
 WHIRLPOOL 
b86ceea6f82661a384b78f9d2ac1e5fcfeeb066e193b1fd73749bd414451c3c1b4610b21996d0e14fa050ac244da059021ae3aae9c2ecbf436a0c2cf87df152f
MISC metadata.xml 166 SHA256 
29b228f683c71345323d841414e410c929a320f34536eb30910498728260c8ac SHA512 
51c5345bb1c4466b73e2feac8895c64fc119365e7f2c156702f4c93664d3aba028b3da9daaabf24f61a88220345fca7806771a252e8ae906cac5dec97862c7e0
 WHIRLPOOL 
211bf955d94fc1d93b12388a2c597a8d440fb5d78f84d59b2549569537098c3525b1fbab707441d62fabe20edcac2fd9ebe09c5d9870f1c9558d7ee90d5db5b3






[gentoo-commits] gentoo-x86 commit in sci-biology/ncbi-tools++: ChangeLog ncbi-tools++-0.2010.06.15-r1.ebuild

2014-05-14 Thread Justin Lecher (jlec)
jlec14/05/14 12:06:42

  Modified: ChangeLog ncbi-tools++-0.2010.06.15-r1.ebuild
  Log:
  sci-biology/ncbi-tools++: Block sci-biology/update-blastdb
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.29 sci-biology/ncbi-tools++/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ncbi-tools++/ChangeLog?rev=1.29view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ncbi-tools++/ChangeLog?rev=1.29content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ncbi-tools++/ChangeLog?r1=1.28r2=1.29

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-biology/ncbi-tools++/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   11 Mar 2013 16:16:48 -  1.28
+++ ChangeLog   14 May 2014 12:06:42 -  1.29
@@ -1,6 +1,10 @@
 # ChangeLog for sci-biology/ncbi-tools++
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/ncbi-tools++/ChangeLog,v 1.28 
2013/03/11 16:16:48 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/ncbi-tools++/ChangeLog,v 1.29 
2014/05/14 12:06:42 jlec Exp $
+
+  14 May 2014; Justin Lecher j...@gentoo.org
+  ncbi-tools++-0.2010.06.15-r1.ebuild:
+  Block sci-biology/update-blastdb
 
   11 Mar 2013; Justin Lecher j...@gentoo.org metadata.xml:
   Drop Andrey as maintainer so that bugs get assigned to sci-biology directly



1.4  
sci-biology/ncbi-tools++/ncbi-tools++-0.2010.06.15-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ncbi-tools++/ncbi-tools++-0.2010.06.15-r1.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ncbi-tools++/ncbi-tools++-0.2010.06.15-r1.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/ncbi-tools++/ncbi-tools++-0.2010.06.15-r1.ebuild?r1=1.3r2=1.4

Index: ncbi-tools++-0.2010.06.15-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sci-biology/ncbi-tools++/ncbi-tools++-0.2010.06.15-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ncbi-tools++-0.2010.06.15-r1.ebuild 5 Nov 2012 11:22:49 -   1.3
+++ ncbi-tools++-0.2010.06.15-r1.ebuild 14 May 2014 12:06:42 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sci-biology/ncbi-tools++/ncbi-tools++-0.2010.06.15-r1.ebuild,v
 1.3 2012/11/05 11:22:49 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sci-biology/ncbi-tools++/ncbi-tools++-0.2010.06.15-r1.ebuild,v
 1.4 2014/05/14 12:06:42 jlec Exp $
 
 EAPI=3
 
@@ -22,6 +22,7 @@
 KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
 
 DEPEND=
+   !sci-biology/update-blastdb
sqlite? ( dev-db/sqlite:3 )
mysql? ( virtual/mysql )
 RDEPEND=${DEPEND}






[gentoo-commits] gentoo-x86 commit in sci-biology/psipred: psipred-3.2.ebuild psipred-3.2.1.ebuild psipred-3.1.ebuild psipred-3.5.ebuild psipred-3.3.ebuild ChangeLog psipred-3.4.ebuild

2014-05-14 Thread Justin Lecher (jlec)
jlec14/05/14 12:07:40

  Modified: psipred-3.2.ebuild psipred-3.2.1.ebuild
psipred-3.1.ebuild psipred-3.5.ebuild
psipred-3.3.ebuild ChangeLog psipred-3.4.ebuild
  Log:
  sci-biology/psipred: Add additional dep on sci-biology/update-blast
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.3  sci-biology/psipred/psipred-3.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/psipred/psipred-3.2.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/psipred/psipred-3.2.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/psipred/psipred-3.2.ebuild?r1=1.2r2=1.3

Index: psipred-3.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- psipred-3.2.ebuild  24 May 2011 12:18:04 -  1.2
+++ psipred-3.2.ebuild  14 May 2014 12:07:39 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.2.ebuild,v 
1.2 2011/05/24 12:18:04 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.2.ebuild,v 
1.3 2014/05/14 12:07:39 jlec Exp $
 
 EAPI=3
 
@@ -19,7 +19,7 @@
 
 RDEPEND=
sci-biology/ncbi-tools
-   sci-biology/ncbi-tools++
+   || ( sci-biology/update-blastdb sci-biology/ncbi-tools++ )
 DEPEND=
 
 S=${WORKDIR}



1.5  sci-biology/psipred/psipred-3.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/psipred/psipred-3.2.1.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/psipred/psipred-3.2.1.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/psipred/psipred-3.2.1.ebuild?r1=1.4r2=1.5

Index: psipred-3.2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.2.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- psipred-3.2.1.ebuild11 Jul 2012 06:21:27 -  1.4
+++ psipred-3.2.1.ebuild14 May 2014 12:07:39 -  1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.2.1.ebuild,v 
1.4 2012/07/11 06:21:27 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.2.1.ebuild,v 
1.5 2014/05/14 12:07:39 jlec Exp $
 
 EAPI=4
 
@@ -19,7 +19,7 @@
 
 RDEPEND=
sci-biology/ncbi-tools
-   sci-biology/ncbi-tools++
+   || ( sci-biology/update-blastdb sci-biology/ncbi-tools++ )
 DEPEND=
 
 S=${WORKDIR}



1.4  sci-biology/psipred/psipred-3.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/psipred/psipred-3.1.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/psipred/psipred-3.1.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/psipred/psipred-3.1.ebuild?r1=1.3r2=1.4

Index: psipred-3.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- psipred-3.1.ebuild  24 May 2011 12:18:04 -  1.3
+++ psipred-3.1.ebuild  14 May 2014 12:07:39 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.1.ebuild,v 
1.3 2011/05/24 12:18:04 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/psipred/psipred-3.1.ebuild,v 
1.4 2014/05/14 12:07:39 jlec Exp $
 
 EAPI=3
 
@@ -19,7 +19,7 @@
 
 RDEPEND=
sci-biology/ncbi-tools
-   sci-biology/ncbi-tools++
+   || ( sci-biology/update-blastdb sci-biology/ncbi-tools++ )
 DEPEND=
 
 S=${WORKDIR}



1.2  sci-biology/psipred/psipred-3.5.ebuild

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

Index: psipred-3.5.ebuild

[gentoo-commits] gentoo-x86 commit in sci-libs/rosetta-fragments: rosetta-fragments-3.1-r1.ebuild ChangeLog rosetta-fragments-3.1.ebuild

2014-05-14 Thread Justin Lecher (jlec)
jlec14/05/14 12:09:55

  Modified: rosetta-fragments-3.1-r1.ebuild ChangeLog
rosetta-fragments-3.1.ebuild
  Log:
  sci-libs/rosetta-fragments: Add additional dep on sci-biology/update-blast
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.2  sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.ebuild

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

Index: rosetta-fragments-3.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rosetta-fragments-3.1-r1.ebuild 25 Apr 2013 08:37:45 -  1.1
+++ rosetta-fragments-3.1-r1.ebuild 14 May 2014 12:09:55 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.ebuild,v
 1.1 2013/04/25 08:37:45 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sci-libs/rosetta-fragments/rosetta-fragments-3.1-r1.ebuild,v
 1.2 2014/05/14 12:09:55 jlec Exp $
 
 EAPI=5
 
@@ -18,7 +18,7 @@
 DEPEND=
 RDEPEND=
sci-biology/ncbi-tools
-   sci-biology/ncbi-tools++
+   || ( sci-biology/update-blastdb sci-biology/ncbi-tools++ )
sci-biology/psipred
 
 RESTRICT=fetch



1.6  sci-libs/rosetta-fragments/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/rosetta-fragments/ChangeLog?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/rosetta-fragments/ChangeLog?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/rosetta-fragments/ChangeLog?r1=1.5r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/rosetta-fragments/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   25 Apr 2013 08:37:45 -  1.5
+++ ChangeLog   14 May 2014 12:09:55 -  1.6
@@ -1,6 +1,10 @@
 # ChangeLog for sci-libs/rosetta-fragments
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/rosetta-fragments/ChangeLog,v 1.5 
2013/04/25 08:37:45 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/rosetta-fragments/ChangeLog,v 1.6 
2014/05/14 12:09:55 jlec Exp $
+
+  14 May 2014; Justin Lecher j...@gentoo.org rosetta-fragments-3.1.ebuild,
+  rosetta-fragments-3.1-r1.ebuild:
+  Add additional dep on sci-biology/update-blast
 
 *rosetta-fragments-3.1-r1 (25 Apr 2013)
 



1.7  sci-libs/rosetta-fragments/rosetta-fragments-3.1.ebuild

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

Index: rosetta-fragments-3.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sci-libs/rosetta-fragments/rosetta-fragments-3.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rosetta-fragments-3.1.ebuild25 Apr 2013 08:37:45 -  1.6
+++ rosetta-fragments-3.1.ebuild14 May 2014 12:09:55 -  1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sci-libs/rosetta-fragments/rosetta-fragments-3.1.ebuild,v
 1.6 2013/04/25 08:37:45 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sci-libs/rosetta-fragments/rosetta-fragments-3.1.ebuild,v
 1.7 2014/05/14 12:09:55 jlec Exp $
 
 EAPI=2
 
@@ -18,7 +18,7 @@
 DEPEND=
 RDEPEND=
sci-biology/ncbi-tools
-   sci-biology/ncbi-tools++
+   || ( sci-biology/update-blastdb sci-biology/ncbi-tools++ )
sci-biology/psipred
 
 RESTRICT=fetch






[gentoo-commits] dev/graaff:master commit in: dev-ruby/sass-globbing/

2014-05-14 Thread Hans de Graaff
commit: 0e0b0d1a313e23209abf9cee35807a88958968d0
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Wed May 14 12:20:55 2014 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Wed May 14 12:20:55 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=0e0b0d1a

Initial import. New dependency for compass-import-once.

Package-Manager: portage-2.2.8-r1

---
 dev-ruby/sass-globbing/ChangeLog  | 10 +
 dev-ruby/sass-globbing/Manifest   |  1 +
 dev-ruby/sass-globbing/metadata.xml   |  5 +
 dev-ruby/sass-globbing/sass-globbing-1.1.0.ebuild | 27 +++
 4 files changed, 43 insertions(+)

diff --git a/dev-ruby/sass-globbing/ChangeLog b/dev-ruby/sass-globbing/ChangeLog
new file mode 100644
index 000..a9e127d
--- /dev/null
+++ b/dev-ruby/sass-globbing/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-ruby/sass-globbing
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*sass-globbing-1.1.0 (14 May 2014)
+
+  14 May 2014; Hans de Graaff gra...@gentoo.org +sass-globbing-1.1.0.ebuild,
+  +metadata.xml:
+  Initial import. New dependency for compass-import-once.
+

diff --git a/dev-ruby/sass-globbing/Manifest b/dev-ruby/sass-globbing/Manifest
new file mode 100644
index 000..1f208ba
--- /dev/null
+++ b/dev-ruby/sass-globbing/Manifest
@@ -0,0 +1 @@
+DIST sass-globbing-1.1.0.gem 7680 SHA256 
3edcb534d9737789fe8850f39a57a05fa540c1da2860eb518156aa60e56c1692 SHA512 
ece294bf01c359b8143ed1a1cbcab91a361a730aac3b2fbb95b43b12f1aa832d4738edd298de6774e5ce3a02e4f47a43debfdbd1bb1cc11002bb120a8b5bc51b
 WHIRLPOOL 
d799a118bc3a882dd465d0944e2337c2a37412b468d312d07b9a4ceecce148571f1e96326c6fd7419ea5ee5ef36c5ea9f1db03b7570f4cb2a616fda77e8bca0b

diff --git a/dev-ruby/sass-globbing/metadata.xml 
b/dev-ruby/sass-globbing/metadata.xml
new file mode 100644
index 000..f977299
--- /dev/null
+++ b/dev-ruby/sass-globbing/metadata.xml
@@ -0,0 +1,5 @@
+?xml version = '1.0' encoding = 'UTF-8'?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+maintaineremailgra...@gentoo.org/email/maintainer
+/pkgmetadata

diff --git a/dev-ruby/sass-globbing/sass-globbing-1.1.0.ebuild 
b/dev-ruby/sass-globbing/sass-globbing-1.1.0.ebuild
new file mode 100644
index 000..58d6984
--- /dev/null
+++ b/dev-ruby/sass-globbing/sass-globbing-1.1.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+USE_RUBY=ruby19 ruby20 ruby21
+
+RUBY_FAKEGEM_TASK_DOC=
+RUBY_FAKEGEM_EXTRADOC=CHANGELOG.markdown README.markdown
+
+inherit ruby-fakegem
+
+DESCRIPTION=Sass globbing allows you to import many sass or scss files in a 
single import statement
+HOMEPAGE=http://chriseppstein.github.com/;
+
+LICENSE=MIT
+SLOT=1
+KEYWORDS=~amd64
+IUSE=
+
+ruby_add_rdepend 
+   =dev-ruby/sass-3.1
+
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/I s:^:#:' Rakefile || die
+}



[gentoo-commits] dev/graaff:master commit in: dev-ruby/request_store/

2014-05-14 Thread Hans de Graaff
commit: 5a01bb9af7124817470fa70579fd6ed4b01dba91
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Thu May  1 11:28:42 2014 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Thu May  1 11:28:42 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=5a01bb9a

Add ruby20, ruby21.

Package-Manager: portage-2.2.8-r1

---
 dev-ruby/request_store/ChangeLog  | 5 -
 dev-ruby/request_store/request_store-1.0.5.ebuild | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/request_store/ChangeLog b/dev-ruby/request_store/ChangeLog
index 2ab8f33..361110c 100644
--- a/dev-ruby/request_store/ChangeLog
+++ b/dev-ruby/request_store/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for dev-ruby/request_store
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  01 May 2014; Hans de Graaff gra...@gentoo.org request_store-1.0.5.ebuild:
+  Add ruby20, ruby21.
+
 *request_store-1.0.5 (28 Jun 2013)
 
   28 Jun 2013; Hans de Graaff gra...@gentoo.org +request_store-1.0.5.ebuild,

diff --git a/dev-ruby/request_store/request_store-1.0.5.ebuild 
b/dev-ruby/request_store/request_store-1.0.5.ebuild
index 76a126c..019c566 100644
--- a/dev-ruby/request_store/request_store-1.0.5.ebuild
+++ b/dev-ruby/request_store/request_store-1.0.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header:  $
 
 EAPI=5
-USE_RUBY=ruby19
+USE_RUBY=ruby19 ruby20 ruby21
 
 RUBY_FAKEGEM_EXTRADOC=README.md
 



[gentoo-commits] dev/graaff:master commit in: dev-ruby/authlogic/

2014-05-14 Thread Hans de Graaff
commit: a728ece1d203d8c6901a9ecdbdd5959c86727bb0
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Thu May  1 11:26:42 2014 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Thu May  1 11:26:42 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=a728ece1

Version bump.

Package-Manager: portage-2.2.8-r1

---
 dev-ruby/authlogic/ChangeLog  |  5 
 dev-ruby/authlogic/Manifest   |  1 +
 dev-ruby/authlogic/authlogic-3.4.2.ebuild | 43 +++
 3 files changed, 49 insertions(+)

diff --git a/dev-ruby/authlogic/ChangeLog b/dev-ruby/authlogic/ChangeLog
index 7366537..19a34b5 100644
--- a/dev-ruby/authlogic/ChangeLog
+++ b/dev-ruby/authlogic/ChangeLog
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/authlogic
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 
+*authlogic-3.4.2 (01 May 2014)
+
+  01 May 2014; Hans de Graaff gra...@gentoo.org +authlogic-3.4.2.ebuild:
+  Version bump.
+
 *authlogic-3.4.1 (04 Apr 2014)
 
   04 Apr 2014; Hans de Graaff gra...@gentoo.org authlogic-3.4.0.ebuild,

diff --git a/dev-ruby/authlogic/Manifest b/dev-ruby/authlogic/Manifest
index 2beebcf..cdf5447 100644
--- a/dev-ruby/authlogic/Manifest
+++ b/dev-ruby/authlogic/Manifest
@@ -3,3 +3,4 @@ DIST authlogic-3.2.0.gem 68096 SHA256 
386aa1c5f0edad365ede6f819c98eb0bd948d1a277
 DIST authlogic-3.3.0.gem 65536 SHA256 
78271a3a6fc22320d174f9d642dcbb9ee6dfed5146d4aeaf5a050601b07ad46e SHA512 
2316f311df153863ba5b8f4cc44017c2865409a539a800f2827a954b69ee22094da3895a70418b006799736c0166e58c1500400c2ab4c178a40b3f7bb512c592
 WHIRLPOOL 
e2cbc7b85c89c20cf1ac6f2e5c06ca42141f7a9d59cf0951a66952e706495dde751ed800ed7b1bb5c0dc5b1da1eeebf0b935cf688498320b1123fd471297b582
 DIST authlogic-3.4.0.gem 67072 SHA256 
95628bd02245bf17dad5f2989063f360e910df602f7b6e61e885ecfbc0edf76a SHA512 
6b9df03e810481c7764e83ca0ea832a0dab4b9dd590e5fcd276fafb1d52df63b80e4289658f9eae9242c738634a244ffce2e3b583923ef1d40af393a7fb3ae54
 WHIRLPOOL 
7de41ef238cc6ef992cda537d659b30f61559f35d651498beebde7b3fdb54b85874e6f37f3f82f87d7a0d0ea7349d9c41c38a598a4ab6b5a75f169283bedaef1
 DIST authlogic-3.4.1.gem 67584 SHA256 
e88c7b050a1c139d629b316d17e3778de819354a57a46638546617c1c59022ce SHA512 
e1f47121366d40ad8f5aa7943e97754b16a7dcc1f0c17b3c6d4582e8b2f0a5e23ca6b3af5196fd73185eb61f32af46f0b448cf1cb3a777b654d2e66bee4dde2b
 WHIRLPOOL 
ee1b526a630f6788df4f55f1ef166b7344cff1b4759b4d14fe02f19e6da72f7ca1084443610715030941c4480f7008fc147dd39706d183c6f3db8201a8608f27
+DIST authlogic-3.4.2.gem 67584 SHA256 
4d58ad67c818df29ffac477a37c6ac1dbcc99494dab072ea342e85f39172a60e SHA512 
aab89cd9110a3be22de57bad8330a42b57d6d45d8bc402dbbfd18406f139dc69626a07ee9a158445dde14d3bcd9c19c85a7d2274dc475792c8f55d4a70899ccd
 WHIRLPOOL 
fd1c5d49a4553ae7cdeebad08071b2e09a75dcfc2899e36b31aea48f81f71e780efbbadbbbd5005704e782a8549c6698b61ee2740afb81ce471df48d8a93ecda

diff --git a/dev-ruby/authlogic/authlogic-3.4.2.ebuild 
b/dev-ruby/authlogic/authlogic-3.4.2.ebuild
new file mode 100644
index 000..84c63a6
--- /dev/null
+++ b/dev-ruby/authlogic/authlogic-3.4.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header:  $
+
+EAPI=5
+
+USE_RUBY=ruby19
+
+RUBY_FAKEGEM_TASK_DOC=
+RUBY_FAKEGEM_EXTRADOC=History README.rdoc
+
+inherit ruby-fakegem
+
+DESCRIPTION=A clean, simple, and unobtrusive ruby authentication solution.
+HOMEPAGE=http://authlogic.rubyforge.org/;
+LICENSE=Ruby
+
+KEYWORDS=~amd64
+SLOT=3
+IUSE=
+
+# Now requires scrypt but this is not packaged yet, see below.
+RESTRICT=test
+
+ruby_add_rdepend =dev-ruby/activerecord-3.2
+   =dev-ruby/activesupport-3.2
+   =dev-ruby/request_store-1.0.5
+ruby_add_bdepend test? ( =dev-ruby/bcrypt-ruby-3.1.5 dev-ruby/sqlite3 )
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/I s:^:#:' Rakefile || die
+
+   #sed -i -e '/ruby-debug/d' test/test_helper.rb || die
+
+   # Avoid test for a crypt provider we don't package. Also test with
+   # bcrypt rather than scrypt. SCrypt is not easy to install due to a
+   # very weird build system.
+   sed -i -e 's/SCrypt/BCrypt/' test/fixtures/users.yml 
test/acts_as_authentic_test/password_test.rb || die
+   rm test/crypto_provider_test/scrypt_test.rb 
test/acts_as_authentic_test/{password,persistence_token}_test.rb || die
+
+   # Use a version of minitest compatible with rails
+   sed -i -e '2igem minitest, ~ 4.0' test/test_helper.rb || die
+}



[gentoo-commits] dev/graaff:master commit in: dev-ruby/bourbon/

2014-05-14 Thread Hans de Graaff
commit: c1d477c88334276b6ace2078a45e12b321499186
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Thu May  1 11:22:20 2014 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Thu May  1 11:22:20 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=c1d477c8

No longer in use.

---
 dev-ruby/bourbon/ChangeLog  | 26 --
 dev-ruby/bourbon/Manifest   |  3 ---
 dev-ruby/bourbon/bourbon-3.1.2.1.ebuild | 30 --
 dev-ruby/bourbon/bourbon-3.1.6.ebuild   | 30 --
 dev-ruby/bourbon/bourbon-3.1.8.ebuild   | 30 --
 dev-ruby/bourbon/metadata.xml   |  5 -
 6 files changed, 124 deletions(-)

diff --git a/dev-ruby/bourbon/ChangeLog b/dev-ruby/bourbon/ChangeLog
deleted file mode 100644
index 0c9e65c..000
--- a/dev-ruby/bourbon/ChangeLog
+++ /dev/null
@@ -1,26 +0,0 @@
-# ChangeLog for dev-ruby/bourbon
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*bourbon-3.1.8 (21 Jun 2013)
-
-  21 Jun 2013; Hans de Graaff gra...@gentoo.org +bourbon-3.1.8.ebuild:
-  Version bump.
-
-*bourbon-3.1.6 (09 May 2013)
-
-  09 May 2013; Hans de Graaff gra...@gentoo.org +bourbon-3.1.6.ebuild:
-  Version bump.
-
-*bourbon-3.1.2.1 (11 Apr 2013)
-
-  11 Apr 2013; Hans de Graaff gra...@gentoo.org -bourbon-3.1.2.ebuild,
-  +bourbon-3.1.2.1.ebuild:
-  Version bump.
-
-*bourbon-3.1.2 (10 Apr 2013)
-
-  10 Apr 2013; Hans de Graaff gra...@gentoo.org +bourbon-3.1.2.ebuild,
-  +metadata.xml:
-  Initial import.
-

diff --git a/dev-ruby/bourbon/Manifest b/dev-ruby/bourbon/Manifest
deleted file mode 100644
index 28c4deb..000
--- a/dev-ruby/bourbon/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST bourbon-3.1.2.1.gem 25088 SHA256 
0452c9ab773bc51ce9813deb289102809695a1f271730d1183a06d9e060601fe SHA512 
44ee48190f2b6a39e797e6b7d4967643354f1b6edcda203ed6e0b9f767430e4c8ac861af11c82e8ea3a8b3ad7c6b6072390bc3c0a5310eedc55662dda5db8db6
 WHIRLPOOL 
81f3627c59c203742e649371953149e30899d520ba583cba3973472e472bbf57379e764823e4cf5ede615897c9a642429077c12d830c9281fa679a63bba6419a
-DIST bourbon-3.1.6.gem 24064 SHA256 
7d1e2e07f1399e5bda518f9219a45a1aea49d065c250f7b19c318131298dfd44 SHA512 
bfe5a5e7017dd456ef886fe11ad89f3cfc25f03b22e79a678603ada7f85872bfe573d2688a4ae67bb46d00abbe1f406c037c5bbb49ea4cc88541787325adf57f
 WHIRLPOOL 
35da1702bf4e5c51dbfe6c33f5b2df033678d7de736ded458b98730164b52f84868d93f6b72d2a692a0a344e63ea7f26b9562c9f8f3dfb1665a51092d5c2fa0c
-DIST bourbon-3.1.8.gem 24576 SHA256 
23bf657586bf072f3dd9c479c2c4c862d25dda0c2a4ec31151f740d95b57b790 SHA512 
e285d88d8d933453027895f36d5f56a99fdab32caa2512fd4a0e7f69b7790594d4ea33f63cca4897598a1cbd6e93b1f624386cf73baed7ab3eff8380bf2e37d6
 WHIRLPOOL 
5474d18fcfe3fd7c48c371d3aef88b30ba72baa217fdeea904b509d7a36e39f2215a8816c469425d299a7aeca227bf822b8f2f87d0ba56bbc7235c5cde5dfa36

diff --git a/dev-ruby/bourbon/bourbon-3.1.2.1.ebuild 
b/dev-ruby/bourbon/bourbon-3.1.2.1.ebuild
deleted file mode 100644
index 01685d6..000
--- a/dev-ruby/bourbon/bourbon-3.1.2.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-USE_RUBY=ruby19
-
-RUBY_FAKEGEM_TASK_DOC=
-RUBY_FAKEGEM_EXTRADOC=readme.md
-
-RUBY_FAKEGEM_TASK_TEST=
-
-RUBY_FAKEGEM_EXTRAINSTALL=app
-
-RUBY_FAKEGEM_GEMSPEC=${PN}.gemspec
-
-inherit ruby-fakegem
-
-DESCRIPTION=Bourbon Sass Mixins using SCSS syntax.
-HOMEPAGE=https://github.com/thoughtbot/bourbon;
-
-LICENSE=MIT
-SLOT=0
-KEYWORDS=~amd64
-IUSE=
-
-ruby_add_rdepend 
-   dev-ruby/thor
-   =dev-ruby/sass-3.2  =dev-ruby/sass-3*
-

diff --git a/dev-ruby/bourbon/bourbon-3.1.6.ebuild 
b/dev-ruby/bourbon/bourbon-3.1.6.ebuild
deleted file mode 100644
index 01685d6..000
--- a/dev-ruby/bourbon/bourbon-3.1.6.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-USE_RUBY=ruby19
-
-RUBY_FAKEGEM_TASK_DOC=
-RUBY_FAKEGEM_EXTRADOC=readme.md
-
-RUBY_FAKEGEM_TASK_TEST=
-
-RUBY_FAKEGEM_EXTRAINSTALL=app
-
-RUBY_FAKEGEM_GEMSPEC=${PN}.gemspec
-
-inherit ruby-fakegem
-
-DESCRIPTION=Bourbon Sass Mixins using SCSS syntax.
-HOMEPAGE=https://github.com/thoughtbot/bourbon;
-
-LICENSE=MIT
-SLOT=0
-KEYWORDS=~amd64
-IUSE=
-
-ruby_add_rdepend 
-   dev-ruby/thor
-   =dev-ruby/sass-3.2  =dev-ruby/sass-3*
-

diff --git a/dev-ruby/bourbon/bourbon-3.1.8.ebuild 
b/dev-ruby/bourbon/bourbon-3.1.8.ebuild
deleted file mode 100644
index 053581b..000
--- a/dev-ruby/bourbon/bourbon-3.1.8.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-USE_RUBY=ruby19
-
-RUBY_FAKEGEM_TASK_DOC=
-RUBY_FAKEGEM_EXTRADOC=readme.md
-
-RUBY_FAKEGEM_TASK_TEST=

[gentoo-commits] dev/graaff:master commit in: dev-ruby/compass-import-once/

2014-05-14 Thread Hans de Graaff
commit: 1839eff5a50aaf1421c362592046656f1f47b591
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Wed May 14 12:26:43 2014 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Wed May 14 12:26:43 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=1839eff5

Initial import. New dependency for compass 1.x versions.

Package-Manager: portage-2.2.8-r1

---
 dev-ruby/compass-import-once/ChangeLog | 10 
 dev-ruby/compass-import-once/Manifest  |  1 +
 .../compass-import-once-1.0.4.ebuild   | 30 ++
 dev-ruby/compass-import-once/metadata.xml  |  5 
 4 files changed, 46 insertions(+)

diff --git a/dev-ruby/compass-import-once/ChangeLog 
b/dev-ruby/compass-import-once/ChangeLog
new file mode 100644
index 000..3a0163f
--- /dev/null
+++ b/dev-ruby/compass-import-once/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-ruby/compass-import-once
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*compass-import-once-1.0.4 (14 May 2014)
+
+  14 May 2014; Hans de Graaff gra...@gentoo.org
+  +compass-import-once-1.0.4.ebuild, +metadata.xml:
+  Initial import. New dependency for compass 1.x versions.
+

diff --git a/dev-ruby/compass-import-once/Manifest 
b/dev-ruby/compass-import-once/Manifest
new file mode 100644
index 000..1a44e68
--- /dev/null
+++ b/dev-ruby/compass-import-once/Manifest
@@ -0,0 +1 @@
+DIST compass-import-once-1.0.4.gem 9216 SHA256 
3d4f33f976f6d8e17d9c0c75147ffcd550a44b08075713cbbaa9604812dfcfd9 SHA512 
0d65e094c21cbf8c133b083ed50675a0c5e0095d2257f3e085f15fa44322a8cf6cbbe7da7d26e3203576eb4d0ec6689efc0025a0be854ce3081c22fb89bd0055
 WHIRLPOOL 
d07a077a41be41f4d73fe426a9b324da8060bfdb0a6dea031dc70048525b41c4fed608460722c7918ed90522913e18b3172353ef421122fc44f1e877b6c89c28

diff --git a/dev-ruby/compass-import-once/compass-import-once-1.0.4.ebuild 
b/dev-ruby/compass-import-once/compass-import-once-1.0.4.ebuild
new file mode 100644
index 000..11e1b19
--- /dev/null
+++ b/dev-ruby/compass-import-once/compass-import-once-1.0.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+USE_RUBY=ruby19 ruby20 ruby21
+
+RUBY_FAKEGEM_TASK_DOC=
+RUBY_FAKEGEM_EXTRADOC=README.md
+
+RUBY_FAKEGEM_EXTRAINSTALL=VERSION
+
+inherit ruby-fakegem
+
+DESCRIPTION=Speed up your Sass compilation by making @import only import each 
file once
+HOMEPAGE=http://compass-style.org/;
+
+LICENSE=MIT
+SLOT=1
+KEYWORDS=~amd64
+IUSE=
+
+ruby_add_rdepend 
+   =dev-ruby/sass-3.2 dev-ruby/sass-3.5
+   dev-ruby/sass-globbing
+
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/I s:^:#:' Rakefile || die
+}

diff --git a/dev-ruby/compass-import-once/metadata.xml 
b/dev-ruby/compass-import-once/metadata.xml
new file mode 100644
index 000..f977299
--- /dev/null
+++ b/dev-ruby/compass-import-once/metadata.xml
@@ -0,0 +1,5 @@
+?xml version = '1.0' encoding = 'UTF-8'?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+maintaineremailgra...@gentoo.org/email/maintainer
+/pkgmetadata



[gentoo-commits] dev/graaff:master commit in: dev-ruby/compass-core/

2014-05-14 Thread Hans de Graaff
commit: 1bf6725713a40f50385ca58de411467d298aad53
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Wed May 14 12:34:29 2014 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Wed May 14 12:34:29 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=1bf67257

Initial import. New dependency for compass 1.x

Package-Manager: portage-2.2.8-r1

---
 dev-ruby/compass-core/ChangeLog| 10 
 dev-ruby/compass-core/Manifest |  1 +
 .../compass-core-1.0.0_alpha_p19.ebuild| 29 ++
 dev-ruby/compass-core/metadata.xml |  5 
 4 files changed, 45 insertions(+)

diff --git a/dev-ruby/compass-core/ChangeLog b/dev-ruby/compass-core/ChangeLog
new file mode 100644
index 000..ef567a5
--- /dev/null
+++ b/dev-ruby/compass-core/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-ruby/compass-core
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*compass-core-1.0.0_alpha_p19 (14 May 2014)
+
+  14 May 2014; Hans de Graaff gra...@gentoo.org
+  +compass-core-1.0.0_alpha_p19.ebuild, +metadata.xml:
+  Initial import. New dependency for compass 1.x
+

diff --git a/dev-ruby/compass-core/Manifest b/dev-ruby/compass-core/Manifest
new file mode 100644
index 000..4c39c2d
--- /dev/null
+++ b/dev-ruby/compass-core/Manifest
@@ -0,0 +1 @@
+DIST compass-core-1.0.0.alpha.19.gem 125440 SHA256 
2c99d90c660dbc4bed0056abd1937874a6404a784a5c680e20ef9deda97c34af SHA512 
048a28a577ba50374e5b0e6849e49a1b5441339eb1feca353b813274ddda9cd61e858883df667761117e40afcb8b2090b91a97d8aa936a0270f1c0f9566ddc97
 WHIRLPOOL 
5b214308b541088a7925d521e5fff3a988d4d42a32c363dbe03a9e814db16ad9fc683aec6aa526f06ba3bb33115389ebda4c82f34bc34c2d5cde066d7e3e38ca

diff --git a/dev-ruby/compass-core/compass-core-1.0.0_alpha_p19.ebuild 
b/dev-ruby/compass-core/compass-core-1.0.0_alpha_p19.ebuild
new file mode 100644
index 000..76817ab
--- /dev/null
+++ b/dev-ruby/compass-core/compass-core-1.0.0_alpha_p19.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+USE_RUBY=ruby19 ruby20 ruby21
+
+RUBY_FAKEGEM_TASK_TEST=
+
+RUBY_FAKEGEM_TASK_DOC=
+
+RUBY_FAKEGEM_EXTRAINSTALL=data stylesheets templates RELEASE_VERSION VERSION
+
+RUBY_FAKEGEM_VERSION=${PV/_alpha_p/.alpha.}
+
+inherit ruby-fakegem
+
+DESCRIPTION=Compass Stylesheet Authoring Framework
+HOMEPAGE=http://compass-style.org/;
+
+LICENSE=MIT
+SLOT=1
+KEYWORDS=~amd64
+IUSE=
+
+ruby_add_rdepend 
+   =dev-ruby/multi_json-1.0
+   =dev-ruby/sass-3.3.0 dev-ruby/sass-3.4
+

diff --git a/dev-ruby/compass-core/metadata.xml 
b/dev-ruby/compass-core/metadata.xml
new file mode 100644
index 000..f977299
--- /dev/null
+++ b/dev-ruby/compass-core/metadata.xml
@@ -0,0 +1,5 @@
+?xml version = '1.0' encoding = 'UTF-8'?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+maintaineremailgra...@gentoo.org/email/maintainer
+/pkgmetadata



[gentoo-commits] dev/graaff:master commit in: dev-ruby/compass-import-once/

2014-05-14 Thread Hans de Graaff
commit: d27099539c03b87c446044db854f1278f9350342
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Wed May 14 12:27:43 2014 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Wed May 14 12:27:43 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=d2709953

Use the slot that compass expects.

Package-Manager: portage-2.2.8-r1

---
 dev-ruby/compass-import-once/ChangeLog| 4 
 dev-ruby/compass-import-once/compass-import-once-1.0.4.ebuild | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/compass-import-once/ChangeLog 
b/dev-ruby/compass-import-once/ChangeLog
index 3a0163f..aad3c04 100644
--- a/dev-ruby/compass-import-once/ChangeLog
+++ b/dev-ruby/compass-import-once/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  14 May 2014; Hans de Graaff gra...@gentoo.org
+  compass-import-once-1.0.4.ebuild:
+  Use the slot that compass expects.
+
 *compass-import-once-1.0.4 (14 May 2014)
 
   14 May 2014; Hans de Graaff gra...@gentoo.org

diff --git a/dev-ruby/compass-import-once/compass-import-once-1.0.4.ebuild 
b/dev-ruby/compass-import-once/compass-import-once-1.0.4.ebuild
index 11e1b19..3ea5ffc 100644
--- a/dev-ruby/compass-import-once/compass-import-once-1.0.4.ebuild
+++ b/dev-ruby/compass-import-once/compass-import-once-1.0.4.ebuild
@@ -16,7 +16,7 @@ DESCRIPTION=Speed up your Sass compilation by making @import 
only import each f
 HOMEPAGE=http://compass-style.org/;
 
 LICENSE=MIT
-SLOT=1
+SLOT=1.0
 KEYWORDS=~amd64
 IUSE=
 



[gentoo-commits] dev/graaff:master commit in: dev-ruby/compass/

2014-05-14 Thread Hans de Graaff
commit: 81b735a7b8c4b6fa434be60c8ccf3fd75d2b3351
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Wed May 14 12:48:01 2014 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Wed May 14 12:48:01 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=81b735a7

Version bump for 1.x series.

Package-Manager: portage-2.2.8-r1

---
 dev-ruby/compass/ChangeLog  |  6 
 dev-ruby/compass/Manifest   |  1 +
 dev-ruby/compass/compass-1.0.0_alpha_p19.ebuild | 46 +
 3 files changed, 53 insertions(+)

diff --git a/dev-ruby/compass/ChangeLog b/dev-ruby/compass/ChangeLog
index e673119..df68501 100644
--- a/dev-ruby/compass/ChangeLog
+++ b/dev-ruby/compass/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*compass-1.0.0_alpha_p19 (14 May 2014)
+
+  14 May 2014; Hans de Graaff gra...@gentoo.org
+  +compass-1.0.0_alpha_p19.ebuild:
+  Version bump for 1.x series.
+
 *compass-0.12.3-r1 (22 Apr 2014)
 
   22 Apr 2014; Hans de Graaff gra...@gentoo.org -compass-0.12.3.ebuild,

diff --git a/dev-ruby/compass/Manifest b/dev-ruby/compass/Manifest
index 810666b..ffabb99 100644
--- a/dev-ruby/compass/Manifest
+++ b/dev-ruby/compass/Manifest
@@ -1,2 +1,3 @@
 DIST compass-0.12.2-git.tar.gz 2019736 SHA256 
94d15a5e9a4b019ebc6fb7d1297a817da278efa8935ec8f0c47c3ad5b347464e SHA512 
2de5a583aa5e2aee10bd374b011271aee1ba713a1088d1397057ef0745b5d6581907178e8f566275278a0863c1995c4ebc87c82f0707f4197a36ab05864a8bb9
 WHIRLPOOL 
46d9aed86fd6c649562e5903364280de2601f792ec357e7b4266785cb102c237c7e62f33cbec9a6c17ab1196013a9af1c3f3c1ad4237c77d2764aff1602bcf94
 DIST compass-0.12.3-git.tar.gz 2019689 SHA256 
614fd5cdfff2ca50741f5f243941713bace99f441c52b8b0a2e95553a034a7c9 SHA512 
45678a244b99642e9d56f42eb8a048faa1cdc3dbfd3563d1eedb614c4bede5154ae5d3c59a543f4885da9f5dd65b353610cce7ec65fd2099787627e5fb812d90
 WHIRLPOOL 
bae32441777ef0b53171dbf81263a1bef2416bc45d4dd96cec8fbd87e8a39635710bdc134846cfc4aaa7c0c3c4635afc1338f415919264f5b69e46d5e21743cd
+DIST compass-1.0.0.alpha.19.gem 378368 SHA256 
83647b73510af259898251f2975e22f0e9fad0c4fcf14f2a002fb236447f72ef SHA512 
076878416fde946c4ccb71c3eae9bdcb65e5cb7544ddb88d77c1bdae5831808ba329770957c03e6cd295f72b7335b490bcb41ccc75d0abf062bd9aa80bb09c65
 WHIRLPOOL 
fe59c514bfc47ebfe6e2e59cc2eb9835ad86071538610226023daccc9dbcef45526f1ac7523a9bbec49c7968dd277d4218a659efa4cb123a096ae0675f9fa0be

diff --git a/dev-ruby/compass/compass-1.0.0_alpha_p19.ebuild 
b/dev-ruby/compass/compass-1.0.0_alpha_p19.ebuild
new file mode 100644
index 000..7b47428
--- /dev/null
+++ b/dev-ruby/compass/compass-1.0.0_alpha_p19.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+USE_RUBY=ruby19 ruby20 ruby21
+
+RUBY_FAKEGEM_TASK_DOC=
+
+RUBY_FAKEGEM_TASK_TEST=-Ilib test features
+
+RUBY_FAKEGEM_EXTRAINSTALL=RELEASE_VERSION VERSION
+
+RUBY_FAKEGEM_VERSION=${PV/_alpha_p/.alpha.}
+
+# Avoid installing the compass binary since the official version in the
+# main tree will already do this for another slot. To be fixed when this
+# version ends up in the main tree.
+RUBY_FAKEGEM_BINWRAP=
+
+inherit ruby-fakegem
+
+DESCRIPTION=Compass Stylesheet Authoring Framework
+HOMEPAGE=http://compass-style.org/;
+
+LICENSE=MIT
+SLOT=1
+KEYWORDS=~amd64
+IUSE=
+
+# Gem does not contain all files needed to run specs and it is not clear
+# which upstream repository/branch to use.
+RESTRICT=test
+
+ruby_add_rdepend =dev-ruby/chunky_png-1.2
+   =dev-ruby/compass-core-1.0.0_alpha_p17
+   =dev-ruby/compass-import-once-1.0.2:1.0
+   dev-ruby/json
+   =dev-ruby/listen-1.1.0:1
+   =dev-ruby/sass-3.3.0:3.3
+
+ruby_add_bdepend test? ( dev-ruby/colorize )
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+}



[gentoo-commits] gentoo-x86 commit in net-mail/notmuch/files: 0.18-0001-emacs-install-make-sure-all-components.patch 0.18-0003-Unset-html_static_path-in-Python-bindi.patch 0.18-0002-doc-conf.py-Remove

2014-05-14 Thread Amadeusz Zolnowski (aidecoe)
aidecoe 14/05/14 13:12:03

  Added:   
0.18-0001-emacs-install-make-sure-all-components.patch
0.18-0003-Unset-html_static_path-in-Python-bindi.patch
0.18-0002-doc-conf.py-Remove-_static-from-html_s.patch
  Log:
  Fixes compilation in case if emacs is not present and prevents infinite loops
  on generating docs with newer Sphinx.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F0134531E1DBFAB5)

Revision  ChangesPath
1.1  
net-mail/notmuch/files/0.18-0001-emacs-install-make-sure-all-components.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/files/0.18-0001-emacs-install-make-sure-all-components.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/files/0.18-0001-emacs-install-make-sure-all-components.patch?rev=1.1content-type=text/plain

Index: 0.18-0001-emacs-install-make-sure-all-components.patch
===
From 0211b37f150f35f8015e9455d84f0764bb1cf8b1 Mon Sep 17 00:00:00 2001
From: Tomi Ollila tomi.oll...@iki.fi
Date: Sun, 11 May 2014 00:36:43 +0300
Subject: [PATCH 1/3] emacs install: make sure all components to be installed
 are there

`make install-emacs` will copy $(emacs_sources), $(emacs_images) and
$(emacs_bytecode) to their target directories. $(emacs_bytecode) was
already a prerequisite of make install-emacs as these obviously needed
to be build. Until a while ago all of $(emacs_sources) was available
in the repository, but now it includes `notmuch-version.el` which
is generated. In the future we may have generated emacs images too.
---
 emacs/Makefile.local | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/emacs/Makefile.local b/emacs/Makefile.local
index dcb4995..c0d6b19 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -69,7 +69,7 @@ install: install-emacs
 endif
 
 .PHONY: install-emacs
-install-emacs:
+install-emacs: $(emacs_sources) $(emacs_images)
mkdir -p $(DESTDIR)$(emacslispdir)
install -m0644 $(emacs_sources) $(DESTDIR)$(emacslispdir)
 ifeq ($(HAVE_EMACS),1)
-- 
1.9.3




1.1  
net-mail/notmuch/files/0.18-0003-Unset-html_static_path-in-Python-bindi.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/files/0.18-0003-Unset-html_static_path-in-Python-bindi.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/files/0.18-0003-Unset-html_static_path-in-Python-bindi.patch?rev=1.1content-type=text/plain

Index: 0.18-0003-Unset-html_static_path-in-Python-bindi.patch
===
From b2bbe0b0a30c11d307a29b23f0e22268bd8edcc1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Amadeusz=20=C5=BBo=C5=82nowski?= aide...@aidecoe.name
Date: Mon, 12 May 2014 12:35:41 +0200
Subject: [PATCH 3/3] Unset html_static_path in Python bindings docs

html_static_path is a kind of source directory and it was set to
destination directory (../html) which caused infinite recursion with
Sphinx 1.2 and above.
---
 bindings/python/docs/source/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bindings/python/docs/source/conf.py 
b/bindings/python/docs/source/conf.py
index 9db377f..5107a96 100644
--- a/bindings/python/docs/source/conf.py
+++ b/bindings/python/docs/source/conf.py
@@ -140,7 +140,7 @@ html_theme = 'default'
 # Add any paths that contain custom static files (such as style sheets) here,
 # relative to this directory. They are copied after the builtin static files,
 # so a file named default.css will overwrite the builtin default.css.
-html_static_path = ['../html']
+html_static_path = []
 
 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
 # using the given strftime format.
-- 
1.9.3




1.1  
net-mail/notmuch/files/0.18-0002-doc-conf.py-Remove-_static-from-html_s.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/files/0.18-0002-doc-conf.py-Remove-_static-from-html_s.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/files/0.18-0002-doc-conf.py-Remove-_static-from-html_s.patch?rev=1.1content-type=text/plain

Index: 0.18-0002-doc-conf.py-Remove-_static-from-html_s.patch
===
From 29712ff47411c950e1426e638a13975e6de8952f Mon Sep 17 00:00:00 2001
From: W. Trevor King wk...@tremily.us
Date: Sat, 10 May 2014 08:55:21 -0700
Subject: [PATCH 2/3] doc/conf.py: Remove _static from html_static_path

Avoid:

  $ make HAVE_SPHINX=1 sphinx-html
  python ./doc/mkdocdeps.py ./doc doc/_build doc/docdeps.mk
  sphinx-build -b html -d doc/_build/doctrees -q ./doc doc/_build/html
  Making output directory...
  WARNING: html_static_path entry 

[gentoo-commits] dev/graaff:master commit in: dev-ruby/compass/

2014-05-14 Thread Hans de Graaff
commit: dcad802e666b38af1abb372412058a20f879874a
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Wed May 14 13:26:29 2014 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Wed May 14 13:26:29 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=dcad802e

Fix listen dependency version restrictions.

Package-Manager: portage-2.2.8-r1

---
 dev-ruby/compass/ChangeLog  | 4 
 dev-ruby/compass/compass-1.0.0_alpha_p19.ebuild | 3 +++
 2 files changed, 7 insertions(+)

diff --git a/dev-ruby/compass/ChangeLog b/dev-ruby/compass/ChangeLog
index df68501..97f029b 100644
--- a/dev-ruby/compass/ChangeLog
+++ b/dev-ruby/compass/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  14 May 2014; Hans de Graaff gra...@gentoo.org
+  compass-1.0.0_alpha_p19.ebuild:
+  Fix listen dependency version restrictions.
+
 *compass-1.0.0_alpha_p19 (14 May 2014)
 
   14 May 2014; Hans de Graaff gra...@gentoo.org

diff --git a/dev-ruby/compass/compass-1.0.0_alpha_p19.ebuild 
b/dev-ruby/compass/compass-1.0.0_alpha_p19.ebuild
index 7b47428..61640fc 100644
--- a/dev-ruby/compass/compass-1.0.0_alpha_p19.ebuild
+++ b/dev-ruby/compass/compass-1.0.0_alpha_p19.ebuild
@@ -43,4 +43,7 @@ ruby_add_bdepend test? ( dev-ruby/colorize )
 
 all_ruby_prepare() {
sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
+
+   # Loosen listen dependency since all 1.x versions are compatible.
+   sed -i -e s/1.1.0/'1.1'/ ../metadata || die
 }



[gentoo-commits] gentoo-x86 commit in dev-libs/atk: atk-2.12.0-r1.ebuild atk-2.10.0-r1.ebuild ChangeLog

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 13:36:31

  Modified: ChangeLog
  Added:atk-2.12.0-r1.ebuild atk-2.10.0-r1.ebuild
  Log:
  Enable multilib support, bug #488608.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.286dev-libs/atk/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/atk/ChangeLog,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -r1.285 -r1.286
--- ChangeLog   27 Apr 2014 16:00:03 -  1.285
+++ ChangeLog   14 May 2014 13:36:31 -  1.286
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/atk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/ChangeLog,v 1.285 2014/04/27 
16:00:03 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/ChangeLog,v 1.286 2014/05/14 
13:36:31 mgorny Exp $
+
+*atk-2.12.0-r1 (14 May 2014)
+*atk-2.10.0-r1 (14 May 2014)
+
+  14 May 2014; Michał Górny mgo...@gentoo.org +atk-2.10.0-r1.ebuild,
+  +atk-2.12.0-r1.ebuild:
+  Enable multilib support, bug #488608.
 
 *atk-2.12.0 (27 Apr 2014)
 



1.1  dev-libs/atk/atk-2.12.0-r1.ebuild

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

Index: atk-2.12.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/atk-2.12.0-r1.ebuild,v 1.1 
2014/05/14 13:36:31 mgorny Exp $

EAPI=5
GCONF_DEBUG=no

inherit gnome2 multilib-minimal

DESCRIPTION=GTK+  GNOME Accessibility Toolkit
HOMEPAGE=http://projects.gnome.org/accessibility/;

LICENSE=LGPL-2+
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris ~x86-winnt
IUSE=+introspection nls test

RDEPEND=
=dev-libs/glib-2.31.2:2[${MULTILIB_USEDEP}]
introspection? ( =dev-libs/gobject-introspection-0.6.7 )
abi_x86_32? (
!=app-emulation/emul-linux-x86-gtklibs-20140508
!app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
)

DEPEND=${RDEPEND}
=dev-lang/perl-5
dev-util/gtk-doc-am
virtual/pkgconfig[${MULTILIB_USEDEP}]
nls? ( sys-devel/gettext )


src_prepare() {
gnome2_src_prepare

if ! use test; then
# don't waste time building tests (bug #226353)
sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am 
Makefile.in \
|| die sed failed
fi
}

multilib_src_configure() {
ECONF_SOURCE=${S} \
gnome2_src_configure \
$(multilib_native_use_enable introspection)

# work-around gtk-doc out-of-source brokedness
if multilib_is_native_abi; then
ln -s ${S}/docs/html docs/html || die
fi
}

multilib_src_install() {
gnome2_src_install
}



1.1  dev-libs/atk/atk-2.10.0-r1.ebuild

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

Index: atk-2.10.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/atk-2.10.0-r1.ebuild,v 1.1 
2014/05/14 13:36:31 mgorny Exp $

EAPI=5
GCONF_DEBUG=no

inherit gnome2 multilib-minimal

DESCRIPTION=GTK+  GNOME Accessibility Toolkit
HOMEPAGE=http://projects.gnome.org/accessibility/;

LICENSE=LGPL-2+
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris ~x86-winnt
IUSE=+introspection nls test

RDEPEND=
=dev-libs/glib-2.31.2:2[${MULTILIB_USEDEP}]
introspection? ( =dev-libs/gobject-introspection-0.6.7 )
abi_x86_32? (
!=app-emulation/emul-linux-x86-gtklibs-20140508
   

[gentoo-commits] gentoo-x86 commit in x11-libs/gtk+: gtk+-2.24.23-r1.ebuild ChangeLog

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 13:36:39

  Modified: ChangeLog
  Added:gtk+-2.24.23-r1.ebuild
  Log:
  Enable multilib support, bug #489000.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.718x11-libs/gtk+/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v
retrieving revision 1.717
retrieving revision 1.718
diff -u -r1.717 -r1.718
--- ChangeLog   2 May 2014 09:11:41 -   1.717
+++ ChangeLog   14 May 2014 13:36:39 -  1.718
@@ -1,6 +1,11 @@
 # ChangeLog for x11-libs/gtk+
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.717 2014/05/02 
09:11:41 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.718 2014/05/14 
13:36:39 mgorny Exp $
+
+*gtk+-2.24.23-r1 (14 May 2014)
+
+  14 May 2014; Michał Górny mgo...@gentoo.org +gtk+-2.24.23-r1.ebuild:
+  Enable multilib support, bug #489000.
 
   02 May 2014; Pacho Ramos pa...@gentoo.org gtk+-2.24.23.ebuild,
   gtk+-3.10.8.ebuild:



1.1  x11-libs/gtk+/gtk+-2.24.23-r1.ebuild

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

Index: gtk+-2.24.23-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-2.24.23-r1.ebuild,v 1.1 
2014/05/14 13:36:39 mgorny Exp $

EAPI=5
GCONF_DEBUG=no

inherit eutils flag-o-matic gnome2 multilib virtualx autotools readme.gentoo 
multilib-minimal

DESCRIPTION=Gimp ToolKit +
HOMEPAGE=http://www.gtk.org/;

LICENSE=LGPL-2+
SLOT=2
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris
IUSE=aqua cups debug examples +introspection test vim-syntax xinerama

# NOTE: cairo[svg] dep is due to bug 291283 (not patched to avoid eautoreconf)
COMMON_DEPEND=
!aqua? (
x11-libs/libXrender[${MULTILIB_USEDEP}]
x11-libs/libX11[${MULTILIB_USEDEP}]
x11-libs/libXi[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
=x11-libs/libXrandr-1.3[${MULTILIB_USEDEP}]
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXfixes[${MULTILIB_USEDEP}]
x11-libs/libXcomposite[${MULTILIB_USEDEP}]
x11-libs/libXdamage[${MULTILIB_USEDEP}]
=x11-libs/cairo-1.6:=[X,svg,${MULTILIB_USEDEP}]
x11-libs/gdk-pixbuf:2[X,introspection?,${MULTILIB_USEDEP}]
)
aqua? (
=x11-libs/cairo-1.6:=[aqua,svg]
x11-libs/gdk-pixbuf:2[introspection?]
)
xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
=dev-libs/glib-2.34:2[${MULTILIB_USEDEP}]
=x11-libs/pango-1.20[introspection?,${MULTILIB_USEDEP}]
=dev-libs/atk-1.29.2[introspection?,${MULTILIB_USEDEP}]
media-libs/fontconfig[${MULTILIB_USEDEP}]
x11-misc/shared-mime-info
cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
introspection? ( =dev-libs/gobject-introspection-0.9.3 )
!gnome-base/gail-1000

DEPEND=${COMMON_DEPEND}
sys-devel/gettext
virtual/pkgconfig[${MULTILIB_USEDEP}]
!aqua? (
x11-proto/xextproto[${MULTILIB_USEDEP}]
x11-proto/xproto[${MULTILIB_USEDEP}]
x11-proto/inputproto[${MULTILIB_USEDEP}]
x11-proto/damageproto[${MULTILIB_USEDEP}]
)
xinerama? ( x11-proto/xineramaproto[${MULTILIB_USEDEP}] )
=dev-util/gtk-doc-am-1.20
test? (
x11-themes/hicolor-icon-theme
media-fonts/font-misc-misc
media-fonts/font-cursor-misc )


# gtk+-2.24.8 breaks Alt key handling in =x11-libs/vte-0.28.2:0
# Add blocker against old gtk-builder-convert to be sure we maintain both
# in sync.
RDEPEND=${COMMON_DEPEND}
!dev-util/gtk-builder-convert-${PV}
!x11-libs/vte-0.28.2-r201:0
abi_x86_32? (
!=app-emulation/emul-linux-x86-gtklibs-20140508

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

2014-05-14 Thread Brian Evans
commit: f4b7a8e89e418911e6af95b06c1139afb10cb0b4
Author: Brian Evans grknight AT gentoo DOT org
AuthorDate: Wed May 14 13:36:25 2014 +
Commit: Brian Evans grknight AT lavabit DOT com
CommitDate: Wed May 14 13:36:42 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/mysql.git;a=commit;h=f4b7a8e8

[eclass] Rework multilib eclass to use multilib-minimal as a base

---
 eclass/mysql-cmake.eclass|   2 +-
 eclass/mysql-multilib.eclass | 232 +++
 2 files changed, 101 insertions(+), 133 deletions(-)

diff --git a/eclass/mysql-cmake.eclass b/eclass/mysql-cmake.eclass
index 4109732..a9c743d 100644
--- a/eclass/mysql-cmake.eclass
+++ b/eclass/mysql-cmake.eclass
@@ -415,7 +415,7 @@ mysql-cmake_src_install() {
esac
einfo Building default my.cnf (${mysql_mycnf_version})
insinto ${MY_SYSCONFDIR#${EPREFIX}}
-   doins scripts/mysqlaccess.conf
+   doins ${S}/scripts/mysqlaccess.conf
mycnf_src=my.cnf-${mysql_mycnf_version}
sed -e s!@DATADIR@!${MY_DATADIR}!g \
${FILESDIR}/${mycnf_src} \

diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass
index 2bc09b1..b548e40 100644
--- a/eclass/mysql-multilib.eclass
+++ b/eclass/mysql-multilib.eclass
@@ -27,7 +27,7 @@ MYSQL_EXTRAS=
 [[ ${MY_EXTRAS_VER} == live ]]  MYSQL_EXTRAS=git-2
 
 inherit eutils flag-o-matic ${MYSQL_EXTRAS} mysql-cmake mysql_fx versionator \
-   toolchain-funcs user cmake-utils multilib-build
+   toolchain-funcs user cmake-utils multilib-minimal
 
 #
 # Supported EAPI versions and export functions
@@ -157,7 +157,7 @@ if [[ ${MY_EXTRAS_VER} != live  ${MY_EXTRAS_VER} != 
none ]]; then

http://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2;
 fi
 
-DESCRIPTION=A fast, multi-threaded, multi-user SQL database server.
+DESCRIPTION=A fast, multi-threaded, multi-user SQL database server
 HOMEPAGE=http://www.mysql.com/;
 if [[ ${PN} == mariadb ]]; then
HOMEPAGE=http://mariadb.org/;
@@ -174,7 +174,7 @@ fi
 LICENSE=GPL-2
 SLOT=0
 
-IUSE=+community cluster debug embedded extraengine jemalloc latin1 
max-idx-128 minimal 
+IUSE=+community cluster debug embedded extraengine jemalloc latin1 
max-idx-128 minimal
+perl profiling selinux ssl systemtap static static-libs tcmalloc test
 
 if [[ ${PN} == mariadb || ${PN} == mariadb-galera ]]; then
@@ -224,7 +224,7 @@ fi
 
 if [[ ${PN} == mariadb || ${PN} == mariadb-galera ]] ; then
# Bug 441700 MariaDB =5.3 include custom mytop
-   DEPEND=${DEPEND} 
+   DEPEND=${DEPEND}
oqgraph? ( =dev-libs/boost-1.40.0:0= )
sphinx? ( app-misc/sphinx:0= )
!minimal? ( pam? ( virtual/pam:0= ) )
@@ -273,7 +273,7 @@ if [[ ${PN} == mariadb-galera ]] ; then
# The wsrep API version must match between the ebuild and 
sys-cluster/galera.
# This will be indicated by WSREP_REVISION in the ebuild and the first 
number
# in the version of sys-cluster/galera
-   RDEPEND=${RDEPEND} 
+   RDEPEND=${RDEPEND}
=sys-cluster/galera-${WSREP_REVISION}*

 fi
@@ -381,157 +381,125 @@ mysql-multilib_src_prepare() {
 # @DESCRIPTION:
 # Configure mysql to build the code for Gentoo respecting the use flags.
 mysql-multilib_src_configure() {
+   multilib-minimal_src_configure
+}
+
+multilib_src_configure() {
+
debug-print-function ${FUNCNAME} $@
 
-   _mysql-multilib_src_configure() {
-
-   debug-print-function ${FUNCNAME} $@
-
-   CMAKE_BUILD_TYPE=RelWithDebInfo
-
-   # debug hack wrt #497532
-   mycmakeargs=(
-   -DCMAKE_C_FLAGS_RELWITHDEBINFO=$(usex debug  
-DNDEBUG)
-   -DCMAKE_CXX_FLAGS_RELWITHDEBINFO=$(usex debug  
-DNDEBUG)
-   -DCMAKE_INSTALL_PREFIX=${EPREFIX}/usr
-   -DMYSQL_DATADIR=${EPREFIX}/var/lib/mysql
-   -DSYSCONFDIR=${EPREFIX}/etc/mysql
-   -DINSTALL_BINDIR=bin
-   -DINSTALL_DOCDIR=share/doc/${P}
-   -DINSTALL_DOCREADMEDIR=share/doc/${P}
-   -DINSTALL_INCLUDEDIR=include/mysql
-   -DINSTALL_INFODIR=share/info
-   -DINSTALL_LIBDIR=$(get_libdir)
-   -DINSTALL_ELIBDIR=$(get_libdir)/mysql
-   -DINSTALL_MANDIR=share/man
-   -DINSTALL_MYSQLDATADIR=${EPREFIX}/var/lib/mysql
-   -DINSTALL_MYSQLSHAREDIR=share/mysql
-   -DINSTALL_MYSQLTESTDIR=share/mysql/mysql-test
-   -DINSTALL_PLUGINDIR=$(get_libdir)/mysql/plugin
-   -DINSTALL_SBINDIR=sbin
-   -DINSTALL_SCRIPTDIR=share/mysql/scripts
-   -DINSTALL_SQLBENCHDIR=share/mysql
-   

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

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 13:37:33

  Modified: ChangeLog
  Added:emul-linux-x86-gtklibs-20140508-r1.ebuild
  Log:
  Add multilib atk  gtk+. Also remove files for gtk-engines but do not pull 
them implicitly.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

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

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

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog   9 May 2014 07:11:25 -   1.126
+++ ChangeLog   14 May 2014 13:37:33 -  1.127
@@ -1,6 +1,13 @@
 # ChangeLog for app-emulation/emul-linux-x86-gtklibs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/ChangeLog,v 1.126 
2014/05/09 07:11:25 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/ChangeLog,v 1.127 
2014/05/14 13:37:33 mgorny Exp $
+
+*emul-linux-x86-gtklibs-20140508-r1 (14 May 2014)
+
+  14 May 2014; Michał Górny mgo...@gentoo.org
+  +emul-linux-x86-gtklibs-20140508-r1.ebuild, +files/remove-native-20140508-r1:
+  Add multilib atk  gtk+. Also remove files for gtk-engines but do not pull
+  them implicitly.
 
   09 May 2014; Michał Górny mgo...@gentoo.org files/remove-native-20140508:
   Update remove-native wrt library name changes.



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

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

Index: emul-linux-x86-gtklibs-20140508-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-gtklibs/emul-linux-x86-gtklibs-20140508-r1.ebuild,v
 1.1 2014/05/14 13:37:33 mgorny Exp $

EAPI=5
inherit emul-linux-x86

LICENSE=GPL-2 LGPL-2 FTL LGPL-2.1 LGPL-3 MPL-1.1 MIT
KEYWORDS=-* ~amd64
IUSE=abi_x86_32

DEPEND=
RDEPEND=~app-emulation/emul-linux-x86-baselibs-${PV}
~app-emulation/emul-linux-x86-xlibs-${PV}
~app-emulation/emul-linux-x86-opengl-${PV}
!abi_x86_32? (
!=media-gfx/graphite2-1.2.4-r1[abi_x86_32(-)]
!=media-libs/harfbuzz-0.9.26-r1[abi_x86_32(-)]
)
abi_x86_32? (
=x11-libs/pixman-0.30.2-r1[abi_x86_32(-)]
=x11-libs/cairo-1.12.16-r1[abi_x86_32(-)]
=x11-libs/gdk-pixbuf-2.30.5-r1[abi_x86_32(-)]
=media-gfx/graphite2-1.2.4-r1[abi_x86_32(-)]
=media-libs/harfbuzz-0.9.26-r1[abi_x86_32(-)]
=x11-libs/pango-1.36.2-r1[abi_x86_32(-)]
=x11-libs/pangox-compat-0.0.2-r1[abi_x86_32(-)]
=media-libs/imlib-1.9.15-r4[abi_x86_32(-)]
=dev-libs/atk-2.10.0-r1[abi_x86_32(-)]
=x11-libs/gtk+-2.24.23-r1:2[abi_x86_32(-)]
)
# RDEPEND on opengl stuff needed due cairo, bug #410213

my_gdk_pixbuf_query_loaders() {
# causes segfault if set
unset __GL_NO_DSO_FINALIZER

local tmp_file=$(mktemp --suffix=tmp.XXgdk_pixbuf_queryloaders)
if [ -z ${tmp_file} ]; then
ewarn Cannot create temporary file
return 1
fi

if gdk-pixbuf-query-loaders32  ${tmp_file}; then
cat ${tmp_file}  
${ROOT}usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders.cache
else
ewarn Warning, gdk-pixbuf-query-loaders32 failed.
fi
rm ${tmp_file}
}

my_pango_querymodules() {
PANGO_CONFDIR=/etc/pango/i686-pc-linux-gnu
einfo Generating pango modules listing...

mkdir -p ${PANGO_CONFDIR}
local pango_conf=${PANGO_CONFDIR}/pango.modules
local tmp_file=$(mktemp -t tmp.XXpango_querymodules)
if [ -z ${tmp_file} ]; then
ewarn Cannot create temporary file
return 1
fi

if pango-querymodules32  ${tmp_file}; then
cat ${tmp_file}  ${pango_conf}
else
ewarn 

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

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 13:37:33

  Added:remove-native-20140508-r1
  Log:
  Add multilib atk  gtk+. Also remove files for gtk-engines but do not pull 
them implicitly.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

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

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

Index: remove-native-20140508-r1
===
usr/lib32/libpixman-1.so
usr/lib32/libpixman-1.so.0
usr/lib32/libpixman-1.so.0.32.4
usr/lib32/pkgconfig/pixman-1.pc
usr/lib32/cairo/cairo-fdr.so
usr/lib32/cairo/cairo-fdr.so.0
usr/lib32/cairo/cairo-fdr.so.0.0.0
usr/lib32/cairo/cairo-sphinx.so
usr/lib32/cairo/cairo-sphinx.so.0
usr/lib32/cairo/cairo-sphinx.so.0.0.0
usr/lib32/cairo/libcairo-trace.so
usr/lib32/cairo/libcairo-trace.so.0
usr/lib32/cairo/libcairo-trace.so.0.0.0
usr/lib32/libcairo-gobject.so
usr/lib32/libcairo-gobject.so.2
usr/lib32/libcairo-gobject.so.2.11200.16
usr/lib32/libcairo-script-interpreter.so
usr/lib32/libcairo-script-interpreter.so.2
usr/lib32/libcairo-script-interpreter.so.2.11200.16
usr/lib32/libcairo.so
usr/lib32/libcairo.so.2
usr/lib32/libcairo.so.2.11200.16
usr/lib32/pkgconfig/cairo-egl.pc
usr/lib32/pkgconfig/cairo-fc.pc
usr/lib32/pkgconfig/cairo-ft.pc
usr/lib32/pkgconfig/cairo-gl.pc
usr/lib32/pkgconfig/cairo-glx.pc
usr/lib32/pkgconfig/cairo-gobject.pc
usr/lib32/pkgconfig/cairo-pdf.pc
usr/lib32/pkgconfig/cairo-png.pc
usr/lib32/pkgconfig/cairo-ps.pc
usr/lib32/pkgconfig/cairo-script.pc
usr/lib32/pkgconfig/cairo-svg.pc
usr/lib32/pkgconfig/cairo-tee.pc
usr/lib32/pkgconfig/cairo-xlib-xrender.pc
usr/lib32/pkgconfig/cairo-xlib.pc
usr/lib32/pkgconfig/cairo.pc
usr/bin/gdk-pixbuf-query-loaders32
usr/lib32/libgdk_pixbuf_xlib-2.0.so.0.3000.7
usr/lib32/libgdk_pixbuf-2.0.so
usr/lib32/libgdk_pixbuf_xlib-2.0.so
usr/lib32/pkgconfig/gdk-pixbuf-2.0.pc
usr/lib32/pkgconfig/gdk-pixbuf-xlib-2.0.pc
usr/lib32/libgdk_pixbuf-2.0.so.0.3000.7
usr/lib32/libgdk_pixbuf_xlib-2.0.so.0
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ras.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ani.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-icns.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xbm.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-pcx.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-pnm.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-jpeg.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-wbmp.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-tga.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ico.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-tiff.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-qtif.so
usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xpm.so
usr/lib32/libgdk_pixbuf-2.0.so.0
usr/bin/pango-querymodules32
usr/lib32/libpango-1.0.so
usr/lib32/libpango-1.0.so.0
usr/lib32/libpango-1.0.so.0.3600.3
usr/lib32/libpangocairo-1.0.so
usr/lib32/libpangocairo-1.0.so.0
usr/lib32/libpangocairo-1.0.so.0.3600.3
usr/lib32/libpangoft2-1.0.so
usr/lib32/libpangoft2-1.0.so.0
usr/lib32/libpangoft2-1.0.so.0.3600.3
usr/lib32/libpangox-1.0.so
usr/lib32/libpangox-1.0.so.0
usr/lib32/libpangox-1.0.so.0.0.0
usr/lib32/libpangoxft-1.0.so
usr/lib32/libpangoxft-1.0.so.0
usr/lib32/libpangoxft-1.0.so.0.3600.3
usr/lib32/pango/1.8.0/modules/pango-arabic-lang.so
usr/lib32/pango/1.8.0/modules/pango-indic-lang.so
usr/lib32/pango/1.8.0/modules/pango-basic-fc.so
usr/lib32/pkgconfig/pango.pc
usr/lib32/pkgconfig/pangocairo.pc
usr/lib32/pkgconfig/pangoft2.pc
usr/lib32/pkgconfig/pangox.pc
usr/lib32/pkgconfig/pangoxft.pc
usr/lib32/libgraphite2.so
usr/lib32/libgraphite2.so.3
usr/lib32/libgraphite2.so.3.0.1
usr/lib32/pkgconfig/graphite2.pc
usr/lib32/libharfbuzz-gobject.so
usr/lib32/libharfbuzz-gobject.so.0
usr/lib32/libharfbuzz-gobject.so.0.923.0
usr/lib32/libharfbuzz.so
usr/lib32/libharfbuzz.so.0
usr/lib32/libharfbuzz.so.0.923.0
usr/lib32/pkgconfig/harfbuzz-gobject.pc
usr/lib32/pkgconfig/harfbuzz.pc
usr/lib32/libImlib.so
usr/lib32/libImlib.so.1
usr/lib32/libImlib.so.1.9.15
usr/lib32/pkgconfig/imlib.pc
usr/lib32/libatk-1.0.so
usr/lib32/libatk-1.0.so.0
usr/lib32/libatk-1.0.so.0.21009.1
usr/lib32/pkgconfig/atk.pc
usr/lib32/gtk-2.0/2.10.0/printbackends/libprintbackend-file.so
usr/lib32/gtk-2.0/2.10.0/printbackends/libprintbackend-cups.so
usr/lib32/gtk-2.0/2.10.0/printbackends/libprintbackend-lpr.so

[gentoo-commits] gentoo-x86 commit in x11-themes/gtk-engines: gtk-engines-2.20.2-r1.ebuild ChangeLog

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 13:38:23

  Modified: ChangeLog
  Added:gtk-engines-2.20.2-r1.ebuild
  Log:
  Enable multilib support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.188x11-themes/gtk-engines/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines/ChangeLog?rev=1.188view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines/ChangeLog?rev=1.188content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines/ChangeLog?r1=1.187r2=1.188

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines/ChangeLog,v
retrieving revision 1.187
retrieving revision 1.188
diff -u -r1.187 -r1.188
--- ChangeLog   25 Feb 2013 21:09:20 -  1.187
+++ ChangeLog   14 May 2014 13:38:23 -  1.188
@@ -1,6 +1,11 @@
 # ChangeLog for x11-themes/gtk-engines
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines/ChangeLog,v 1.187 
2013/02/25 21:09:20 zmedico Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines/ChangeLog,v 1.188 
2014/05/14 13:38:23 mgorny Exp $
+
+*gtk-engines-2.20.2-r1 (14 May 2014)
+
+  14 May 2014; Michał Górny mgo...@gentoo.org +gtk-engines-2.20.2-r1.ebuild:
+  Enable multilib support.
 
   25 Feb 2013; Zac Medico zmed...@gentoo.org gtk-engines-2.20.2.ebuild:
   Add ~arm-linux keyword.



1.1  x11-themes/gtk-engines/gtk-engines-2.20.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines/gtk-engines-2.20.2-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines/gtk-engines-2.20.2-r1.ebuild?rev=1.1content-type=text/plain

Index: gtk-engines-2.20.2-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-themes/gtk-engines/gtk-engines-2.20.2-r1.ebuild,v 
1.1 2014/05/14 13:38:23 mgorny Exp $

EAPI=5
GCONF_DEBUG=no
GNOME_TARBALL_SUFFIX=bz2

inherit eutils gnome2 multilib-minimal

DESCRIPTION=GTK+2 standard engines and themes
HOMEPAGE=http://www.gtk.org/;

LICENSE=LGPL-2.1
SLOT=2
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~x86-macos ~x64-solaris ~x86-solaris
IUSE=accessibility lua

RDEPEND==x11-libs/gtk+-2.12:2[${MULTILIB_USEDEP}]
lua? ( dev-lang/lua )
abi_x86_32? (
!=app-emulation/emul-linux-x86-gtklibs-20140508
!app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
)
DEPEND=${RDEPEND}
=dev-util/intltool-0.31
virtual/pkgconfig[${MULTILIB_USEDEP}]

GNOME2_LA_PUNT=yes

src_prepare() {
# Patch from 2.21.x, fixes building with glib-2.32, bug #410455
epatch ${FILESDIR}/${P}-glib.h.patch
gnome2_src_prepare
}

multilib_src_configure() {
ECONF_SOURCE=${S} \
gnome2_src_configure \
--enable-animation \
$(multilib_native_use_enable lua) \
$(multilib_native_use_with lua system-lua) \
$(use_enable accessibility hc)
}

multilib_src_install() {
gnome2_src_install
}

multilib_src_install_all() {
local DOCS=( AUTHORS ChangeLog NEWS README )
einstalldocs
}






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

2014-05-14 Thread Justin Lecher (jlec)
jlec14/05/14 13:39:15

  Modified: ChangeLog
  Added:aufs-sources-3.10.40.ebuild
aufs-sources-3.14.4.ebuild
  Log:
  sys-kernel/aufs-sources: Bump to latest aufs3, genpatches and linux release
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.114sys-kernel/aufs-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog   13 May 2014 11:23:24 -  1.113
+++ ChangeLog   14 May 2014 13:39:15 -  1.114
@@ -1,6 +1,13 @@
 # ChangeLog for sys-kernel/aufs-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.113 
2014/05/13 11:23:24 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.114 
2014/05/14 13:39:15 jlec Exp $
+
+*aufs-sources-3.14.4 (14 May 2014)
+*aufs-sources-3.10.40 (14 May 2014)
+
+  14 May 2014; Justin Lecher j...@gentoo.org +aufs-sources-3.10.40.ebuild,
+  +aufs-sources-3.14.4.ebuild:
+  Bump to latest aufs3, genpatches and linux release
 
   13 May 2014; Justin Lecher j...@gentoo.org -aufs-sources-3.10.36.ebuild,
   -aufs-sources-3.10.37.ebuild, -aufs-sources-3.10.38.ebuild,



1.1  sys-kernel/aufs-sources/aufs-sources-3.10.40.ebuild

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

Index: aufs-sources-3.10.40.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.40.ebuild,v 
1.1 2014/05/14 13:39:15 jlec Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base extras experimental
K_GENPATCHES_VER=47
K_DEBLOB_AVAILABLE=1
UNIPATCH_STRICTORDER=1
inherit kernel-2 eutils
detect_version
detect_arch

AUFS_VERSION=3.10.x_p20140511
AUFS_TARBALL=aufs-sources-${AUFS_VERSION}.tar.xz
# git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone 
aufs${AUFS_VERSION/_p*}  aufs-sources-${AUFS_VERSION}.tar
AUFS_URI=http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL};

KEYWORDS=~amd64 ~x86
HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches 
http://aufs.sourceforge.net/;
IUSE=deblob experimental module vanilla

DESCRIPTION=Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support
SRC_URI=
${KERNEL_URI}
${ARCH_URI}
${AUFS_URI}
!vanilla? ( ${GENPATCHES_URI} )


PDEPEND==sys-fs/aufs-util-3.9

src_unpack() {
if use vanilla; then
unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT
ewarn You are using USE=vanilla
ewarn This will drop all support from the gentoo kernel 
security team
fi

UNIPATCH_LIST=
${WORKDIR}/aufs3-kbuild.patch
${WORKDIR}/aufs3-base.patch
${WORKDIR}/aufs3-mmap.patch

use module  UNIPATCH_LIST+= ${WORKDIR}/aufs3-standalone.patch

unpack ${AUFS_TARBALL}

einfo Using aufs3 version: ${AUFS_VERSION}

kernel-2_src_unpack
}

src_prepare() {
if ! use module; then
sed -e 's:tristate:bool:g' -i ${WORKDIR}/fs/aufs/Kconfig || 
die
fi
cp -f ${WORKDIR}/include/uapi/linux/aufs_type.h 
include/uapi/linux/aufs_type.h || die
cp -rf ${WORKDIR}/{Documentation,fs} . || die
}

pkg_postinst() {
kernel-2_pkg_postinst
einfo For more info on this patchset, and how to report problems, see:
einfo ${HOMEPAGE}
has_version sys-fs/aufs-util  \
einfo In order to use aufs FS you need to install 
sys-fs/aufs-util
}

pkg_postrm() {
kernel-2_pkg_postrm
}



1.1  sys-kernel/aufs-sources/aufs-sources-3.14.4.ebuild

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

Index: aufs-sources-3.14.4.ebuild

[gentoo-commits] gentoo-x86 commit in x11-themes/gtk-engines-murrine: gtk-engines-murrine-0.98.2-r1.ebuild ChangeLog

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 13:39:25

  Modified: ChangeLog
  Added:gtk-engines-murrine-0.98.2-r1.ebuild
  Log:
  Enable multilib support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.62 x11-themes/gtk-engines-murrine/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-murrine/ChangeLog?rev=1.62view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-murrine/ChangeLog?rev=1.62content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-murrine/ChangeLog?r1=1.61r2=1.62

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-murrine/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog   11 Mar 2014 20:09:51 -  1.61
+++ ChangeLog   14 May 2014 13:39:25 -  1.62
@@ -1,6 +1,12 @@
 # ChangeLog for x11-themes/gtk-engines-murrine
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-murrine/ChangeLog,v 
1.61 2014/03/11 20:09:51 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-murrine/ChangeLog,v 
1.62 2014/05/14 13:39:25 mgorny Exp $
+
+*gtk-engines-murrine-0.98.2-r1 (14 May 2014)
+
+  14 May 2014; Michał Górny mgo...@gentoo.org
+  +gtk-engines-murrine-0.98.2-r1.ebuild:
+  Enable multilib support.
 
   11 Mar 2014; Pacho Ramos pa...@gentoo.org
   -gtk-engines-murrine-0.90.3-r1.ebuild, -gtk-engines-murrine-0.98.1.1.ebuild,



1.1  
x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r1.ebuild?rev=1.1content-type=text/plain

Index: gtk-engines-murrine-0.98.2-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-themes/gtk-engines-murrine/gtk-engines-murrine-0.98.2-r1.ebuild,v
 1.1 2014/05/14 13:39:25 mgorny Exp $

EAPI=5
GNOME_ORG_MODULE=murrine

inherit gnome.org multilib-minimal

DESCRIPTION=Murrine GTK+2 Cairo Engine

HOMEPAGE=http://www.cimitan.com/murrine/;

LICENSE=LGPL-2.1 LGPL-3
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux
IUSE=+themes animation-rtl

RDEPEND==x11-libs/gtk+-2.18:2[${MULTILIB_USEDEP}]
dev-libs/glib:2[${MULTILIB_USEDEP}]
x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
x11-libs/cairo[${MULTILIB_USEDEP}]
x11-libs/pango[${MULTILIB_USEDEP}]
x11-libs/pixman[${MULTILIB_USEDEP}]
abi_x86_32? (
!=app-emulation/emul-linux-x86-gtklibs-20140508
!app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
)
PDEPEND=themes? ( x11-themes/murrine-themes )
DEPEND=${RDEPEND}
=dev-util/intltool-0.37.1
sys-devel/gettext
virtual/pkgconfig[${MULTILIB_USEDEP}]

DOCS=AUTHORS ChangeLog NEWS TODO

src_prepare() {
# Linking fix, in next release (commit 6e8eb244). Sed to avoid 
eautoreconf.
sed -e 's:\($(GTK_LIBS) $(pixman_LIBS)\)$:\1 -lm:' \
-i Makefile.* || die sed failed
}

multilib_src_configure() {
ECONF_SOURCE=${S} \
econf --enable-animation \
--enable-rgba \
$(use_enable animation-rtl animationrtl)
}

multilib_src_install_all() {
einstalldocs
prune_libtool_files --all
}






[gentoo-commits] gentoo-x86 commit in x11-themes/gtk-engines-xfce: gtk-engines-xfce-3.0.1-r201.ebuild ChangeLog

2014-05-14 Thread Michal Gorny (mgorny)
mgorny  14/05/14 13:39:27

  Modified: ChangeLog
  Added:gtk-engines-xfce-3.0.1-r201.ebuild
  Log:
  Enable multilib support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.165x11-themes/gtk-engines-xfce/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog?rev=1.165view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog?rev=1.165content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog?r1=1.164r2=1.165

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ChangeLog   28 Nov 2012 12:37:10 -  1.164
+++ ChangeLog   14 May 2014 13:39:26 -  1.165
@@ -1,6 +1,12 @@
 # ChangeLog for x11-themes/gtk-engines-xfce
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog,v 
1.164 2012/11/28 12:37:10 ssuominen Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog,v 
1.165 2014/05/14 13:39:26 mgorny Exp $
+
+*gtk-engines-xfce-3.0.1-r201 (14 May 2014)
+
+  14 May 2014; Michał Górny mgo...@gentoo.org
+  +gtk-engines-xfce-3.0.1-r201.ebuild:
+  Enable multilib support.
 
   28 Nov 2012; Samuli Suominen ssuomi...@gentoo.org
   gtk-engines-xfce-3.0.1-r200.ebuild, gtk-engines-xfce-3.0.1-r300.ebuild:



1.1  
x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.0.1-r201.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.0.1-r201.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.0.1-r201.ebuild?rev=1.1content-type=text/plain

Index: gtk-engines-xfce-3.0.1-r201.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.0.1-r201.ebuild,v
 1.1 2014/05/14 13:39:26 mgorny Exp $

EAPI=5
MY_PN=gtk-xfce-engine
inherit xfconf multilib-minimal

DESCRIPTION=A port of Xfce engine to GTK+ 2.x
HOMEPAGE=http://www.xfce.org/projects/;
SRC_URI=mirror://xfce/src/xfce/${MY_PN}/${PV%.*}/${MY_PN}-${PV}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
IUSE=debug

RDEPEND==dev-libs/glib-2.24[${MULTILIB_USEDEP}]
=x11-libs/gtk+-2.20:2[${MULTILIB_USEDEP}]
abi_x86_32? (
!=app-emulation/emul-linux-x86-gtklibs-20140508
!app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
)
DEPEND=${RDEPEND}
virtual/pkgconfig

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

pkg_setup() {
XFCONF=(
--disable-gtk3
$(xfconf_use_debug)
)

DOCS=( AUTHORS ChangeLog NEWS README )
}

multilib_src_configure() {
ECONF_SOURCE=${S} \
xfconf_src_configure
}

multilib_src_install_all() {
einstalldocs
prune_libtool_files --all
}






[gentoo-commits] proj/apache:master commit in: 2.4/init/

2014-05-14 Thread Lars Wendler
commit: c0d81cf2642f16a9b2e3137d491d708b3b2eb6ef
Author: Lars Wendler polynomial-c AT gentoo DOT org
AuthorDate: Wed May 14 13:55:37 2014 +
Commit: Lars Wendler polynomial-c AT gentoo DOT org
CommitDate: Wed May 14 13:55:37 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/apache.git;a=commit;h=c0d81cf2

Attempt to fix stop of apache with mod_perl (bug #503986)

---
 2.4/init/apache2.initd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/2.4/init/apache2.initd b/2.4/init/apache2.initd
index cf3936c..71d4e02 100755
--- a/2.4/init/apache2.initd
+++ b/2.4/init/apache2.initd
@@ -107,7 +107,7 @@ stop() {
${APACHE2} ${APACHE2_OPTS} -k stop
 
local i=0 retval=0
-   while ( test -f ${PIDFILE}  pgrep -P ${PID} apache2 /dev/null ) \
+   while ( test -f ${PIDFILE} || pgrep -P ${PID} apache2 /dev/null ) \
 [ $i -lt ${TIMEOUT} ]; do
sleep 1  i=$(expr $i + 1)
done



[gentoo-commits] proj/apache:master commit in: 2.2/init/

2014-05-14 Thread Lars Wendler
commit: 75da24d75d5fd2f10fc0c3dcfda5beb6c948fda1
Author: Lars Wendler polynomial-c AT gentoo DOT org
AuthorDate: Wed May 14 13:56:32 2014 +
Commit: Lars Wendler polynomial-c AT gentoo DOT org
CommitDate: Wed May 14 13:56:32 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/apache.git;a=commit;h=75da24d7

Attempt to fix stop of apache with mod_perl in apache-2.2 as well (bug #503986)

---
 2.2/init/apache2.initd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/2.2/init/apache2.initd b/2.2/init/apache2.initd
index e3bc921..2f19cc4 100755
--- a/2.2/init/apache2.initd
+++ b/2.2/init/apache2.initd
@@ -106,7 +106,7 @@ stop() {
${APACHE2} ${APACHE2_OPTS} -k stop
 
local i=0 retval=0
-   while ( test -f ${PIDFILE}  pgrep -P ${PID} apache2 /dev/null ) \
+   while ( test -f ${PIDFILE} || pgrep -P ${PID} apache2 /dev/null ) \
 [ $i -lt ${TIMEOUT} ]; do
sleep 1  i=$(expr $i + 1)
done



[gentoo-commits] gentoo-x86 commit in sci-chemistry/pymol: pymol-1.7.1.3.ebuild ChangeLog

2014-05-14 Thread Justin Lecher (jlec)
jlec14/05/14 14:02:19

  Modified: ChangeLog
  Added:pymol-1.7.1.3.ebuild
  Log:
  sci-chemistry/pymol: Version Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key B9D4F231BD1558AB!)

Revision  ChangesPath
1.113sci-chemistry/pymol/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/ChangeLog?rev=1.113view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/ChangeLog?rev=1.113content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/ChangeLog?r1=1.112r2=1.113

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog   1 May 2014 12:18:46 -   1.112
+++ ChangeLog   14 May 2014 14:02:17 -  1.113
@@ -1,6 +1,11 @@
 # ChangeLog for sci-chemistry/pymol
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/ChangeLog,v 1.112 
2014/05/01 12:18:46 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/ChangeLog,v 1.113 
2014/05/14 14:02:17 jlec Exp $
+
+*pymol-1.7.1.3 (14 May 2014)
+
+  14 May 2014; Justin Lecher j...@gentoo.org +pymol-1.7.1.3.ebuild:
+  Version Bump
 
   01 May 2014; Justin Lecher j...@gentoo.org pymol-1.5.0.3-r1.ebuild,
   pymol-1.5.0.3-r2.ebuild, pymol-1.6.0_rc1.ebuild, pymol-1.6.0.0.ebuild,



1.1  sci-chemistry/pymol/pymol-1.7.1.3.ebuild

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

Index: pymol-1.7.1.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/pymol-1.7.1.3.ebuild,v 
1.1 2014/05/14 14:02:17 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=tk

inherit distutils-r1 fdo-mime versionator

DESCRIPTION=A Python-extensible molecular graphics system
HOMEPAGE=http://www.pymol.org/;
SRC_URI=
http://dev.gentoo.org/~jlec/distfiles/${PN}-1.7.0.0.png.xz
http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz

#   mirror://sourceforge/project/${PN}/${PN}/$(get_version_component_range 
1-2)/${PN}-v${PV}.tar.bz2

LICENSE=PSF-2.2
SLOT=0
KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos
IUSE=apbs web

DEPEND=
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pmw[${PYTHON_USEDEP}]
dev-python/pyopengl[${PYTHON_USEDEP}]
media-libs/freetype:2
media-libs/glew
media-libs/libpng
media-video/mpeg-tools
sys-libs/zlib
media-libs/freeglut
apbs? (
sci-chemistry/apbs
sci-chemistry/pdb2pqr
sci-chemistry/pymol-apbs-plugin[${PYTHON_USEDEP}]
)
web? ( !dev-python/webpy[${PYTHON_USEDEP}] )
RDEPEND=${DEPEND}

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

python_prepare_all() {
sed \
-e s:\/usr:\${EPREFIX}/usr:g \
-e /ext_comp_args/s:=\[.*\]$:= \[\]:g \
-e /import/s:argparse:argparseX:g \
-i setup.py || die

rm ./modules/pmg_tk/startup/apbs_tools.py || die

sed \
-e s:/opt/local:${EPREFIX}/usr:g \
-e '/ext_comp_args/s:\[.*\]:[]:g' \
-i setup.py || die

distutils-r1_python_prepare_all
}

python_install() {
distutils-r1_python_install --pymol-path=${EPREFIX}/usr/share/pymol
}

python_install_all() {
distutils-r1_python_install_all

python_export python2_7 EPYTHON

# These environment variables should not go in the wrapper script, or 
else
# it will be impossible to use the PyMOL libraries from Python.
cat  ${T}/20pymol - EOF
PYMOL_PATH=$(python_get_sitedir)/${PN}
PYMOL_DATA=${EPREFIX}/usr/share/pymol/data
PYMOL_SCRIPTS=${EPREFIX}/usr/share/pymol/scripts
EOF

doenvd ${T}/20pymol

newicon ${WORKDIR}/${PN}-1.7.0.0.png ${PN}.png
make_desktop_entry pymol PyMol ${PN} 
Graphics;Education;Science;Chemistry MimeType=chemical/x-pdb;

if ! use web; then
rm -rf ${D}/$(python_get_sitedir)/web || die
fi

rm -f ${ED}/usr/share/${PN}/LICENSE || die
}

pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
}

pkg_postrm() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
}






[gentoo-commits] gentoo-x86 commit in x11-misc/calise: - New directory

2014-05-14 Thread Tom Wijsman (tomwij)
tomwij  14/05/14 14:14:44

  Log:
  Directory /var/cvsroot/gentoo-x86/x11-misc/calise added to the repository



[gentoo-commits] gentoo-x86 commit in x11-misc/calise: metadata.xml calise-0.4.2.ebuild ChangeLog

2014-05-14 Thread Tom Wijsman (tomwij)
tomwij  14/05/14 14:17:10

  Added:metadata.xml calise-0.4.2.ebuild ChangeLog
  Log:
  New ebuild for x11-misc/calise, computes ambient brightness and sets screen's 
correct backlight using a webcam; fixes bug #501088, contributed by Hello71 who 
will proxy maintain this package.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.1  x11-misc/calise/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/calise/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/calise/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
herdproxy-maintainers/herd
maintainer
emailalex_y...@yahoo.ca/email
nameAlex Xu/name
/maintainer
/pkgmetadata



1.1  x11-misc/calise/calise-0.4.2.ebuild

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

Index: calise-0.4.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/calise/calise-0.4.2.ebuild,v 1.1 
2014/05/14 14:17:10 tomwij Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )
inherit distutils-r1 linux-info systemd

DESCRIPTION=Computes ambient brightness and sets screen's correct backlight 
using a webcam
HOMEPAGE=http://calise.sourceforge.net/;
SRC_URI=http://sourceforge.net/projects/${PN}/files/${PN}-beta/${PV}/${P}.tar.gz;

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64
IUSE=

CDEPEND=${RDEPEND}
dev-python/pyxdg[${PYTHON_USEDEP}]
dev-python/dbus-python[${PYTHON_USEDEP}]
dev-python/pygobject[${PYTHON_USEDEP}]
sci-astronomy/pyephem[${PYTHON_USEDEP}]
x11-themes/hicolor-icon-theme
DEPEND=${CDEPEND}
dev-python/python-distutils-extra[${PYTHON_USEDEP}]
dev-util/intltool
sys-kernel/linux-headers
x11-libs/libX11
RDEPEND=${CDEPEND}

CONFIG_CHECK=~BACKLIGHT_CLASS_DEVICE

S=${WORKDIR}/${PN}

src_prepare() {
# Add missing trailing ; to desktop file.
sed -i 's/^\(Categories=Utility\)$/\1;/' \
share/applications/calise.desktop.in || die

# Fix up bashisms.
sed -i 's:/dev/null:2\1 /dev/null:' \
other/init_scripts/init.d/${PN}d || die
}

src_install() {
doconfd other/init_scripts/conf.d/${PN}d
doinitd other/init_scripts/init.d/${PN}d
systemd_dounit other/systemd_scripts/${PN}d.service

install -D -m755 other/pm-utils_scripts/53${PN}d 
${D}/usr/lib/pm-utils/sleep.d/53${PN}d

distutils-r1_src_install
}

pkg_postinst() {
einfo Optional runtime dependency: dev-python/PyQt4 for GUI
}



1.1  x11-misc/calise/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for x11-misc/calise
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/calise/ChangeLog,v 1.1 2014/05/14 
14:17:10 tomwij Exp $

*calise-0.4.2 (14 May 2014)

  14 May 2014; Tom Wijsman tom...@gentoo.org +calise-0.4.2.ebuild,
  +metadata.xml:
  New ebuild for x11-misc/calise, computes ambient brightness and sets screen's
  correct backlight using a webcam; fixes bug #501088, contributed by Hello71
  who will proxy maintain this package.






[gentoo-commits] gentoo-x86 commit in sys-fs/dosfstools: dosfstools-3.0.26.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:17:31

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

Revision  ChangesPath
1.10 sys-fs/dosfstools/dosfstools-3.0.26.ebuild

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

Index: dosfstools-3.0.26.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/dosfstools/dosfstools-3.0.26.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dosfstools-3.0.26.ebuild13 May 2014 14:39:51 -  1.9
+++ dosfstools-3.0.26.ebuild14 May 2014 14:17:31 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/dosfstools/dosfstools-3.0.26.ebuild,v 1.9 
2014/05/13 14:39:51 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/dosfstools/dosfstools-3.0.26.ebuild,v 1.10 
2014/05/14 14:17:31 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~arm-linux ~x86-linux
 RESTRICT=test # there is no test target #239071
 
 src_prepare() {



1.148sys-fs/dosfstools/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/dosfstools/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog   13 May 2014 14:39:51 -  1.147
+++ ChangeLog   14 May 2014 14:17:31 -  1.148
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/dosfstools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/dosfstools/ChangeLog,v 1.147 
2014/05/13 14:39:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/dosfstools/ChangeLog,v 1.148 
2014/05/14 14:17:31 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org dosfstools-3.0.26.ebuild:
+  Stable for sparc, wrt bug #506066
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org dosfstools-3.0.26.ebuild:
   Stable for ia64, wrt bug #506066






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

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:17:50

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

Revision  ChangesPath
1.10 dev-lang/php/php-5.3.28-r3.ebuild

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

Index: php-5.3.28-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.3.28-r3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- php-5.3.28-r3.ebuild13 May 2014 14:40:19 -  1.9
+++ php-5.3.28-r3.ebuild14 May 2014 14:17:50 -  1.10
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.3.28-r3.ebuild,v 1.9 
2014/05/13 14:40:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.3.28-r3.ebuild,v 1.10 
2014/05/14 14:17:50 ago Exp $
 
 EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd
+KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd
 
 function php_get_uri ()
 {



1.831dev-lang/php/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v
retrieving revision 1.830
retrieving revision 1.831
diff -u -r1.830 -r1.831
--- ChangeLog   13 May 2014 14:40:19 -  1.830
+++ ChangeLog   14 May 2014 14:17:50 -  1.831
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/php
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.830 2014/05/13 
14:40:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.831 2014/05/14 
14:17:50 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org php-5.3.28-r3.ebuild:
+  Stable for sparc, wrt bug #501376
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org php-5.3.28-r3.ebuild:
   Stable for ia64, wrt bug #501376






[gentoo-commits] gentoo-x86 commit in dev-libs/libpipeline: libpipeline-1.2.5.ebuild ChangeLog

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

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

Revision  ChangesPath
1.10 dev-libs/libpipeline/libpipeline-1.2.5.ebuild

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

Index: libpipeline-1.2.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/libpipeline/libpipeline-1.2.5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libpipeline-1.2.5.ebuild13 May 2014 14:40:50 -  1.9
+++ libpipeline-1.2.5.ebuild14 May 2014 14:18:28 -  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/libpipeline/libpipeline-1.2.5.ebuild,v 1.9 
2014/05/13 14:40:50 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libpipeline/libpipeline-1.2.5.ebuild,v 1.10 
2014/05/14 14:18:28 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux
+KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux
 IUSE=static-libs test
 
 DEPEND=virtual/pkgconfig



1.60 dev-libs/libpipeline/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libpipeline/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog   13 May 2014 14:40:50 -  1.59
+++ ChangeLog   14 May 2014 14:18:28 -  1.60
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libpipeline
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpipeline/ChangeLog,v 1.59 
2014/05/13 14:40:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpipeline/ChangeLog,v 1.60 
2014/05/14 14:18:28 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org libpipeline-1.2.5.ebuild:
+  Stable for sparc, wrt bug #502722
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org libpipeline-1.2.5.ebuild:
   Stable for ia64, wrt bug #502722






[gentoo-commits] gentoo-x86 commit in app-arch/unrar: unrar-5.0.14.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:19:13

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

Revision  ChangesPath
1.10 app-arch/unrar/unrar-5.0.14.ebuild

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

Index: unrar-5.0.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.0.14.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- unrar-5.0.14.ebuild 13 May 2014 14:41:41 -  1.9
+++ unrar-5.0.14.ebuild 14 May 2014 14:19:13 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.0.14.ebuild,v 1.9 
2014/05/13 14:41:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.0.14.ebuild,v 1.10 
2014/05/14 14:19:13 ago Exp $
 
 EAPI=5
 inherit eutils flag-o-matic multilib toolchain-funcs
@@ -13,7 +13,7 @@
 
 LICENSE=unRAR
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=
 
 RDEPEND=!=app-arch/unrar-gpl-0.0.1_p20080417



1.224app-arch/unrar/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.224view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.224content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?r1=1.223r2=1.224

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v
retrieving revision 1.223
retrieving revision 1.224
diff -u -r1.223 -r1.224
--- ChangeLog   13 May 2014 14:41:41 -  1.223
+++ ChangeLog   14 May 2014 14:19:13 -  1.224
@@ -1,6 +1,9 @@
 # ChangeLog for app-arch/unrar
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.223 2014/05/13 
14:41:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.224 2014/05/14 
14:19:13 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org unrar-5.0.14.ebuild:
+  Stable for sparc, wrt bug #505932
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org unrar-5.0.14.ebuild:
   Stable for ia64, wrt bug #505932






[gentoo-commits] gentoo-x86 commit in sys-apps/tcp-wrappers: tcp-wrappers-7.6.22-r1.ebuild ChangeLog

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

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

Revision  ChangesPath
1.14 sys-apps/tcp-wrappers/tcp-wrappers-7.6.22-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6.22-r1.ebuild?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6.22-r1.ebuild?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6.22-r1.ebuild?r1=1.13r2=1.14

Index: tcp-wrappers-7.6.22-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6.22-r1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- tcp-wrappers-7.6.22-r1.ebuild   13 May 2014 14:41:08 -  1.13
+++ tcp-wrappers-7.6.22-r1.ebuild   14 May 2014 14:18:53 -  1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6.22-r1.ebuild,v 
1.13 2014/05/13 14:41:08 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6.22-r1.ebuild,v 
1.14 2014/05/14 14:18:53 ago Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE=tcp_wrappers_license
 SLOT=0
-KEYWORDS=~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux
+KEYWORDS=~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux
 IUSE=ipv6 netgroups static-libs
 
 RDEPEND=



1.62 sys-apps/tcp-wrappers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tcp-wrappers/ChangeLog?rev=1.62view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tcp-wrappers/ChangeLog?rev=1.62content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tcp-wrappers/ChangeLog?r1=1.61r2=1.62

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog   13 May 2014 14:41:08 -  1.61
+++ ChangeLog   14 May 2014 14:18:53 -  1.62
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/tcp-wrappers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/ChangeLog,v 1.61 
2014/05/13 14:41:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/ChangeLog,v 1.62 
2014/05/14 14:18:53 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org 
tcp-wrappers-7.6.22-r1.ebuild:
+  Stable for sparc, wrt bug #502920
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org 
tcp-wrappers-7.6.22-r1.ebuild:
   Stable for ia64, wrt bug #502920






[gentoo-commits] gentoo-x86 commit in x11-misc/gxmessage: gxmessage-2.20.1.ebuild ChangeLog

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

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

Revision  ChangesPath
1.5  x11-misc/gxmessage/gxmessage-2.20.1.ebuild

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

Index: gxmessage-2.20.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/gxmessage/gxmessage-2.20.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gxmessage-2.20.1.ebuild 13 Apr 2014 16:29:23 -  1.4
+++ gxmessage-2.20.1.ebuild 14 May 2014 14:19: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/x11-misc/gxmessage/gxmessage-2.20.1.ebuild,v 1.4 
2014/04/13 16:29:23 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/gxmessage/gxmessage-2.20.1.ebuild,v 1.5 
2014/05/14 14:19:39 ago Exp $
 
 EAPI=5
 inherit gnome2-utils
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3 public-domain
 SLOT=0
-KEYWORDS=amd64 ppc ~sparc x86 ~x86-fbsd
+KEYWORDS=amd64 ppc sparc x86 ~x86-fbsd
 IUSE=
 
 RDEPEND==x11-libs/gtk+-2.20:2



1.45 x11-misc/gxmessage/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/gxmessage/ChangeLog?rev=1.45view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/gxmessage/ChangeLog?rev=1.45content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/gxmessage/ChangeLog?r1=1.44r2=1.45

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/gxmessage/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   4 May 2014 23:58:29 -   1.44
+++ ChangeLog   14 May 2014 14:19:39 -  1.45
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/gxmessage
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/gxmessage/ChangeLog,v 1.44 
2014/05/04 23:58:29 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/gxmessage/ChangeLog,v 1.45 
2014/05/14 14:19:39 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org gxmessage-2.20.1.ebuild:
+  Stable for sparc, wrt bug #505398
 
 *gxmessage-3.4.0 (04 May 2014)
 






[gentoo-commits] gentoo-x86 commit in app-emacs/lyskom-elisp-client: lyskom-elisp-client-0.48_p20131231.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:20:23

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

Revision  ChangesPath
1.5  
app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild?r1=1.4r2=1.5

Index: lyskom-elisp-client-0.48_p20131231.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- lyskom-elisp-client-0.48_p20131231.ebuild   5 Apr 2014 11:09:30 -   
1.4
+++ lyskom-elisp-client-0.48_p20131231.ebuild   14 May 2014 14:20:23 -  
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-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild,v
 1.4 2014/04/05 11:09:30 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild,v
 1.5 2014/05/14 14:20:23 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-2+
 SLOT=0
-KEYWORDS=amd64 ~sparc x86
+KEYWORDS=amd64 sparc x86
 IUSE=linguas_sv
 
 S=${WORKDIR}/${PN}



1.19 app-emacs/lyskom-elisp-client/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/lyskom-elisp-client/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/lyskom-elisp-client/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/lyskom-elisp-client/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/lyskom-elisp-client/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   5 Apr 2014 11:09:30 -   1.18
+++ ChangeLog   14 May 2014 14:20:23 -  1.19
@@ -1,6 +1,10 @@
 # ChangeLog for app-emacs/lyskom-elisp-client
 # Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/lyskom-elisp-client/ChangeLog,v 
1.18 2014/04/05 11:09:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/lyskom-elisp-client/ChangeLog,v 
1.19 2014/05/14 14:20:23 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org
+  lyskom-elisp-client-0.48_p20131231.ebuild:
+  Stable for sparc, wrt bug #505206
 
   05 Apr 2014; Agostino Sarubbo a...@gentoo.org
   lyskom-elisp-client-0.48_p20131231.ebuild:






[gentoo-commits] gentoo-x86 commit in app-portage/layman: layman-2.0.0-r3.ebuild ChangeLog

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

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

Revision  ChangesPath
1.9  app-portage/layman/layman-2.0.0-r3.ebuild

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

Index: layman-2.0.0-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-portage/layman/layman-2.0.0-r3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- layman-2.0.0-r3.ebuild  13 May 2014 14:41:56 -  1.8
+++ layman-2.0.0-r3.ebuild  14 May 2014 14:19: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/app-portage/layman/layman-2.0.0-r3.ebuild,v 
1.8 2014/05/13 14:41:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/layman-2.0.0-r3.ebuild,v 
1.9 2014/05/14 14:19:54 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris
 IUSE=bazaar cvs darcs +git mercurial subversion test
 
 DEPEND=test? ( dev-vcs/subversion )



1.195app-portage/layman/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/layman/ChangeLog?rev=1.195view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/layman/ChangeLog?rev=1.195content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/layman/ChangeLog?r1=1.194r2=1.195

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-portage/layman/ChangeLog,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -r1.194 -r1.195
--- ChangeLog   13 May 2014 14:41:56 -  1.194
+++ ChangeLog   14 May 2014 14:19:54 -  1.195
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/layman
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/ChangeLog,v 1.194 
2014/05/13 14:41:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/ChangeLog,v 1.195 
2014/05/14 14:19:54 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org layman-2.0.0-r3.ebuild:
+  Stable for sparc, wrt bug #508882
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org layman-2.0.0-r3.ebuild:
   Stable for ia64, wrt bug #508882






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

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:20:08

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

Revision  ChangesPath
1.9  app-emacs/po-mode/po-mode-0.18.3.2.ebuild

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

Index: po-mode-0.18.3.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/po-mode/po-mode-0.18.3.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- po-mode-0.18.3.2.ebuild 13 May 2014 14:42:08 -  1.8
+++ po-mode-0.18.3.2.ebuild 14 May 2014 14:20:08 -  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-emacs/po-mode/po-mode-0.18.3.2.ebuild,v 
1.8 2014/05/13 14:42:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/po-mode/po-mode-0.18.3.2.ebuild,v 
1.9 2014/05/14 14:20:08 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3+
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=~alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
 
 S=${WORKDIR}/gettext-${PV}/gettext-tools/misc
 ELISP_REMOVE=start-po.el



1.45 app-emacs/po-mode/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/po-mode/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   13 May 2014 14:42:08 -  1.44
+++ ChangeLog   14 May 2014 14:20:08 -  1.45
@@ -1,6 +1,9 @@
 # ChangeLog for app-emacs/po-mode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/po-mode/ChangeLog,v 1.44 
2014/05/13 14:42:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/po-mode/ChangeLog,v 1.45 
2014/05/14 14:20:08 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org po-mode-0.18.3.2.ebuild:
+  Stable for sparc, wrt bug #504558
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org po-mode-0.18.3.2.ebuild:
   Stable for ia64, wrt bug #504558






[gentoo-commits] gentoo-x86 commit in app-emacs/circe: circe-1.3.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:20:43

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

Revision  ChangesPath
1.4  app-emacs/circe/circe-1.3.ebuild

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

Index: circe-1.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/circe/circe-1.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- circe-1.3.ebuild24 Mar 2014 14:57:15 -  1.3
+++ circe-1.3.ebuild14 May 2014 14:20: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/app-emacs/circe/circe-1.3.ebuild,v 1.3 
2014/03/24 14:57:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/circe/circe-1.3.ebuild,v 1.4 
2014/05/14 14:20:42 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-3+
 SLOT=0
-KEYWORDS=amd64 ~ppc ~sparc x86
+KEYWORDS=amd64 ~ppc sparc x86
 
 S=${WORKDIR}/${PN}-${P}/lisp
 SITEFILE=50${PN}-gentoo-${PV}.el



1.8  app-emacs/circe/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/circe/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   24 Mar 2014 14:57:15 -  1.7
+++ ChangeLog   14 May 2014 14:20:43 -  1.8
@@ -1,6 +1,9 @@
 # ChangeLog for app-emacs/circe
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/circe/ChangeLog,v 1.7 2014/03/24 
14:57:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/circe/ChangeLog,v 1.8 2014/05/14 
14:20:43 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org circe-1.3.ebuild:
+  Stable for sparc, wrt bug #505450
 
   24 Mar 2014; Agostino Sarubbo a...@gentoo.org circe-1.3.ebuild:
   Stable for x86, wrt bug #505450






[gentoo-commits] gentoo-x86 commit in app-emacs/emacs-jabber: emacs-jabber-0.8.92.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:21:19

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

Revision  ChangesPath
1.5  app-emacs/emacs-jabber/emacs-jabber-0.8.92.ebuild

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

Index: emacs-jabber-0.8.92.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emacs/emacs-jabber/emacs-jabber-0.8.92.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- emacs-jabber-0.8.92.ebuild  13 Apr 2014 16:29:59 -  1.4
+++ emacs-jabber-0.8.92.ebuild  14 May 2014 14:21:19 -  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-emacs/emacs-jabber/emacs-jabber-0.8.92.ebuild,v 1.4 
2014/04/13 16:29:59 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emacs/emacs-jabber/emacs-jabber-0.8.92.ebuild,v 1.5 
2014/05/14 14:21:19 ago Exp $
 
 EAPI=5
 NEED_EMACS=22
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2+
 SLOT=0
-KEYWORDS=amd64 ppc x86
+KEYWORDS=amd64 ppc sparc x86
 
 DEPEND=app-emacs/hexrgb
 RDEPEND=${DEPEND}



1.30 app-emacs/emacs-jabber/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/emacs-jabber/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   13 Apr 2014 16:29:59 -  1.29
+++ ChangeLog   14 May 2014 14:21:19 -  1.30
@@ -1,6 +1,9 @@
 # ChangeLog for app-emacs/emacs-jabber
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-jabber/ChangeLog,v 1.29 
2014/04/13 16:29:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-jabber/ChangeLog,v 1.30 
2014/05/14 14:21:19 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org emacs-jabber-0.8.92.ebuild:
+  Stable for sparc, wrt bug #505526
 
   13 Apr 2014; Agostino Sarubbo a...@gentoo.org emacs-jabber-0.8.92.ebuild:
   Stable for ppc, wrt bug #505526






[gentoo-commits] gentoo-x86 commit in app-emacs/hexrgb: hexrgb-0_p957.ebuild ChangeLog

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

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

Revision  ChangesPath
1.5  app-emacs/hexrgb/hexrgb-0_p957.ebuild

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

Index: hexrgb-0_p957.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/hexrgb/hexrgb-0_p957.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- hexrgb-0_p957.ebuild13 Apr 2014 16:29:53 -  1.4
+++ hexrgb-0_p957.ebuild14 May 2014 14:21:15 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/hexrgb/hexrgb-0_p957.ebuild,v 1.4 
2014/04/13 16:29:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/hexrgb/hexrgb-0_p957.ebuild,v 1.5 
2014/05/14 14:21:15 ago Exp $
 
 EAPI=5
 
@@ -12,6 +12,6 @@
 
 LICENSE=GPL-2+
 SLOT=0
-KEYWORDS=amd64 ppc x86
+KEYWORDS=amd64 ppc sparc x86
 
 SITEFILE=50${PN}-gentoo.el



1.5  app-emacs/hexrgb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/hexrgb/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   13 Apr 2014 16:29:53 -  1.4
+++ ChangeLog   14 May 2014 14:21:15 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for app-emacs/hexrgb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/hexrgb/ChangeLog,v 1.4 2014/04/13 
16:29:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/hexrgb/ChangeLog,v 1.5 2014/05/14 
14:21:15 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org hexrgb-0_p957.ebuild:
+  Stable for sparc, wrt bug #505526
 
   13 Apr 2014; Agostino Sarubbo a...@gentoo.org hexrgb-0_p957.ebuild:
   Stable for ppc, wrt bug #505526






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

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

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

Revision  ChangesPath
1.10 app-admin/eselect/eselect-1.4.1.ebuild

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

Index: eselect-1.4.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-1.4.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- eselect-1.4.1.ebuild13 May 2014 14:42:24 -  1.9
+++ eselect-1.4.1.ebuild14 May 2014 14:21:39 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-1.4.1.ebuild,v 
1.9 2014/05/13 14:42:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-1.4.1.ebuild,v 
1.10 2014/05/14 14:21:39 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2+ || ( GPL-2+ CC-BY-SA-2.5 )
 SLOT=0
-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
+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
 IUSE=doc emacs vim-syntax
 
 RDEPEND=sys-apps/sed



1.280app-admin/eselect/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v
retrieving revision 1.279
retrieving revision 1.280
diff -u -r1.279 -r1.280
--- ChangeLog   13 May 2014 14:42:24 -  1.279
+++ ChangeLog   14 May 2014 14:21:39 -  1.280
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/eselect
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v 1.279 
2014/05/13 14:42:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v 1.280 
2014/05/14 14:21:39 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org eselect-1.4.1.ebuild:
+  Stable for sparc, wrt bug #506152
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org eselect-1.4.1.ebuild:
   Stable for ia64, wrt bug #506152






[gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.6.1-r2.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:23:06

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

Revision  ChangesPath
1.9  net-irc/hexchat/hexchat-2.9.6.1-r2.ebuild

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

Index: hexchat-2.9.6.1-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.6.1-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- hexchat-2.9.6.1-r2.ebuild   13 May 2014 14:42:52 -  1.8
+++ hexchat-2.9.6.1-r2.ebuild   14 May 2014 14:23:06 -  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/net-irc/hexchat/hexchat-2.9.6.1-r2.ebuild,v 
1.8 2014/05/13 14:42:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.6.1-r2.ebuild,v 
1.9 2014/05/14 14:23:06 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux
+KEYWORDS=~alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux
 IUSE=dbus fastscroll +gtk gtkspell ipv6 libcanberra libnotify libproxy nls 
ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo 
python sexy spell ssl theme-manager
 REQUIRED_USE=gtkspell? ( spell )
plugin-checksum? ( plugins )



1.97 net-irc/hexchat/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.97view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.97content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.96r2=1.97

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog   13 May 2014 14:42:52 -  1.96
+++ ChangeLog   14 May 2014 14:23:06 -  1.97
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.96 2014/05/13 
14:42:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.97 2014/05/14 
14:23:06 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org hexchat-2.9.6.1-r2.ebuild:
+  Stable for sparc, wrt bug #499844
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org hexchat-2.9.6.1-r2.ebuild:
   Stable for ia64, wrt bug #499844






[gentoo-commits] gentoo-x86 commit in sys-apps/pv: pv-1.5.2.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:23:21

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

Revision  ChangesPath
1.8  sys-apps/pv/pv-1.5.2.ebuild

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

Index: pv-1.5.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pv/pv-1.5.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pv-1.5.2.ebuild 20 Apr 2014 11:19:25 -  1.7
+++ pv-1.5.2.ebuild 14 May 2014 14:23:20 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/pv-1.5.2.ebuild,v 1.7 
2014/04/20 11:19:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/pv-1.5.2.ebuild,v 1.8 
2014/05/14 14:23:20 ago Exp $
 
 EAPI=5
 inherit toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE=Artistic-2
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ~mips ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 arm hppa ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x86-solaris
 IUSE=debug nls
 
 PV_LINGUAS=( de fr pl pt )



1.87 sys-apps/pv/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   6 May 2014 02:50:49 -   1.86
+++ ChangeLog   14 May 2014 14:23:20 -  1.87
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/pv
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.86 2014/05/06 
02:50:49 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.87 2014/05/14 
14:23:20 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org pv-1.5.2.ebuild:
+  Stable for sparc, wrt bug #504508
 
 *pv-1.5.3 (06 May 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-python/python-sqlparse: python-sqlparse-0.1.10.ebuild ChangeLog

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

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

Revision  ChangesPath
1.8  dev-python/python-sqlparse/python-sqlparse-0.1.10.ebuild

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

Index: python-sqlparse-0.1.10.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/python-sqlparse/python-sqlparse-0.1.10.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- python-sqlparse-0.1.10.ebuild   13 May 2014 14:43:06 -  1.7
+++ python-sqlparse-0.1.10.ebuild   14 May 2014 14:23:36 -  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-python/python-sqlparse/python-sqlparse-0.1.10.ebuild,v
 1.7 2014/05/13 14:43:06 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/python-sqlparse/python-sqlparse-0.1.10.ebuild,v
 1.8 2014/05/14 14:23:36 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 SRC_URI=https://github.com/andialbrecht/sqlparse/archive/${PV}.tar.gz - 
${P}.tar.gz
 
 SLOT=0
-KEYWORDS=~alpha amd64 arm ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux
+KEYWORDS=~alpha amd64 arm ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux
 LICENSE=BSD-2
 IUSE=test
 



1.29 dev-python/python-sqlparse/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   13 May 2014 14:43:06 -  1.28
+++ ChangeLog   14 May 2014 14:23:36 -  1.29
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/python-sqlparse
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/ChangeLog,v 1.28 
2014/05/13 14:43:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/ChangeLog,v 1.29 
2014/05/14 14:23:36 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org 
python-sqlparse-0.1.10.ebuild:
+  Stable for sparc, wrt bug #502796
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org 
python-sqlparse-0.1.10.ebuild:
   Stable for ia64, wrt bug #502796






[gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20140219.ebuild ChangeLog

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

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

Revision  ChangesPath
1.10 dev-util/dialog/dialog-1.2.20140219.ebuild

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

Index: dialog-1.2.20140219.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20140219.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dialog-1.2.20140219.ebuild  13 May 2014 14:43:40 -  1.9
+++ dialog-1.2.20140219.ebuild  14 May 2014 14:24:11 -  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-util/dialog/dialog-1.2.20140219.ebuild,v 1.9 
2014/05/13 14:43:40 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20140219.ebuild,v 1.10 
2014/05/14 14:24:11 ago Exp $
 
 EAPI=5
 inherit eutils multilib versionator
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd
+KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd
 IUSE=examples minimal nls static-libs unicode
 
 RDEPEND=



1.209dev-util/dialog/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog   13 May 2014 14:43:40 -  1.208
+++ ChangeLog   14 May 2014 14:24:11 -  1.209
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.208 
2014/05/13 14:43:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.209 
2014/05/14 14:24:11 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org dialog-1.2.20140219.ebuild:
+  Stable for sparc, wrt bug #506096
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org dialog-1.2.20140219.ebuild:
   Stable for ia64, wrt bug #506096






[gentoo-commits] gentoo-x86 commit in dev-libs/libical: libical-0.48-r2.ebuild ChangeLog

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

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

Revision  ChangesPath
1.9  dev-libs/libical/libical-0.48-r2.ebuild

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

Index: libical-0.48-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libical/libical-0.48-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libical-0.48-r2.ebuild  13 May 2014 14:50:46 -  1.8
+++ libical-0.48-r2.ebuild  14 May 2014 14:24:25 -  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/libical/libical-0.48-r2.ebuild,v 
1.8 2014/05/13 14:50:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/libical-0.48-r2.ebuild,v 
1.9 2014/05/14 14:24:25 ago Exp $
 
 EAPI=5
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE=|| ( MPL-1.1 LGPL-2 )
 SLOT=0/0
-KEYWORDS=~alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris
+KEYWORDS=~alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
 IUSE=examples static-libs
 
 # 
https://sourceforge.net/tracker2/index.php?func=detailaid=2196790group_id=16077atid=116077



1.84 dev-libs/libical/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog   13 May 2014 14:50:46 -  1.83
+++ ChangeLog   14 May 2014 14:24:25 -  1.84
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libical
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.83 
2014/05/13 14:50:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.84 
2014/05/14 14:24:25 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org libical-0.48-r2.ebuild:
+  Stable for sparc, wrt bug #509684
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org libical-0.48-r2.ebuild:
   Stable for ia64, wrt bug #509684






[gentoo-commits] gentoo-x86 commit in media-video/transcode: transcode-1.1.7-r3.ebuild ChangeLog

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

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

Revision  ChangesPath
1.6  media-video/transcode/transcode-1.1.7-r3.ebuild

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

Index: transcode-1.1.7-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.1.7-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- transcode-1.1.7-r3.ebuild   11 May 2014 08:22:24 -  1.5
+++ transcode-1.1.7-r3.ebuild   14 May 2014 14:25:11 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.1.7-r3.ebuild,v 1.5 
2014/05/11 08:22:24 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.1.7-r3.ebuild,v 1.6 
2014/05/14 14:25:11 ago Exp $
 
 EAPI=5
 inherit eutils libtool multilib
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~ppc ppc64 ~sparc x86
+KEYWORDS=~alpha amd64 ~ppc ppc64 sparc x86
 IUSE=3dnow a52 aac alsa altivec dv dvd +iconv imagemagick jpeg lzo mjpeg mmx 
mp3 mpeg nuv ogg oss pic postproc quicktime sdl sse sse2 theora truetype v4l 
vorbis X x264 xml xvid
 
 RDEPEND=



1.319media-video/transcode/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/transcode/ChangeLog?rev=1.319view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/transcode/ChangeLog?rev=1.319content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/transcode/ChangeLog?r1=1.318r2=1.319

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v
retrieving revision 1.318
retrieving revision 1.319
diff -u -r1.318 -r1.319
--- ChangeLog   11 May 2014 08:22:24 -  1.318
+++ ChangeLog   14 May 2014 14:25:11 -  1.319
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/transcode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.318 
2014/05/11 08:22:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.319 
2014/05/14 14:25:11 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org transcode-1.1.7-r3.ebuild:
+  Stable for sparc, wrt bug #504790
 
   11 May 2014; Agostino Sarubbo a...@gentoo.org transcode-1.1.7-r3.ebuild:
   Stable for ppc64, wrt bug #504790






[gentoo-commits] gentoo-x86 commit in media-libs/libdvdnav: libdvdnav-4.2.1.ebuild ChangeLog

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

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

Revision  ChangesPath
1.9  media-libs/libdvdnav/libdvdnav-4.2.1.ebuild

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

Index: libdvdnav-4.2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libdvdnav/libdvdnav-4.2.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libdvdnav-4.2.1.ebuild  13 May 2014 14:51:13 -  1.8
+++ libdvdnav-4.2.1.ebuild  14 May 2014 14:24: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/media-libs/libdvdnav/libdvdnav-4.2.1.ebuild,v 1.8 
2014/05/13 14:51:13 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libdvdnav/libdvdnav-4.2.1.ebuild,v 1.9 
2014/05/14 14:24:54 ago Exp $
 
 EAPI=5
 
@@ -26,9 +26,9 @@
 LICENSE=GPL-2
 SLOT=0
 if [ ${PV#} = ${PV} ] ; then
-   KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris
+   KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris
 else
-   KEYWORDS=amd64 hppa ia64 ppc ppc64 x86
+   KEYWORDS=amd64 hppa ia64 ppc ppc64 sparc x86
 fi
 IUSE=
 RDEPEND==media-libs/libdvdread-4.2[${MULTILIB_USEDEP}]



1.80 media-libs/libdvdnav/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libdvdnav/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog   13 May 2014 14:51:13 -  1.79
+++ ChangeLog   14 May 2014 14:24:54 -  1.80
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libdvdnav
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdnav/ChangeLog,v 1.79 
2014/05/13 14:51:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdnav/ChangeLog,v 1.80 
2014/05/14 14:24:54 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org libdvdnav-4.2.1.ebuild:
+  Stable for sparc, wrt bug #502838
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org libdvdnav-4.2.1.ebuild:
   Stable for ia64, wrt bug #502838






[gentoo-commits] gentoo-x86 commit in app-admin/syslog-ng: syslog-ng-3.4.7.ebuild ChangeLog

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

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

Revision  ChangesPath
1.10 app-admin/syslog-ng/syslog-ng-3.4.7.ebuild

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

Index: syslog-ng-3.4.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/syslog-ng-3.4.7.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- syslog-ng-3.4.7.ebuild  13 May 2014 14:43:54 -  1.9
+++ syslog-ng-3.4.7.ebuild  14 May 2014 14:25:25 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-admin/syslog-ng/syslog-ng-3.4.7.ebuild,v 1.9 
2014/05/13 14:43:54 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-admin/syslog-ng/syslog-ng-3.4.7.ebuild,v 1.10 
2014/05/14 14:25:25 ago Exp $
 
 EAPI=5
 inherit eutils multilib systemd
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2+ LGPL-2.1+
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd
+KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd
 IUSE=caps dbi geoip ipv6 json mongodb +pcre smtp spoof-source ssl systemd 
tcpd
 RESTRICT=test
 



1.385app-admin/syslog-ng/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-ng/ChangeLog?rev=1.385view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-ng/ChangeLog?rev=1.385content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-ng/ChangeLog?r1=1.384r2=1.385

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/ChangeLog,v
retrieving revision 1.384
retrieving revision 1.385
diff -u -r1.384 -r1.385
--- ChangeLog   13 May 2014 14:43:54 -  1.384
+++ ChangeLog   14 May 2014 14:25:25 -  1.385
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/syslog-ng
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/ChangeLog,v 1.384 
2014/05/13 14:43:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/ChangeLog,v 1.385 
2014/05/14 14:25:25 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org syslog-ng-3.4.7.ebuild:
+  Stable for sparc, wrt bug #504348
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org syslog-ng-3.4.7.ebuild:
   Stable for ia64, wrt bug #504348






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-Numbers_Words: PEAR-Numbers_Words-0.16.4.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:26:41

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

Revision  ChangesPath
1.8  dev-php/PEAR-Numbers_Words/PEAR-Numbers_Words-0.16.4.ebuild

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

Index: PEAR-Numbers_Words-0.16.4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Numbers_Words/PEAR-Numbers_Words-0.16.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- PEAR-Numbers_Words-0.16.4.ebuild13 May 2014 14:44:51 -  1.7
+++ PEAR-Numbers_Words-0.16.4.ebuild14 May 2014 14:26:40 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Numbers_Words/PEAR-Numbers_Words-0.16.4.ebuild,v
 1.7 2014/05/13 14:44:51 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Numbers_Words/PEAR-Numbers_Words-0.16.4.ebuild,v
 1.8 2014/05/14 14:26:40 ago Exp $
 
 inherit php-pear-r1
 
@@ -8,5 +8,5 @@
 
 LICENSE=PHP-3.01
 SLOT=0
-KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 ~sparc x86
+KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 sparc x86
 IUSE=



1.42 dev-php/PEAR-Numbers_Words/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Numbers_Words/ChangeLog?rev=1.42view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Numbers_Words/ChangeLog?rev=1.42content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Numbers_Words/ChangeLog?r1=1.41r2=1.42

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-Numbers_Words/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog   13 May 2014 14:44:51 -  1.41
+++ ChangeLog   14 May 2014 14:26:40 -  1.42
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php/PEAR-Numbers_Words
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Numbers_Words/ChangeLog,v 1.41 
2014/05/13 14:44:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Numbers_Words/ChangeLog,v 1.42 
2014/05/14 14:26:40 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org
+  PEAR-Numbers_Words-0.16.4.ebuild:
+  Stable for sparc, wrt bug #502762
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org
   PEAR-Numbers_Words-0.16.4.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-HTML_Template_IT: PEAR-HTML_Template_IT-1.3.0.ebuild ChangeLog

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

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

Revision  ChangesPath
1.8  
dev-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0.ebuild

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

Index: PEAR-HTML_Template_IT-1.3.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- PEAR-HTML_Template_IT-1.3.0.ebuild  13 May 2014 14:44:18 -  1.7
+++ PEAR-HTML_Template_IT-1.3.0.ebuild  14 May 2014 14:25:38 -  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-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0.ebuild,v
 1.7 2014/05/13 14:44:18 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Template_IT/PEAR-HTML_Template_IT-1.3.0.ebuild,v
 1.8 2014/05/14 14:25:38 ago Exp $
 
 EAPI=5
 
@@ -9,5 +9,5 @@
 DESCRIPTION=Integrated Templates
 LICENSE=BSD
 SLOT=0
-KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 ~sparc x86
+KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 sparc x86
 IUSE=



1.49 dev-php/PEAR-HTML_Template_IT/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-HTML_Template_IT/ChangeLog?rev=1.49view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-HTML_Template_IT/ChangeLog?rev=1.49content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-HTML_Template_IT/ChangeLog?r1=1.48r2=1.49

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Template_IT/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog   13 May 2014 14:44:18 -  1.48
+++ ChangeLog   14 May 2014 14:25:38 -  1.49
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php/PEAR-HTML_Template_IT
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Template_IT/ChangeLog,v 
1.48 2014/05/13 14:44:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Template_IT/ChangeLog,v 
1.49 2014/05/14 14:25:38 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org
+  PEAR-HTML_Template_IT-1.3.0.ebuild:
+  Stable for sparc, wrt bug #502754
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org
   PEAR-HTML_Template_IT-1.3.0.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-Net_LDAP2: PEAR-Net_LDAP2-2.1.0.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:25:59

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

Revision  ChangesPath
1.6  dev-php/PEAR-Net_LDAP2/PEAR-Net_LDAP2-2.1.0.ebuild

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

Index: PEAR-Net_LDAP2-2.1.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP2/PEAR-Net_LDAP2-2.1.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- PEAR-Net_LDAP2-2.1.0.ebuild 10 May 2014 13:44:02 -  1.5
+++ PEAR-Net_LDAP2-2.1.0.ebuild 14 May 2014 14:25:58 -  1.6
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP2/PEAR-Net_LDAP2-2.1.0.ebuild,v 
1.5 2014/05/10 13:44:02 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP2/PEAR-Net_LDAP2-2.1.0.ebuild,v 
1.6 2014/05/14 14:25:58 ago Exp $
 
 EAPI=5
 
 inherit php-pear-r1
 
-KEYWORDS=~alpha amd64 hppa ppc ~sparc x86
+KEYWORDS=~alpha amd64 hppa ppc sparc x86
 
 DESCRIPTION=OO interface for searching and manipulating LDAP-entries
 LICENSE=LGPL-2.1



1.19 dev-php/PEAR-Net_LDAP2/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP2/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   10 May 2014 13:44:02 -  1.18
+++ ChangeLog   14 May 2014 14:25:58 -  1.19
@@ -1,6 +1,9 @@
 # ChangeLog for dev-php/PEAR-Net_LDAP2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP2/ChangeLog,v 1.18 
2014/05/10 13:44:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP2/ChangeLog,v 1.19 
2014/05/14 14:25:58 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org PEAR-Net_LDAP2-2.1.0.ebuild:
+  Stable for sparc, wrt bug #502756
 
   10 May 2014; Agostino Sarubbo a...@gentoo.org PEAR-Net_LDAP2-2.1.0.ebuild:
   Stable for ppc, wrt bug #502756






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-Net_URL2: PEAR-Net_URL2-2.0.5.ebuild ChangeLog

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

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

Revision  ChangesPath
1.6  dev-php/PEAR-Net_URL2/PEAR-Net_URL2-2.0.5.ebuild

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

Index: PEAR-Net_URL2-2.0.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Net_URL2/PEAR-Net_URL2-2.0.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- PEAR-Net_URL2-2.0.5.ebuild  13 May 2014 14:44:34 -  1.5
+++ PEAR-Net_URL2-2.0.5.ebuild  14 May 2014 14:26: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/dev-php/PEAR-Net_URL2/PEAR-Net_URL2-2.0.5.ebuild,v 1.5 
2014/05/13 14:44:34 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Net_URL2/PEAR-Net_URL2-2.0.5.ebuild,v 1.6 
2014/05/14 14:26:17 ago Exp $
 
 EAPI=5
 
@@ -9,5 +9,5 @@
 DESCRIPTION=Easy parsing of URLs (PHP5 port of PEAR-Net_URL package).
 LICENSE=BSD
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm hppa ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86
+KEYWORDS=~alpha amd64 ~arm hppa ia64 ~ppc ~ppc64 ~s390 ~sh sparc x86
 IUSE=



1.20 dev-php/PEAR-Net_URL2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Net_URL2/ChangeLog?rev=1.20view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Net_URL2/ChangeLog?rev=1.20content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Net_URL2/ChangeLog?r1=1.19r2=1.20

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_URL2/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   13 May 2014 14:44:34 -  1.19
+++ ChangeLog   14 May 2014 14:26:17 -  1.20
@@ -1,6 +1,9 @@
 # ChangeLog for dev-php/PEAR-Net_URL2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_URL2/ChangeLog,v 1.19 
2014/05/13 14:44:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_URL2/ChangeLog,v 1.20 
2014/05/14 14:26:17 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org PEAR-Net_URL2-2.0.5.ebuild:
+  Stable for sparc, wrt bug #502760
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org PEAR-Net_URL2-2.0.5.ebuild:
   Stable for ia64, wrt bug #502760






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-Validate: PEAR-Validate-0.8.5.ebuild ChangeLog

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

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

Revision  ChangesPath
1.8  dev-php/PEAR-Validate/PEAR-Validate-0.8.5.ebuild

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

Index: PEAR-Validate-0.8.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Validate/PEAR-Validate-0.8.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- PEAR-Validate-0.8.5.ebuild  13 May 2014 14:45:08 -  1.7
+++ PEAR-Validate-0.8.5.ebuild  14 May 2014 14:27:01 -  1.8
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Validate/PEAR-Validate-0.8.5.ebuild,v 1.7 
2014/05/13 14:45:08 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Validate/PEAR-Validate-0.8.5.ebuild,v 1.8 
2014/05/14 14:27:01 ago Exp $
 
 EAPI=5
 
 inherit php-pear-r1
 
-KEYWORDS=~alpha amd64 ~arm hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86
+KEYWORDS=~alpha amd64 ~arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86
 
 DESCRIPTION=Validation class
 LICENSE=BSD



1.53 dev-php/PEAR-Validate/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Validate/ChangeLog?rev=1.53view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Validate/ChangeLog?rev=1.53content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Validate/ChangeLog?r1=1.52r2=1.53

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-Validate/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog   13 May 2014 14:45:08 -  1.52
+++ ChangeLog   14 May 2014 14:27:01 -  1.53
@@ -1,6 +1,9 @@
 # ChangeLog for dev-php/PEAR-Validate
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Validate/ChangeLog,v 1.52 
2014/05/13 14:45:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Validate/ChangeLog,v 1.53 
2014/05/14 14:27:01 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org PEAR-Validate-0.8.5.ebuild:
+  Stable for sparc, wrt bug #502764
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org PEAR-Validate-0.8.5.ebuild:
   Stable for ia64, wrt bug #502764






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-VersionControl_SVN: PEAR-VersionControl_SVN-0.5.1.ebuild ChangeLog

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

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

Revision  ChangesPath
1.8  
dev-php/PEAR-VersionControl_SVN/PEAR-VersionControl_SVN-0.5.1.ebuild

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

Index: PEAR-VersionControl_SVN-0.5.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-VersionControl_SVN/PEAR-VersionControl_SVN-0.5.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- PEAR-VersionControl_SVN-0.5.1.ebuild13 May 2014 14:45:24 -  
1.7
+++ PEAR-VersionControl_SVN-0.5.1.ebuild14 May 2014 14:27:21 -  
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-php/PEAR-VersionControl_SVN/PEAR-VersionControl_SVN-0.5.1.ebuild,v
 1.7 2014/05/13 14:45:24 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-VersionControl_SVN/PEAR-VersionControl_SVN-0.5.1.ebuild,v
 1.8 2014/05/14 14:27:21 ago Exp $
 
 EAPI=5
 
@@ -9,7 +9,7 @@
 DESCRIPTION=Simple OO wrapper interface for the Subversion command-line 
client.
 LICENSE=BSD
 SLOT=0
-KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 ~sparc x86
+KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 sparc x86
 IUSE=
 RDEPEND=
 



1.40 dev-php/PEAR-VersionControl_SVN/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-VersionControl_SVN/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   13 May 2014 14:45:24 -  1.39
+++ ChangeLog   14 May 2014 14:27:21 -  1.40
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php/PEAR-VersionControl_SVN
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-VersionControl_SVN/ChangeLog,v 
1.39 2014/05/13 14:45:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-VersionControl_SVN/ChangeLog,v 
1.40 2014/05/14 14:27:21 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org
+  PEAR-VersionControl_SVN-0.5.1.ebuild:
+  Stable for sparc, wrt bug #502766
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org
   PEAR-VersionControl_SVN-0.5.1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.5.3-r1.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:27:49

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

Revision  ChangesPath
1.10 dev-libs/apr-util/apr-util-1.5.3-r1.ebuild

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

Index: apr-util-1.5.3-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.5.3-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- apr-util-1.5.3-r1.ebuild13 May 2014 14:45:49 -  1.9
+++ apr-util-1.5.3-r1.ebuild14 May 2014 14:27:49 -  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/apr-util/apr-util-1.5.3-r1.ebuild,v 1.9 
2014/05/13 14:45:49 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.5.3-r1.ebuild,v 1.10 
2014/05/14 14:27:49 ago Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE=Apache-2.0
 SLOT=1
-KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
+KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
 IUSE=berkdb doc freetds gdbm ldap mysql nss odbc openssl postgres sqlite 
static-libs
 RESTRICT=test
 



1.208dev-libs/apr-util/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?rev=1.208view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?rev=1.208content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?r1=1.207r2=1.208

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -r1.207 -r1.208
--- ChangeLog   13 May 2014 14:45:49 -  1.207
+++ ChangeLog   14 May 2014 14:27:49 -  1.208
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/apr-util
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.207 
2014/05/13 14:45:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.208 
2014/05/14 14:27:49 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org apr-util-1.5.3-r1.ebuild:
+  Stable for sparc, wrt bug #504300
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org apr-util-1.5.3-r1.ebuild:
   Stable for ia64, wrt bug #504300






[gentoo-commits] gentoo-x86 commit in app-admin/augeas: augeas-1.1.0.ebuild ChangeLog

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

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

Revision  ChangesPath
1.5  app-admin/augeas/augeas-1.1.0.ebuild

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

Index: augeas-1.1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/augeas/augeas-1.1.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- augeas-1.1.0.ebuild 10 May 2014 13:46:58 -  1.4
+++ augeas-1.1.0.ebuild 14 May 2014 14:28:07 -  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-admin/augeas/augeas-1.1.0.ebuild,v 1.4 
2014/05/10 13:46:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/augeas-1.1.0.ebuild,v 1.5 
2014/05/14 14:28:07 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 SLOT=0
 LICENSE=LGPL-2.1
-KEYWORDS=~alpha amd64 hppa ~ia64 ppc ~sparc ~x86
+KEYWORDS=~alpha amd64 hppa ~ia64 ppc sparc ~x86
 IUSE=static-libs test
 
 RDEPEND=



1.55 app-admin/augeas/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog   10 May 2014 13:46:58 -  1.54
+++ ChangeLog   14 May 2014 14:28:07 -  1.55
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/augeas
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v 1.54 
2014/05/10 13:46:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v 1.55 
2014/05/14 14:28:07 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org augeas-1.1.0.ebuild:
+  Stable for sparc, wrt bug #506464
 
   10 May 2014; Agostino Sarubbo a...@gentoo.org augeas-1.1.0.ebuild:
   Stable for ppc, wrt bug #506464






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

2014-05-14 Thread Tom Wijsman (tomwij)
tomwij  14/05/14 14:31:33

  Modified: ChangeLog package.use.mask
  Log:
  Documentation generation needs APIviz which is not in the Portage tree yet. 
Tracked in Gentoo bug #509602.

Revision  ChangesPath
1.683profiles/base/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v
retrieving revision 1.682
retrieving revision 1.683
diff -u -r1.682 -r1.683
--- ChangeLog   26 Apr 2014 11:03:58 -  1.682
+++ ChangeLog   14 May 2014 14:31:33 -  1.683
@@ -1,6 +1,10 @@
 # ChangeLog for Gentoo base-profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v 1.682 2014/04/26 
11:03:58 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v 1.683 2014/05/14 
14:31:33 tomwij Exp $
+
+  14 May 2014; Tom Wijsman tom...@gentoo.org package.use.mask:
+  Documentation generation needs APIviz which is not in the Portage tree yet.
+  Tracked in Gentoo bug #509602.
 
   26 Apr 2014; Michał Górny mgo...@gentoo.org package.use.mask, use.mask:
   Mask USE flags for Python 2.6 to prepare for the removal.



1.569profiles/base/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/base/package.use.mask,v
retrieving revision 1.568
retrieving revision 1.569
diff -u -r1.568 -r1.569
--- package.use.mask2 May 2014 18:27:14 -   1.568
+++ package.use.mask14 May 2014 14:31:33 -  1.569
@@ -1,11 +1,16 @@
 # 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.568 
2014/05/02 18:27:14 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/base/package.use.mask,v 1.569 
2014/05/14 14:31:33 tomwij Exp $
 
 # This file requires =portage-2.1.1
 # New entries go on top.
 #
 
+# Tom Wijsman tom...@gentoo.org (14 May 2014)
+# Documentation generation needs APIviz which is not in the Portage tree yet.
+# Tracked in Gentoo bug #509602.
+dev-java/jboss-logging doc
+
 # Tom Wijsman tom...@gentoo.org (02 May 2014)
 # Bluetooth support in MATE has incompatibilities with recent BlueZ versions.
 # If you want to try to get this working, unmask net-wireless/mate-bluetooth 
as 






[gentoo-commits] gentoo-x86 commit in dev-libs/apr: apr-1.5.0-r2.ebuild ChangeLog

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

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

Revision  ChangesPath
1.11 dev-libs/apr/apr-1.5.0-r2.ebuild

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

Index: apr-1.5.0-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr/apr-1.5.0-r2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- apr-1.5.0-r2.ebuild 13 May 2014 14:45:46 -  1.10
+++ apr-1.5.0-r2.ebuild 14 May 2014 14:27:46 -  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/apr/apr-1.5.0-r2.ebuild,v 1.10 
2014/05/13 14:45:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr/apr-1.5.0-r2.ebuild,v 1.11 
2014/05/14 14:27:46 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE=Apache-2.0
 SLOT=1
-KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
+KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
 IUSE=doc elibc_FreeBSD older-kernels-compatibility static-libs +urandom
 
 RDEPEND=elibc_glibc? ( =sys-apps/util-linux-2.16 )



1.224dev-libs/apr/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr/ChangeLog,v
retrieving revision 1.223
retrieving revision 1.224
diff -u -r1.223 -r1.224
--- ChangeLog   13 May 2014 14:45:46 -  1.223
+++ ChangeLog   14 May 2014 14:27:46 -  1.224
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/apr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr/ChangeLog,v 1.223 2014/05/13 
14:45:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr/ChangeLog,v 1.224 2014/05/14 
14:27:46 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org apr-1.5.0-r2.ebuild:
+  Stable for sparc, wrt bug #504300
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org apr-1.5.0-r2.ebuild:
   Stable for ia64, wrt bug #504300






[gentoo-commits] gentoo-x86 commit in media-libs/openal: openal-1.15.1-r2.ebuild ChangeLog

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

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

Revision  ChangesPath
1.9  media-libs/openal/openal-1.15.1-r2.ebuild

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

Index: openal-1.15.1-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/openal/openal-1.15.1-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- openal-1.15.1-r2.ebuild 10 May 2014 13:43:10 -  1.8
+++ openal-1.15.1-r2.ebuild 14 May 2014 14:39:23 -  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/media-libs/openal/openal-1.15.1-r2.ebuild,v 
1.8 2014/05/10 13:43:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/openal-1.15.1-r2.ebuild,v 
1.9 2014/05/14 14:39:23 ago Exp $
 
 EAPI=5
 inherit cmake-multilib
@@ -13,7 +13,7 @@
 
 LICENSE=LGPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux
+KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux
 IUSE=alsa coreaudio debug neon oss portaudio pulseaudio sse
 
 RDEPEND=alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )



1.182media-libs/openal/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/openal/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog   10 May 2014 13:43:10 -  1.181
+++ ChangeLog   14 May 2014 14:39:23 -  1.182
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/openal
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/ChangeLog,v 1.181 
2014/05/10 13:43:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/ChangeLog,v 1.182 
2014/05/14 14:39:23 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org openal-1.15.1-r2.ebuild:
+  Stable for sparc, wrt bug #501496
 
   10 May 2014; Agostino Sarubbo a...@gentoo.org openal-1.15.1-r2.ebuild:
   Stable for ppc, wrt bug #501496






[gentoo-commits] gentoo-x86 commit in dev-libs/libcdio: libcdio-0.92.ebuild ChangeLog

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

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

Revision  ChangesPath
1.10 dev-libs/libcdio/libcdio-0.92.ebuild

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

Index: libcdio-0.92.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcdio/libcdio-0.92.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libcdio-0.92.ebuild 13 May 2014 14:46:31 -  1.9
+++ libcdio-0.92.ebuild 14 May 2014 14:40: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-libs/libcdio/libcdio-0.92.ebuild,v 1.9 
2014/05/13 14:46:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/libcdio-0.92.ebuild,v 1.10 
2014/05/14 14:40:04 ago Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-3
 SLOT=0/15 # subslot is based on SONAME
-KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
 IUSE=cddb +cxx minimal static-libs test
 
 RDEPEND=



1.162dev-libs/libcdio/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcdio/ChangeLog,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- ChangeLog   13 May 2014 14:46:31 -  1.161
+++ ChangeLog   14 May 2014 14:40:04 -  1.162
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libcdio
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/ChangeLog,v 1.161 
2014/05/13 14:46:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/ChangeLog,v 1.162 
2014/05/14 14:40:04 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org libcdio-0.92.ebuild:
+  Stable for sparc, wrt bug #506816
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org libcdio-0.92.ebuild:
   Stable for ia64, wrt bug #506816






[gentoo-commits] gentoo-x86 commit in app-arch/unrar/files: unrar-4.2.4-build.patch

2014-05-14 Thread Samuli Suominen (ssuominen)
ssuominen14/05/14 14:40:00

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



[gentoo-commits] gentoo-x86 commit in media-sound/wavpack: wavpack-4.70.0.ebuild ChangeLog

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

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

Revision  ChangesPath
1.10 media-sound/wavpack/wavpack-4.70.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/wavpack/wavpack-4.70.0.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/wavpack/wavpack-4.70.0.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/wavpack/wavpack-4.70.0.ebuild?r1=1.9r2=1.10

Index: wavpack-4.70.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/wavpack/wavpack-4.70.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- wavpack-4.70.0.ebuild   13 May 2014 14:46:19 -  1.9
+++ wavpack-4.70.0.ebuild   14 May 2014 14:39:37 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/wavpack/wavpack-4.70.0.ebuild,v 
1.9 2014/05/13 14:46:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/wavpack/wavpack-4.70.0.ebuild,v 
1.10 2014/05/14 14:39:37 ago Exp $
 
 EAPI=5
 AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
@@ -12,7 +12,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris
 IUSE=mmx static-libs
 
 RDEPEND=virtual/libiconv[${MULTILIB_USEDEP}]



1.86 media-sound/wavpack/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/wavpack/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog   13 May 2014 14:46:19 -  1.85
+++ ChangeLog   14 May 2014 14:39:37 -  1.86
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/wavpack
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/wavpack/ChangeLog,v 1.85 
2014/05/13 14:46:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/wavpack/ChangeLog,v 1.86 
2014/05/14 14:39:37 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org wavpack-4.70.0.ebuild:
+  Stable for sparc, wrt bug #505340
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org wavpack-4.70.0.ebuild:
   Stable for ia64, wrt bug #505340






[gentoo-commits] gentoo-x86 commit in app-arch/unrar: ChangeLog unrar-5.1.1.ebuild unrar-5.1.2.ebuild unrar-5.1.4.ebuild unrar-4.2.4.ebuild

2014-05-14 Thread Samuli Suominen (ssuominen)
ssuominen14/05/14 14:40:00

  Modified: ChangeLog
  Removed:  unrar-5.1.1.ebuild unrar-5.1.2.ebuild
unrar-5.1.4.ebuild unrar-4.2.4.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.225app-arch/unrar/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.225view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.225content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?r1=1.224r2=1.225

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -r1.224 -r1.225
--- ChangeLog   14 May 2014 14:19:13 -  1.224
+++ ChangeLog   14 May 2014 14:39:59 -  1.225
@@ -1,6 +1,11 @@
 # ChangeLog for app-arch/unrar
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.224 2014/05/14 
14:19:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.225 2014/05/14 
14:39:59 ssuominen Exp $
+
+  14 May 2014; Samuli Suominen ssuomi...@gentoo.org
+  -files/unrar-4.2.4-build.patch, -unrar-4.2.4.ebuild, -unrar-5.1.1.ebuild,
+  -unrar-5.1.2.ebuild, -unrar-5.1.4.ebuild:
+  old
 
   14 May 2014; Agostino Sarubbo a...@gentoo.org unrar-5.0.14.ebuild:
   Stable for sparc, wrt bug #505932






[gentoo-commits] gentoo-x86 commit in app-arch/star: star-1.5.2.ebuild ChangeLog

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

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

Revision  ChangesPath
1.10 app-arch/star/star-1.5.2.ebuild

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

Index: star-1.5.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/star/star-1.5.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- star-1.5.2.ebuild   13 May 2014 14:46:05 -  1.9
+++ star-1.5.2.ebuild   14 May 2014 14:39: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/app-arch/star/star-1.5.2.ebuild,v 1.9 
2014/05/13 14:46:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/star/star-1.5.2.ebuild,v 1.10 
2014/05/14 14:39:09 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2 LGPL-2.1 CDDL-Schily
 SLOT=0
-KEYWORDS=alpha amd64 hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos
+KEYWORDS=alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos
 IUSE=acl xattr
 
 DEPEND=



1.111app-arch/star/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/star/ChangeLog?rev=1.111view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/star/ChangeLog?rev=1.111content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/star/ChangeLog?r1=1.110r2=1.111

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/star/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog   13 May 2014 14:46:05 -  1.110
+++ ChangeLog   14 May 2014 14:39:09 -  1.111
@@ -1,6 +1,9 @@
 # ChangeLog for app-arch/star
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/star/ChangeLog,v 1.110 2014/05/13 
14:46:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/star/ChangeLog,v 1.111 2014/05/14 
14:39:09 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org star-1.5.2.ebuild:
+  Stable for sparc, wrt bug #505842
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org star-1.5.2.ebuild:
   Stable for ia64, wrt bug #505842






[gentoo-commits] gentoo-x86 commit in media-libs/libmp3splt: libmp3splt-0.9.0.ebuild ChangeLog

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

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

Revision  ChangesPath
1.4  media-libs/libmp3splt/libmp3splt-0.9.0.ebuild

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

Index: libmp3splt-0.9.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/libmp3splt/libmp3splt-0.9.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libmp3splt-0.9.0.ebuild 5 Apr 2014 11:39:15 -   1.3
+++ libmp3splt-0.9.0.ebuild 14 May 2014 14:40:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmp3splt/libmp3splt-0.9.0.ebuild,v 1.3 
2014/04/05 11:39:15 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmp3splt/libmp3splt-0.9.0.ebuild,v 1.4 
2014/05/14 14:40:40 ago Exp $
 
 EAPI=4
 inherit versionator autotools eutils multilib
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86
+KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 sparc x86
 IUSE=doc flac pcre
 
 RDEPEND=media-libs/libmad



1.38 media-libs/libmp3splt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libmp3splt/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   5 Apr 2014 11:39:15 -   1.37
+++ ChangeLog   14 May 2014 14:40:40 -  1.38
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libmp3splt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp3splt/ChangeLog,v 1.37 
2014/04/05 11:39:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp3splt/ChangeLog,v 1.38 
2014/05/14 14:40:40 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org libmp3splt-0.9.0.ebuild:
+  Stable for sparc, wrt bug #495738
 
   05 Apr 2014; Agostino Sarubbo a...@gentoo.org libmp3splt-0.9.0.ebuild:
   Stable for x86, wrt bug #495738






[gentoo-commits] gentoo-x86 commit in media-gfx/sane-backends: sane-backends-1.0.24-r3.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:41:02

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

Revision  ChangesPath
1.8  media-gfx/sane-backends/sane-backends-1.0.24-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.24-r3.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.24-r3.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.24-r3.ebuild?r1=1.7r2=1.8

Index: sane-backends-1.0.24-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.24-r3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sane-backends-1.0.24-r3.ebuild  13 May 2014 14:47:01 -  1.7
+++ sane-backends-1.0.24-r3.ebuild  14 May 2014 14:41:02 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.24-r3.ebuild,v
 1.7 2014/05/13 14:47:01 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.24-r3.ebuild,v
 1.8 2014/05/14 14:41:02 ago Exp $
 
 EAPI=5
 
@@ -122,7 +122,7 @@
 
 LICENSE=GPL-2 public-domain
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux
+KEYWORDS=~alpha amd64 arm hppa ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux
 
 RDEPEND=
sane_backends_dc210? ( virtual/jpeg )



1.251media-gfx/sane-backends/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/ChangeLog?rev=1.251view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/ChangeLog?rev=1.251content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/ChangeLog?r1=1.250r2=1.251

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/ChangeLog,v
retrieving revision 1.250
retrieving revision 1.251
diff -u -r1.250 -r1.251
--- ChangeLog   13 May 2014 14:47:01 -  1.250
+++ ChangeLog   14 May 2014 14:41:02 -  1.251
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/sane-backends
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/ChangeLog,v 1.250 
2014/05/13 14:47:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/ChangeLog,v 1.251 
2014/05/14 14:41:02 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org 
sane-backends-1.0.24-r3.ebuild:
+  Stable for sparc, wrt bug #506928
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org 
sane-backends-1.0.24-r3.ebuild:
   Stable for ia64, wrt bug #506928






[gentoo-commits] gentoo-x86 commit in media-sound/mp3splt: mp3splt-2.6.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:40:43

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

Revision  ChangesPath
1.4  media-sound/mp3splt/mp3splt-2.6.ebuild

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

Index: mp3splt-2.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mp3splt/mp3splt-2.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mp3splt-2.6.ebuild  18 Apr 2014 18:42:28 -  1.3
+++ mp3splt-2.6.ebuild  14 May 2014 14:40:43 -  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-sound/mp3splt/mp3splt-2.6.ebuild,v 
1.3 2014/04/18 18:42:28 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/mp3splt-2.6.ebuild,v 
1.4 2014/05/14 14:40:43 ago Exp $
 
 EAPI=4
 inherit multilib
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86
+KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 sparc x86
 IUSE=flac
 
 RDEPEND=~media-libs/libmp3splt-0.9.0[flac?]



1.57 media-sound/mp3splt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   18 Apr 2014 18:42:28 -  1.56
+++ ChangeLog   14 May 2014 14:40:43 -  1.57
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/mp3splt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v 1.56 
2014/04/18 18:42:28 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v 1.57 
2014/05/14 14:40:43 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org mp3splt-2.6.ebuild:
+  Stable for sparc, wrt bug #495738
 
   18 Apr 2014; Chema Alonso nim...@gentoo.org mp3splt-2.6.ebuild:
   Stable for amd64 wrt bug #495738






[gentoo-commits] gentoo-x86 commit in media-libs/mutagen: mutagen-1.22.ebuild ChangeLog

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

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

Revision  ChangesPath
1.9  media-libs/mutagen/mutagen-1.22.ebuild

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

Index: mutagen-1.22.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mutagen/mutagen-1.22.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- mutagen-1.22.ebuild 20 Apr 2014 11:22:59 -  1.8
+++ mutagen-1.22.ebuild 14 May 2014 14:39: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/media-libs/mutagen/mutagen-1.22.ebuild,v 
1.8 2014/04/20 11:22:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/mutagen-1.22.ebuild,v 
1.9 2014/05/14 14:39:51 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-interix 
~amd64-linux ~x86-linux
+KEYWORDS=alpha amd64 hppa ~ia64 ppc ppc64 sparc x86 ~x86-interix ~amd64-linux 
~x86-linux
 IUSE=doc test
 
 DEPEND=



1.103media-libs/mutagen/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog   20 Apr 2014 11:22:59 -  1.102
+++ ChangeLog   14 May 2014 14:39:51 -  1.103
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/mutagen
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v 1.102 
2014/04/20 11:22:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v 1.103 
2014/05/14 14:39:51 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org mutagen-1.22.ebuild:
+  Stable for sparc, wrt bug #506256
 
   20 Apr 2014; Agostino Sarubbo a...@gentoo.org mutagen-1.22.ebuild:
   Stable for ppc64, wrt bug #506256






[gentoo-commits] gentoo-x86 commit in media-libs/flac: flac-1.3.0.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:40:19

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

Revision  ChangesPath
1.12 media-libs/flac/flac-1.3.0.ebuild

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

Index: flac-1.3.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/flac/flac-1.3.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- flac-1.3.0.ebuild   13 May 2014 14:46:45 -  1.11
+++ flac-1.3.0.ebuild   14 May 2014 14:40:19 -  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/media-libs/flac/flac-1.3.0.ebuild,v 1.11 
2014/05/13 14:46:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/flac-1.3.0.ebuild,v 1.12 
2014/05/14 14:40:19 ago Exp $
 
 EAPI=5
 AUTOTOOLS_AUTORECONF=1
@@ -14,7 +14,7 @@
 
 LICENSE=BSD FDL-1.2 GPL-2 LGPL-2.1
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd 
~x86-fbsd
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd
 IUSE=3dnow altivec +cxx debug ogg sse static-libs
 
 RDEPEND=ogg? ( =media-libs/libogg-1.1.3[${MULTILIB_USEDEP}] )



1.177media-libs/flac/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/flac/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog   13 May 2014 14:46:45 -  1.176
+++ ChangeLog   14 May 2014 14:40:19 -  1.177
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/flac
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/ChangeLog,v 1.176 
2014/05/13 14:46:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/ChangeLog,v 1.177 
2014/05/14 14:40:19 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org flac-1.3.0.ebuild:
+  Stable for sparc, wrt bug #507006
 
   13 May 2014; Agostino Sarubbo a...@gentoo.org flac-1.3.0.ebuild:
   Stable for ia64, wrt bug #507006






[gentoo-commits] gentoo-x86 commit in app-crypt/ophcrack: ophcrack-3.1.0-r2.ebuild ophcrack-3.3.0.ebuild ChangeLog

2014-05-14 Thread Tom Wijsman (tomwij)
tomwij  14/05/14 14:41:26

  Modified: ophcrack-3.1.0-r2.ebuild ophcrack-3.3.0.ebuild
ChangeLog
  Log:
  [QA] EAPI 1 - 5. Added missing dev-qt/qtcore:4 dependency.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.6  app-crypt/ophcrack/ophcrack-3.1.0-r2.ebuild

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

Index: ophcrack-3.1.0-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-3.1.0-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ophcrack-3.1.0-r2.ebuild2 Mar 2013 19:14:54 -   1.5
+++ ophcrack-3.1.0-r2.ebuild14 May 2014 14:41:26 -  1.6
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-3.1.0-r2.ebuild,v 1.5 
2013/03/02 19:14:54 hwoarang Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-3.1.0-r2.ebuild,v 1.6 
2014/05/14 14:41:26 tomwij Exp $
 
-EAPI=1
+EAPI=5
 inherit eutils
 
 DESCRIPTION=A time-memory-trade-off-cracker
@@ -16,27 +16,20 @@
 
 CDEPEND=dev-libs/openssl
 net-libs/netwib
-qt4? ( dev-qt/qtgui:4 )
+qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 )
 DEPEND=app-arch/unzip
virtual/pkgconfig
${CDEPEND}
 RDEPEND=app-crypt/ophcrack-tables
 ${CDEPEND}
 
-src_compile() {
-   local myconf
-
-   myconf=$(use_enable qt4 gui)
-   myconf=${myconf} $(use_enable debug)
-
-   econf ${myconf} || die Failed to compile
-   emake || die Failed to make
+src_configure() {
+   econf $(use_enable qt4 gui) $(use_enable debug)
 }
 
 src_install() {
-   emake install DESTDIR=${D} || die Installation failed.
+   default
 
-   cd ${S}
-   newicon src/gui/pixmaps/os.xpm ophcrack.xpm
-   make_desktop_entry ${PN} OphCrack ophcrack
+   newicon src/gui/pixmaps/os.xpm ${PN}.xpm
+   make_desktop_entry ${PN} OphCrack ${PN}
 }



1.5  app-crypt/ophcrack/ophcrack-3.3.0.ebuild

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

Index: ophcrack-3.3.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-3.3.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ophcrack-3.3.0.ebuild   2 Mar 2013 19:14:54 -   1.4
+++ ophcrack-3.3.0.ebuild   14 May 2014 14:41:26 -  1.5
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-3.3.0.ebuild,v 
1.4 2013/03/02 19:14:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-3.3.0.ebuild,v 
1.5 2014/05/14 14:41:26 tomwij Exp $
 
-EAPI=1
+EAPI=5
 inherit eutils
 
 DESCRIPTION=A time-memory-trade-off-cracker
@@ -16,27 +16,20 @@
 
 CDEPEND=dev-libs/openssl
 net-libs/netwib
-qt4? ( dev-qt/qtgui:4 )
+qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 )
 DEPEND=app-arch/unzip
virtual/pkgconfig
${CDEPEND}
 RDEPEND=app-crypt/ophcrack-tables
 ${CDEPEND}
 
-src_compile() {
-   local myconf
-
-   myconf=$(use_enable qt4 gui)
-   myconf=${myconf} $(use_enable debug)
-
-   econf ${myconf} || die Failed to compile
-   emake || die Failed to make
+src_configure() {
+   econf $(use_enable qt4 gui) $(use_enable debug)
 }
 
 src_install() {
-   emake install DESTDIR=${D} || die Installation failed.
+   default
 
-   cd ${S}
-   newicon src/gui/pixmaps/os.xpm ophcrack.xpm
-   make_desktop_entry ${PN} OphCrack ophcrack
+   newicon src/gui/pixmaps/os.xpm ${PN}.xpm
+   make_desktop_entry ${PN} OphCrack ${PN}
 }



1.38 app-crypt/ophcrack/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ophcrack/ChangeLog?rev=1.38view=markup
plain: 

[gentoo-commits] gentoo-x86 commit in app-text/ocrad: ocrad-0.22.ebuild ChangeLog

2014-05-14 Thread Agostino Sarubbo (ago)
ago 14/05/14 14:41:21

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

Revision  ChangesPath
1.5  app-text/ocrad/ocrad-0.22.ebuild

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

Index: ocrad-0.22.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-text/ocrad/ocrad-0.22.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ocrad-0.22.ebuild   10 May 2014 13:47:29 -  1.4
+++ ocrad-0.22.ebuild   14 May 2014 14:41:20 -  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/ocrad/ocrad-0.22.ebuild,v 1.4 
2014/05/10 13:47:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ocrad/ocrad-0.22.ebuild,v 1.5 
2014/05/14 14:41:20 ago Exp $
 
 EAPI=5
 inherit unpacker toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~alpha amd64 ppc ~ppc64 ~sparc x86
+KEYWORDS=~alpha amd64 ppc ~ppc64 sparc x86
 IUSE=
 
 RDEPEND=



1.44 app-text/ocrad/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/ocrad/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog   10 May 2014 13:47:29 -  1.43
+++ ChangeLog   14 May 2014 14:41:20 -  1.44
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/ocrad
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ocrad/ChangeLog,v 1.43 2014/05/10 
13:47:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ocrad/ChangeLog,v 1.44 2014/05/14 
14:41:20 ago Exp $
+
+  14 May 2014; Agostino Sarubbo a...@gentoo.org ocrad-0.22.ebuild:
+  Stable for sparc, wrt bug #506786
 
   10 May 2014; Agostino Sarubbo a...@gentoo.org ocrad-0.22.ebuild:
   Stable for ppc, wrt bug #506786






  1   2   3   4   >