[gentoo-commits] gentoo-x86 commit in net-analyzer/rrdtool: ChangeLog rrdtool-1.4.8-r1.ebuild

2014-05-20 Thread Hans de Graaff (graaff)
graaff  14/05/20 06:01:00

  Modified: ChangeLog
  Added:rrdtool-1.4.8-r1.ebuild
  Log:
  Move the ruby bindings to a separate package to facilitate building them for 
all ruby targets, bug 427662.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.263net-analyzer/rrdtool/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog   19 May 2014 00:35:42 -  1.262
+++ ChangeLog   20 May 2014 06:01:00 -  1.263
@@ -1,6 +1,12 @@
 # ChangeLog for net-analyzer/rrdtool
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.262 
2014/05/19 00:35:42 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.263 
2014/05/20 06:01:00 graaff Exp $
+
+*rrdtool-1.4.8-r1 (20 May 2014)
+
+  20 May 2014; Hans de Graaff gra...@gentoo.org +rrdtool-1.4.8-r1.ebuild:
+  Move the ruby bindings to a separate package to facilitate building them for
+  all ruby targets, bug 427662.
 
   19 May 2014; Jeroen Roovers j...@gentoo.org rrdtool-1.4.8.ebuild:
   Remove obsolete comment, too.



1.1  net-analyzer/rrdtool/rrdtool-1.4.8-r1.ebuild

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

Index: rrdtool-1.4.8-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.4.8-r1.ebuild,v 1.1 
2014/05/20 06:01:00 graaff Exp $

EAPI=5

DISTUTILS_OPTIONAL=true
GENTOO_DEPEND_ON_PERL=no
PYTHON_COMPAT=( python2_7 )
inherit eutils distutils-r1 flag-o-matic multilib perl-module autotools

DESCRIPTION=A system to store and display time-series data
HOMEPAGE=http://oss.oetiker.ch/rrdtool/;
SRC_URI=http://oss.oetiker.ch/rrdtool/pub/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris
IUSE=dbi doc +graph lua perl python ruby rrdcgi static-libs tcl tcpd

PDEPEND=
ruby? ( ~dev-ruby/rrdtool-bindings-${PV} )


RDEPEND=
=dev-libs/glib-2.28.7[static-libs(+)?]
=dev-libs/libxml2-2.7.8[static-libs(+)?]
dbi? ( dev-db/libdbi[static-libs(+)?] )
graph? (
=media-libs/libpng-1.5.10[static-libs(+)?]
=x11-libs/cairo-1.10.2[svg,static-libs(+)?]
=x11-libs/pango-1.28
)
lua? ( dev-lang/lua[deprecated] )
perl? ( dev-lang/perl )
python? ( ${PYTHON_DEPS} )
tcl? ( dev-lang/tcl )
tcpd? ( sys-apps/tcp-wrappers )


DEPEND=
${RDEPEND}
sys-apps/groff
virtual/pkgconfig
virtual/awk


python_compile() {
cd bindings/python || die 'can not enter to python bindings directory'
distutils-r1_python_compile
}

python_install() {
cd bindings/python || die 'can not enter to python bindings directory'
distutils-r1_python_install
}

src_prepare() {
epatch ${FILESDIR}/${PN}-1.4.7-configure.ac.patch

# bug 456810
# no time to sleep
sed -i \
-e 's|$LUA_CFLAGS|IGNORE_THIS_BAD_TEST|g' \
-e 's|^sleep 1$||g' \
configure.ac || die

# Python bindings are built/installed manually
sed -i \
-e '/^all-local:/s| @COMP_PYTHON@||' \
bindings/Makefile.am || die

eautoreconf
}

src_configure() {
filter-flags -ffast-math

export RRDDOCDIR=${EPREFIX}/usr/share/doc/${PF}

# to solve bug #260380
[[ ${CHOST} == *-solaris* ]]  append-flags -D__EXTENSIONS__

# Stub configure.ac
local myconf=()
if ! use tcpd; then
myconf+=( --disable-libwrap )
fi
if ! use dbi; then
myconf+=( --disable-libdbi )
fi

econf \
$(use_enable graph rrd_graph) \
$(use_enable lua lua-site-install) \
$(use_enable lua) \
$(use_enable perl 

[gentoo-commits] gentoo-x86 commit in app-admin/monit: monit-5.8.1.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 06:01:10

  Modified: ChangeLog
  Added:monit-5.8.1.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.82 app-admin/monit/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/monit/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog   2 Apr 2014 02:32:01 -   1.81
+++ ChangeLog   20 May 2014 06:01:10 -  1.82
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/monit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/monit/ChangeLog,v 1.81 2014/04/02 
02:32:01 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/monit/ChangeLog,v 1.82 2014/05/20 
06:01:10 patrick Exp $
+
+*monit-5.8.1 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +monit-5.8.1.ebuild:
+  Bump
 
 *monit-5.8 (02 Apr 2014)
 



1.1  app-admin/monit/monit-5.8.1.ebuild

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

Index: monit-5.8.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/monit/monit-5.8.1.ebuild,v 1.1 
2014/05/20 06:01:10 patrick Exp $

EAPI=2
inherit systemd

DESCRIPTION=a utility for monitoring and managing daemons or similar programs 
running on a Unix system.
HOMEPAGE=http://mmonit.com/monit/;
SRC_URI=http://mmonit.com/monit/dist/${P}.tar.gz;

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux
IUSE=pam ssl

RDEPEND=ssl? ( dev-libs/openssl )
DEPEND=${RDEPEND}
sys-devel/flex
sys-devel/bison
pam? ( virtual/pam )

src_prepare() {
sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die sed failed in 
Makefile.in
}

src_configure() {
econf $(use_with ssl) $(use_with pam) || die econf failed
}

src_compile() {
emake || die emake failed
}

src_install() {
make DESTDIR=${D} install || die make install failed

dodoc README*
dohtml -r doc/*

insinto /etc; insopts -m600; doins monitrc || die doins monitrc failed
newinitd ${FILESDIR}/monit.initd-5.0-r1 monit || die newinitd failed
systemd_dounit ${FILESDIR}/${PN}.service || die
}

pkg_postinst() {
elog Sample configurations are available at:
elog http://mmonit.com/monit/documentation/;
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/color: ChangeLog color-1.6.ebuild

2014-05-20 Thread Hans de Graaff (graaff)
graaff  14/05/20 06:13:40

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

Revision  ChangesPath
1.25 dev-ruby/color/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/color/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   5 Apr 2014 14:16:28 -   1.24
+++ ChangeLog   20 May 2014 06:13:40 -  1.25
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/color
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/color/ChangeLog,v 1.24 2014/04/05 
14:16:28 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/color/ChangeLog,v 1.25 2014/05/20 
06:13:40 graaff Exp $
+
+*color-1.6 (20 May 2014)
+
+  20 May 2014; Hans de Graaff gra...@gentoo.org +color-1.6.ebuild:
+  Version bump. Add ruby21.
 
   05 Apr 2014; Manuel Rüger mr...@gentoo.org color-1.4.1-r1.ebuild,
   color-1.4.2-r1.ebuild, color-1.5.1.ebuild:



1.1  dev-ruby/color/color-1.6.ebuild

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

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

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21 jruby

RUBY_FAKEGEM_RECIPE_DOC=rdoc
RUBY_FAKEGEM_EXTRADOC=History.rdoc README.rdoc

inherit ruby-fakegem

DESCRIPTION=Colour management with Ruby
HOMEPAGE=http://color.rubyforge.org/;
SRC_URI=https://github.com/halostatue/color/archive/v${PV}.tar.gz - 
${P}.tar.gz

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
IUSE=

ruby_add_bdepend 
test? (
=dev-ruby/minitest-5.0
)

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






[gentoo-commits] gentoo-x86 commit in dev-db/barman: barman-1.3.2.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 06:13:29

  Modified: ChangeLog
  Added:barman-1.3.2.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.13 dev-db/barman/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/barman/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   6 May 2014 07:10:18 -   1.12
+++ ChangeLog   20 May 2014 06:13:28 -  1.13
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/barman
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/barman/ChangeLog,v 1.12 2014/05/06 
07:10:18 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/barman/ChangeLog,v 1.13 2014/05/20 
06:13:28 patrick Exp $
+
+*barman-1.3.2 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +barman-1.3.2.ebuild:
+  Bump
 
 *barman-1.3.1 (06 May 2014)
 



1.1  dev-db/barman/barman-1.3.2.ebuild

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

Index: barman-1.3.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/barman/barman-1.3.2.ebuild,v 1.1 
2014/05/20 06:13:28 patrick Exp $
EAPI=5

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

inherit distutils-r1

DESCRIPTION=Administration tool for disaster recovery of PostgreSQL servers

HOMEPAGE=http://www.pgbarman.org;
SRC_URI=http://downloads.sourceforge.net/project/pgbarman/${PV}/${P}.tar.gz;
LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64 ~x86

IUSE=

RDEPEND=dev-python/argh[${PYTHON_USEDEP}]
=dev-python/psycopg-2[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
net-misc/rsync
dev-db/postgresql-server
DEPEND=






[gentoo-commits] gentoo-x86 commit in dev-ruby/colorize: ChangeLog colorize-0.7.3.ebuild

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

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

Revision  ChangesPath
1.8  dev-ruby/colorize/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/colorize/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   18 Apr 2014 17:37:51 -  1.7
+++ ChangeLog   20 May 2014 06:15:47 -  1.8
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/colorize
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/colorize/ChangeLog,v 1.7 
2014/04/18 17:37:51 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/colorize/ChangeLog,v 1.8 
2014/05/20 06:15:47 graaff Exp $
+
+*colorize-0.7.3 (20 May 2014)
+
+  20 May 2014; Hans de Graaff gra...@gentoo.org +colorize-0.7.3.ebuild:
+  Version bump.
 
 *colorize-0.7.2 (18 Apr 2014)
 



1.1  dev-ruby/colorize/colorize-0.7.3.ebuild

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

Index: colorize-0.7.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/colorize/colorize-0.7.3.ebuild,v 
1.1 2014/05/20 06:15:47 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21 jruby

RUBY_FAKEGEM_EXTRADOC=CHANGELOG README.md
RUBY_FAKEGEM_RECIPE_DOC=rdoc

inherit ruby-fakegem

DESCRIPTION=Add some methods to set color, background color and text effect on 
console easier
HOMEPAGE=https://github.com/fazibear/colorize http://colorize.rubyforge.org;
LICENSE=GPL-2+

KEYWORDS=~amd64
SLOT=0
IUSE=

each_ruby_test() {
cd test || die
${RUBY} test_colorize.rb || die
}






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

2014-05-20 Thread Michal Gorny (mgorny)
mgorny  14/05/20 06:41:24

  Modified: openssl-1.0.1g-r1.ebuild
openssl-1.0.2_beta1-r3.ebuild ChangeLog
  Log:
  Add missing multilib_native_use_ssl function, bug #510828.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.3  dev-libs/openssl/openssl-1.0.1g-r1.ebuild

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

Index: openssl-1.0.1g-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1g-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openssl-1.0.1g-r1.ebuild13 May 2014 18:07:06 -  1.2
+++ openssl-1.0.1g-r1.ebuild20 May 2014 06:41:24 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1g-r1.ebuild,v 
1.2 2014/05/13 18:07:06 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1g-r1.ebuild,v 
1.3 2014/05/20 06:41:24 mgorny Exp $
 
 EAPI=4
 
@@ -112,6 +112,7 @@
# RC5:  5,724,428 03/03/2015http://en.wikipedia.org/wiki/RC5
 
use_ssl() { usex $1 enable-${2:-$1} no-${2:-$1}  ${*:3} ; }
+   multilib_native_use_ssl() { multilib_native_usex $1 enable-${2:-$1} 
no-${2:-$1}  ${*:3} ; }
echoit() { echo $@ ; $@ ; }
 
local krb5=$(has_version app-crypt/mit-krb5  echo MIT || echo 
Heimdal)



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

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

Index: openssl-1.0.2_beta1-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.2_beta1-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openssl-1.0.2_beta1-r3.ebuild   13 May 2014 18:07:06 -  1.2
+++ openssl-1.0.2_beta1-r3.ebuild   20 May 2014 06:41:24 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.2_beta1-r3.ebuild,v 1.2 
2014/05/13 18:07:06 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.2_beta1-r3.ebuild,v 1.3 
2014/05/20 06:41:24 mgorny Exp $
 
 EAPI=4
 
@@ -119,6 +119,7 @@
# RC5:  5,724,428 03/03/2015http://en.wikipedia.org/wiki/RC5
 
use_ssl() { usex $1 enable-${2:-$1} no-${2:-$1}  ${*:3} ; }
+   multilib_native_use_ssl() { multilib_native_usex $1 enable-${2:-$1} 
no-${2:-$1}  ${*:3} ; }
echoit() { echo $@ ; $@ ; }
 
local krb5=$(has_version app-crypt/mit-krb5  echo MIT || echo 
Heimdal)



1.538dev-libs/openssl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.537
retrieving revision 1.538
diff -u -r1.537 -r1.538
--- ChangeLog   13 May 2014 18:07:06 -  1.537
+++ ChangeLog   20 May 2014 06:41:24 -  1.538
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/openssl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.537 
2014/05/13 18:07:06 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.538 
2014/05/20 06:41:24 mgorny Exp $
+
+  20 May 2014; Michał Górny mgo...@gentoo.org openssl-1.0.1g-r1.ebuild,
+  openssl-1.0.2_beta1-r3.ebuild:
+  Add missing multilib_native_use_ssl function, bug #510828.
 
   13 May 2014; Michał Górny mgo...@gentoo.org openssl-1.0.1g-r1.ebuild,
   openssl-1.0.2_beta1-r3.ebuild:






[gentoo-commits] proj/emacs-tools:emacs-updater commit in: /

2014-05-20 Thread Ulrich Müller
commit: 56d49cfa2a76d59cac6a4925e10506bafa627695
Author: Ulrich Müller ulm AT gentoo DOT org
AuthorDate: Tue May 20 06:49:12 2014 +
Commit: Ulrich Müller ulm AT gentoo DOT org
CommitDate: Tue May 20 06:49:12 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=56d49cfa

Do not mention wrong location in description.

---
 emacs-updater   | 4 ++--
 emacs-updater.8 | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/emacs-updater b/emacs-updater
index 3971de0..7b8a965 100755
--- a/emacs-updater
+++ b/emacs-updater
@@ -28,8 +28,8 @@ PRETEND=
 usage() {
 sed -e 's/^X//' -EOF
Usage: ${0##*/} [OPTION]...
-   Rebuild Emacs packages that were compiled by another Emacs version,
-   or that are installed in the wrong location.
+   Rebuild Emacs packages that were compiled by a different GNU Emacs
+   version, or all Emacs packages.
X
X  -a, --action=ACTION[,ACTION]...
Xspecify actions, comma-separated list of:

diff --git a/emacs-updater.8 b/emacs-updater.8
index f6a5ae3..4c51281 100644
--- a/emacs-updater.8
+++ b/emacs-updater.8
@@ -9,8 +9,8 @@ emacs-updater \- rebuild Emacs packages
 .B emacs-updater
 .I [OPTION]...
 .SH DESCRIPTION
-Find packages that are installed in the wrong location or rebuild all
-GNU Emacs packages.
+Rebuild Emacs packages that were compiled by a different GNU Emacs
+version, or all Emacs packages.
 .SH OPTIONS
 .TP
 .BI -a, --action= ACTION[,ACTION]...



[gentoo-commits] proj/eselect:master commit in: /

2014-05-20 Thread Ulrich Müller
commit: b5d07a665842fdab5865ce1620f0ddb7cc48d067
Author: Ulrich Müller ulm AT gentoo DOT org
AuthorDate: Tue May 20 06:52:04 2014 +
Commit: Ulrich Müller ulm AT gentoo DOT org
CommitDate: Tue May 20 06:52:04 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=b5d07a66

Use git describe in configure.

* configure.ac: Replace git rev-parse by git describe, now
that git-r3.eclass supports it (bug 489100).

---
 ChangeLog| 5 +
 configure.ac | 8 
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 143edc8..d5ddaef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-05-20  Ulrich Müller  u...@gentoo.org
+
+   * configure.ac: Replace git rev-parse by git describe, now
+   that git-r3.eclass supports it (bug 489100).
+
 2014-03-20  Ulrich Müller  u...@gentoo.org
 
* doc/user-guide.txt: Mention the unset action also here.

diff --git a/configure.ac b/configure.ac
index 6379db0..63081e7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,11 +78,11 @@ AC_SUBST(EPREFIX)
 AC_MSG_CHECKING([whether building from git])
 EXTRAVERSION=
 if test -d ${GIT_DIR:-.git}; then
-GITREV=`git rev-parse --short HEAD`
-if test x$GITREV != x; then
-EXTRAVERSION=-git-$GITREV
+COMMIT=`git describe --always HEAD`
+if test x$COMMIT != x; then
+EXTRAVERSION= (commit $COMMIT)
 fi
-AC_MSG_RESULT([yes${GITREV:+, at revision $GITREV}])
+AC_MSG_RESULT([yes$EXTRAVERSION])
 else
 AC_MSG_RESULT(no)
 fi



[gentoo-commits] gentoo-x86 commit in dev-python/twisted-core: twisted-core-14.0.0.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 06:56:34

  Modified: ChangeLog
  Added:twisted-core-14.0.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.20 dev-python/twisted-core/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?rev=1.20view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?rev=1.20content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?r1=1.19r2=1.20

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   19 Feb 2014 13:44:22 -  1.19
+++ ChangeLog   20 May 2014 06:56:34 -  1.20
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-core
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.19 
2014/02/19 13:44:22 ultrabug Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.20 
2014/05/20 06:56:34 patrick Exp $
+
+*twisted-core-14.0.0 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +twisted-core-14.0.0.ebuild:
+  Bump
 
 *twisted-core-12.3.0-r1 (19 Feb 2014)
 



1.1  dev-python/twisted-core/twisted-core-14.0.0.ebuild

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

Index: twisted-core-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 
1.1 2014/05/20 06:56:34 patrick Exp $

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

# bug 510830
RESTRICT=test

inherit eutils flag-o-matic twisted-r1

DESCRIPTION=An asynchronous networking framework written in Python

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
IUSE=crypt gtk serial test

DEPEND==net-zope/zope-interface-3.6.0[${PYTHON_USEDEP}]
crypt? ( =dev-python/pyopenssl-0.10[${PYTHON_USEDEP}] )
gtk? ( dev-python/pygtk:2[${PYTHON_USEDEP}] )
serial? ( dev-python/pyserial[${PYTHON_USEDEP}] )
# Wait for keywording on ~arm/~hppa/~amd64-fbsd:
#   test? ( dev-python/twisted-lore[${PYTHON_USEDEP}] )
RDEPEND=${DEPEND}

PATCHES=(
# Give a load-sensitive test a better chance of succeeding.
${FILESDIR}/${PN}-2.1.0-echo-less.patch

# Skip a test if twisted conch is not available
# (see Twisted ticket #5703)
${FILESDIR}/${PN}-12.1.0-remove-tests-conch-dependency.patch

# Respect TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE variable.

${FILESDIR}/${PN}-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch
)

python_prepare_all() {
if [[ ${EUID} -eq 0 ]]; then
# Disable tests failing with root permissions.
sed \
-e s/test_newPluginsOnReadOnlyPath/_/ \
-e s/test_deployedMode/_/ \
-i twisted/test/test_plugin.py
fi

distutils-r1_python_prepare_all
}

python_compile() {
local CFLAGS CXXFLAGS

if [[ ${EPYTHON} != python3* ]]; then
# Needed to make the sendmsg extension work
# (see http://twistedmatrix.com/trac/ticket/5701 )

append-flags -fno-strict-aliasing
fi

distutils-r1_python_compile
}

python_test() {
# NOTE: on pypy a couple of failures (refcounting, version-checking) is
# expected

distutils_install_for_testing

pushd ${TEST_DIR}/lib  /dev/null || die

# Skip broken tests.

# http://twistedmatrix.com/trac/ticket/5375
sed -e /class ZshIntegrationTestCase/,/^$/d -i 
twisted/scripts/test/test_scripts.py \
|| die sed failed

# tap2rpm is already skipped if rpm is not installed, but fails for me 
on a Gentoo box with it present.
# I currently lack the cycles to track this failure down.
rm twisted/scripts/test/test_tap2rpm.py

# Prevent it from pulling in plugins from already installed twisted 
packages.
rm -f twisted/plugins/__init__.py

# An empty file doesn't work because the tests check for doc strings in 
all packages.
echo 

[gentoo-commits] gentoo-x86 commit in dev-python/twisted-conch: twisted-conch-14.0.0.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:02:07

  Modified: ChangeLog
  Added:twisted-conch-14.0.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.100dev-python/twisted-conch/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-conch/ChangeLog?rev=1.100view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-conch/ChangeLog?rev=1.100content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-conch/ChangeLog?r1=1.99r2=1.100

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-conch/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog   21 Jan 2014 04:50:06 -  1.99
+++ ChangeLog   20 May 2014 07:02:07 -  1.100
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-conch
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-conch/ChangeLog,v 1.99 
2014/01/21 04:50:06 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-conch/ChangeLog,v 1.100 
2014/05/20 07:02:07 patrick Exp $
+
+*twisted-conch-14.0.0 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +twisted-conch-14.0.0.ebuild:
+  Bump
 
   21 Jan 2014; Patrick Lauer patr...@gentoo.org -twisted-conch-10.2.0.ebuild,
   -twisted-conch-11.0.0.ebuild, -twisted-conch-11.1.0.ebuild,



1.1  dev-python/twisted-conch/twisted-conch-14.0.0.ebuild

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

Index: twisted-conch-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-conch/twisted-conch-14.0.0.ebuild,v 
1.1 2014/05/20 07:02:07 patrick Exp $

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

inherit twisted-r1

DESCRIPTION=Twisted SSHv2 implementation

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

DEPEND=
=dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]

RDEPEND=${DEPEND}

python_prepare_all() {
if [[ ${EUID} -eq 0 ]]; then
# Disable tests failing with root permissions.
sed -e s/test_checkKeyAsRoot/_/ -i 
twisted/conch/test/test_checkers.py
sed -e s/test_getPrivateKeysAsRoot/_/ -i 
twisted/conch/test/test_openssh_compat.py
fi

distutils-r1_python_prepare_all
}






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-lore: twisted-lore-14.0.0.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:03:09

  Modified: ChangeLog
  Added:twisted-lore-14.0.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.75 dev-python/twisted-lore/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-lore/ChangeLog?rev=1.75view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-lore/ChangeLog?rev=1.75content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-lore/ChangeLog?r1=1.74r2=1.75

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-lore/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   21 Jan 2014 04:51:29 -  1.74
+++ ChangeLog   20 May 2014 07:03:09 -  1.75
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-lore
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-lore/ChangeLog,v 1.74 
2014/01/21 04:51:29 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-lore/ChangeLog,v 1.75 
2014/05/20 07:03:09 patrick Exp $
+
+*twisted-lore-14.0.0 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +twisted-lore-14.0.0.ebuild:
+  Bump
 
   21 Jan 2014; Patrick Lauer patr...@gentoo.org -twisted-lore-10.2.0.ebuild,
   -twisted-lore-11.0.0.ebuild, -twisted-lore-11.1.0.ebuild,



1.1  dev-python/twisted-lore/twisted-lore-14.0.0.ebuild

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

Index: twisted-lore-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-lore/twisted-lore-14.0.0.ebuild,v 
1.1 2014/05/20 07:03:09 patrick Exp $

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

inherit twisted-r1

DESCRIPTION=Twisted documentation system

KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=

DEPEND==dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
=dev-python/twisted-web-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
RDEPEND=${DEPEND}






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-mail: twisted-mail-14.0.0.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:04:43

  Modified: ChangeLog
  Added:twisted-mail-14.0.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.87 dev-python/twisted-mail/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-mail/ChangeLog?rev=1.87view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-mail/ChangeLog?rev=1.87content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-mail/ChangeLog?r1=1.86r2=1.87

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-mail/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   21 Jan 2014 04:52:10 -  1.86
+++ ChangeLog   20 May 2014 07:04:43 -  1.87
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-mail
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-mail/ChangeLog,v 1.86 
2014/01/21 04:52:10 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-mail/ChangeLog,v 1.87 
2014/05/20 07:04:43 patrick Exp $
+
+*twisted-mail-14.0.0 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +twisted-mail-14.0.0.ebuild:
+  Bump
 
   21 Jan 2014; Patrick Lauer patr...@gentoo.org -twisted-mail-10.2.0.ebuild,
   -twisted-mail-11.0.0.ebuild, -twisted-mail-11.1.0.ebuild,



1.1  dev-python/twisted-mail/twisted-mail-14.0.0.ebuild

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

Index: twisted-mail-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-mail/twisted-mail-14.0.0.ebuild,v 
1.1 2014/05/20 07:04:43 patrick Exp $

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

inherit twisted-r1

DESCRIPTION=A Twisted Mail library, server and client

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
IUSE=

DEPEND==dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
=dev-python/twisted-names-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
RDEPEND=${DEPEND}






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-names: twisted-names-14.0.0.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:05:56

  Modified: ChangeLog
  Added:twisted-names-14.0.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.86 dev-python/twisted-names/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-names/ChangeLog?rev=1.86view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-names/ChangeLog?rev=1.86content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-names/ChangeLog?r1=1.85r2=1.86

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-names/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog   21 Jan 2014 04:52:57 -  1.85
+++ ChangeLog   20 May 2014 07:05:56 -  1.86
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-names
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-names/ChangeLog,v 1.85 
2014/01/21 04:52:57 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-names/ChangeLog,v 1.86 
2014/05/20 07:05:56 patrick Exp $
+
+*twisted-names-14.0.0 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +twisted-names-14.0.0.ebuild:
+  Bump
 
   21 Jan 2014; Patrick Lauer patr...@gentoo.org -twisted-names-10.2.0.ebuild,
   -twisted-names-11.0.0.ebuild, -twisted-names-11.1.0.ebuild,



1.1  dev-python/twisted-names/twisted-names-14.0.0.ebuild

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

Index: twisted-names-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-names/twisted-names-14.0.0.ebuild,v 
1.1 2014/05/20 07:05:56 patrick Exp $

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

inherit twisted-r1

DESCRIPTION=A Twisted DNS implementation

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
IUSE=

DEPEND==dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
RDEPEND=${DEPEND}






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-news: twisted-news-14.0.0.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:08:32

  Modified: ChangeLog
  Added:twisted-news-14.0.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.73 dev-python/twisted-news/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-news/ChangeLog?rev=1.73view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-news/ChangeLog?rev=1.73content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-news/ChangeLog?r1=1.72r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-news/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   21 Jan 2014 04:53:38 -  1.72
+++ ChangeLog   20 May 2014 07:08:32 -  1.73
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-news
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-news/ChangeLog,v 1.72 
2014/01/21 04:53:38 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-news/ChangeLog,v 1.73 
2014/05/20 07:08:32 patrick Exp $
+
+*twisted-news-14.0.0 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +twisted-news-14.0.0.ebuild:
+  Bump
 
   21 Jan 2014; Patrick Lauer patr...@gentoo.org -twisted-news-10.2.0.ebuild,
   -twisted-news-11.0.0.ebuild, -twisted-news-11.1.0.ebuild,



1.1  dev-python/twisted-news/twisted-news-14.0.0.ebuild

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

Index: twisted-news-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-news/twisted-news-14.0.0.ebuild,v 
1.1 2014/05/20 07:08:32 patrick Exp $

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

inherit twisted-r1

DESCRIPTION=Twisted News is an NNTP server and programming library.

KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=

DEPEND==dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
=dev-python/twisted-mail-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
RDEPEND=${DEPEND}






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-pair: twisted-pair-14.0.0.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:10:35

  Modified: ChangeLog
  Added:twisted-pair-14.0.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.28 dev-python/twisted-pair/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-pair/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog   21 Jan 2014 04:54:08 -  1.27
+++ ChangeLog   20 May 2014 07:10:35 -  1.28
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-pair
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-pair/ChangeLog,v 1.27 
2014/01/21 04:54:08 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-pair/ChangeLog,v 1.28 
2014/05/20 07:10:35 patrick Exp $
+
+*twisted-pair-14.0.0 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +twisted-pair-14.0.0.ebuild:
+  Bump
 
   21 Jan 2014; Patrick Lauer patr...@gentoo.org -twisted-pair-11.1.0.ebuild,
   -twisted-pair-12.0.0.ebuild, -twisted-pair-12.2.0.ebuild:



1.1  dev-python/twisted-pair/twisted-pair-14.0.0.ebuild

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

Index: twisted-pair-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-pair/twisted-pair-14.0.0.ebuild,v 
1.1 2014/05/20 07:10:35 patrick Exp $

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

inherit twisted-r1

DESCRIPTION=Twisted low-level networking

KEYWORDS=~amd64 ~x86
IUSE=

DEPEND==dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
dev-python/eunuchs[${PYTHON_USEDEP}]
RDEPEND=${DEPEND}






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-runner: twisted-runner-14.0.0.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:11:44

  Modified: ChangeLog
  Added:twisted-runner-14.0.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.76 dev-python/twisted-runner/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-runner/ChangeLog?rev=1.76view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-runner/ChangeLog?rev=1.76content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-runner/ChangeLog?r1=1.75r2=1.76

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-runner/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   21 Jan 2014 04:54:48 -  1.75
+++ ChangeLog   20 May 2014 07:11:44 -  1.76
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-runner
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-runner/ChangeLog,v 1.75 
2014/01/21 04:54:48 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-runner/ChangeLog,v 1.76 
2014/05/20 07:11:44 patrick Exp $
+
+*twisted-runner-14.0.0 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org 
+twisted-runner-14.0.0.ebuild:
+  Bump
 
   21 Jan 2014; Patrick Lauer patr...@gentoo.org 
-twisted-runner-10.2.0.ebuild,
   -twisted-runner-11.0.0.ebuild, -twisted-runner-11.1.0.ebuild,



1.1  dev-python/twisted-runner/twisted-runner-14.0.0.ebuild

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

Index: twisted-runner-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-runner/twisted-runner-14.0.0.ebuild,v
 1.1 2014/05/20 07:11:44 patrick Exp $

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

inherit twisted-r1

DESCRIPTION=Twisted Runner is a process management library and inetd 
replacement.

KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=

DEPEND==dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
RDEPEND=${DEPEND}






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-words: twisted-words-14.0.0.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:14:27

  Modified: ChangeLog
  Added:twisted-words-14.0.0.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.92 dev-python/twisted-words/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-words/ChangeLog?rev=1.92view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-words/ChangeLog?rev=1.92content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-words/ChangeLog?r1=1.91r2=1.92

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-words/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog   21 Jan 2014 04:56:10 -  1.91
+++ ChangeLog   20 May 2014 07:14:27 -  1.92
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-words
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-words/ChangeLog,v 1.91 
2014/01/21 04:56:10 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-words/ChangeLog,v 1.92 
2014/05/20 07:14:27 patrick Exp $
+
+*twisted-words-14.0.0 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +twisted-words-14.0.0.ebuild:
+  Bump
 
   21 Jan 2014; Patrick Lauer patr...@gentoo.org
   -twisted-words-10.2.0-r1.ebuild, -twisted-words-11.0.0.ebuild,



1.1  dev-python/twisted-words/twisted-words-14.0.0.ebuild

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

Index: twisted-words-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-words/twisted-words-14.0.0.ebuild,v 
1.1 2014/05/20 07:14:27 patrick Exp $

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

inherit twisted-r1

DESCRIPTION=Twisted Words contains Instant Messaging implementations.

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

DEPEND==dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
=dev-python/twisted-web-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
RDEPEND=${DEPEND}






[gentoo-commits] gentoo-x86 commit in dev-python/bsddb3: bsddb3-6.0.1.ebuild ChangeLog

2014-05-20 Thread Ian Delaney (idella4)
idella4 14/05/20 07:21:15

  Modified: bsddb3-6.0.1.ebuild ChangeLog
  Log:
  add py3.4 support
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.5  dev-python/bsddb3/bsddb3-6.0.1.ebuild

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

Index: bsddb3-6.0.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bsddb3-6.0.1.ebuild 19 May 2014 04:38:50 -  1.4
+++ bsddb3-6.0.1.ebuild 20 May 2014 07:21:15 -  1.5
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.1.ebuild,v 1.4 
2014/05/19 04:38:50 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.1.ebuild,v 1.5 
2014/05/20 07:21:15 idella4 Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
 
 inherit db-use distutils-r1 multilib
 



1.104dev-python/bsddb3/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog   19 May 2014 04:38:50 -  1.103
+++ ChangeLog   20 May 2014 07:21:15 -  1.104
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/bsddb3
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.103 
2014/05/19 04:38:50 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.104 
2014/05/20 07:21:15 idella4 Exp $
+
+  20 May 2014; Ian Delaney idel...@gentoo.org bsddb3-6.0.1.ebuild:
+  add py3.4 support
 
   19 May 2014; Mike Gilbert flop...@gentoo.org bsddb3-6.0.1.ebuild:
   Set BERKELEYDB envvars instead of passing them as arguments to setup.py.






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

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:37:19

  Modified: bcrypt-1.0.2-r1.ebuild ChangeLog
  Log:
  Add mock to test deps
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.3  dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild

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

Index: bcrypt-1.0.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bcrypt-1.0.2-r1.ebuild  12 May 2014 14:56:43 -  1.2
+++ bcrypt-1.0.2-r1.ebuild  20 May 2014 07:37:19 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild,v 
1.2 2014/05/12 14:56:43 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/bcrypt-1.0.2-r1.ebuild,v 
1.3 2014/05/20 07:37:19 patrick Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
@@ -17,7 +17,8 @@
 SLOT=0
 
 DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+   test? ( dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}] )
 RDEPEND=$(python_gen_cond_dep '=dev-python/cffi-0.8:=[${PYTHON_USEDEP}]' 
python*)
!dev-python/py-bcrypt
 DISTUTILS_IN_SOURCE_BUILD=1



1.6  dev-python/bcrypt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bcrypt/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   12 May 2014 14:56:43 -  1.5
+++ ChangeLog   20 May 2014 07:37:19 -  1.6
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/bcrypt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/ChangeLog,v 1.5 
2014/05/12 14:56:43 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bcrypt/ChangeLog,v 1.6 
2014/05/20 07:37:19 patrick Exp $
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org bcrypt-1.0.2-r1.ebuild:
+  Add mock to test deps
 
   12 May 2014; Ian Delaney idel...@gentoo.org bcrypt-1.0.2-r1.ebuild:
   drop py2.6 add py3.4 support






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

2014-05-20 Thread Ryan Hill (rhill)
rhill   14/05/20 07:39:28

  Modified: ChangeLog toolchain.eclass
  Log:
  Depend on virtual/libintl rather than sys-devel/gettext (bug #499774).

Revision  ChangesPath
1.1258   eclass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1257
retrieving revision 1.1258
diff -u -r1.1257 -r1.1258
--- ChangeLog   19 May 2014 05:00:34 -  1.1257
+++ ChangeLog   20 May 2014 07:39:28 -  1.1258
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1257 2014/05/19 
05:00:34 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1258 2014/05/20 
07:39:28 rhill Exp $
+
+  20 May 2014; Ryan Hill rh...@gentoo.org toolchain.eclass:
+  Depend on virtual/libintl rather than sys-devel/gettext (bug #499774).
 
   19 May 2014; Mike Gilbert flop...@gentoo.org distutils-r1.eclass:
   Work around bash-4.3 bug by setting PYTHONDONTWRITEBYTECODE to an empty



1.627eclass/toolchain.eclass

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

Index: toolchain.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
retrieving revision 1.626
retrieving revision 1.627
diff -u -r1.626 -r1.627
--- toolchain.eclass18 May 2014 20:28:27 -  1.626
+++ toolchain.eclass20 May 2014 07:39:28 -  1.627
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.626 2014/05/18 
20:28:27 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.627 2014/05/20 
07:39:28 rhill Exp $
 
 # Maintainer: Toolchain Ninjas toolch...@gentoo.org
 
@@ -148,7 +148,7 @@
 # DEPEND 
 
 RDEPEND=sys-libs/zlib
-   nls? ( sys-devel/gettext )
+   nls? ( virtual/libintl )
 
 tc_version_is_at_least 3  RDEPEND+= virtual/libiconv
 






[gentoo-commits] gentoo-x86 commit in dev-python/flask-security: flask-security-1.7.2.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:43:31

  Modified: ChangeLog
  Added:flask-security-1.7.2.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.4  dev-python/flask-security/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-security/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   28 Jan 2014 06:42:08 -  1.3
+++ ChangeLog   20 May 2014 07:43:31 -  1.4
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/flask-security
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-security/ChangeLog,v 1.3 
2014/01/28 06:42:08 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-security/ChangeLog,v 1.4 
2014/05/20 07:43:31 patrick Exp $
+
+*flask-security-1.7.2 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +flask-security-1.7.2.ebuild:
+  Bump
 
 *flask-security-1.7.1 (28 Jan 2014)
 



1.1  dev-python/flask-security/flask-security-1.7.2.ebuild

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

Index: flask-security-1.7.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/flask-security/flask-security-1.7.2.ebuild,v 
1.1 2014/05/20 07:43:31 patrick Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

MY_PN=Flask-Security
MY_P=${MY_PN}-${PV}

DESCRIPTION=Simple security for Flask apps
HOMEPAGE=http://pythonhosted.org/${MY_PN}/ 
https://pypi.python.org/pypi/${MY_PN};
SRC_URI=mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=test
# packages of this type require local running  instances of databases
# which then require connect to localhost
RESTRICT=test

RDEPEND==dev-python/flask-0.10.1[${PYTHON_USEDEP}]
dev-python/itsdangerous[${PYTHON_USEDEP}]
=dev-python/passlib-1.6.2[${PYTHON_USEDEP}]
=dev-python/flask-login-0.2.9[${PYTHON_USEDEP}]
=dev-python/flask-mail-0.9.0[${PYTHON_USEDEP}]
=dev-python/flask-wtf-0.9.3f[${PYTHON_USEDEP}]
=dev-python/flask-principal-0.4.0[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/flask-sqlalchemy[${PYTHON_USEDEP}]
dev-python/flask-mongoengine[${PYTHON_USEDEP}]
dev-python/flask-peewee[${PYTHON_USEDEP}]
dev-python/bcrypt[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
)

S=${WORKDIR}/${MY_P}

python_test() {
nosetests || die Testing failed with ${EPYTHON}
}






[gentoo-commits] proj/eselect:master commit in: /

2014-05-20 Thread Ulrich Müller
commit: a39b2b8c2efc1ff95e4c1b5b94e2b9774c2d7ddd
Author: Ulrich Müller ulm AT gentoo DOT org
AuthorDate: Tue May 20 07:46:26 2014 +
Commit: Ulrich Müller ulm AT gentoo DOT org
CommitDate: Tue May 20 07:46:26 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=a39b2b8c

Automake doesn't play well with leading whitespace in variables.

---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 63081e7..2f0227f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -80,7 +80,7 @@ EXTRAVERSION=
 if test -d ${GIT_DIR:-.git}; then
 COMMIT=`git describe --always HEAD`
 if test x$COMMIT != x; then
-EXTRAVERSION= (commit $COMMIT)
+EXTRAVERSION=, commit $COMMIT
 fi
 AC_MSG_RESULT([yes$EXTRAVERSION])
 else



[gentoo-commits] gentoo-x86 commit in dev-python/flask-script: flask-script-2.0.5.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 07:46:19

  Modified: ChangeLog
  Added:flask-script-2.0.5.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.16 dev-python/flask-script/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   6 May 2014 10:24:00 -   1.15
+++ ChangeLog   20 May 2014 07:46:18 -  1.16
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/flask-script
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v 1.15 
2014/05/06 10:24:00 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v 1.16 
2014/05/20 07:46:18 patrick Exp $
+
+*flask-script-2.0.5 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +flask-script-2.0.5.ebuild:
+  Bump
 
 *flask-script-2.0.3 (06 May 2014)
 



1.1  dev-python/flask-script/flask-script-2.0.5.ebuild

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

Index: flask-script-2.0.5.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/flask-script/flask-script-2.0.5.ebuild,v 1.1 
2014/05/20 07:46:18 patrick Exp $

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

inherit distutils-r1

MY_PN=Flask-Script
MY_P=${MY_PN}-${PV}

DESCRIPTION=Flask support for writing external scripts.
HOMEPAGE=http://packages.python.org/Flask-Script/ 
http://pypi.python.org/pypi/Flask-Script;
SRC_URI=mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz

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

RDEPEND==dev-python/flask-0.10.1-r1[${PYTHON_USEDEP}]
virtual/python-argparse[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/pytest[${PYTHON_USEDEP}] )

S=${WORKDIR}/${MY_P}

python_compile_all() {
if use doc; then
einfo Generation of documentation by ${PYTHON}
PYTHONPATH=.. emake -C docs html || die Generation of 
documentation failed
fi
}

python_test() {
py.test tests.py || die Tests failed under ${EPYTHON}
}

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






[gentoo-commits] proj/eselect:master commit in: man/, libs/, /, bin/

2014-05-20 Thread Ulrich Müller
commit: 2996ee3ab94c875f7d000ce73ea1918d748793c5
Author: Ulrich Müller ulm AT gentoo DOT org
AuthorDate: Tue May 20 07:59:09 2014 +
Commit: Ulrich Müller ulm AT gentoo DOT org
CommitDate: Tue May 20 07:59:09 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=2996ee3a

Use % instead of , as delimiter for sed.

* bin/Makefile.am (dosed):
* libs/Makefile.am (dosed):
* man/Makefile.am (dosed): Use % instead of , as delimiter.

---
 ChangeLog| 4 
 bin/Makefile.am  | 8 
 libs/Makefile.am | 8 
 man/Makefile.am  | 2 +-
 4 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index d5ddaef..d9dd9fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2014-05-20  Ulrich Müller  u...@gentoo.org
 
+   * bin/Makefile.am (dosed):
+   * libs/Makefile.am (dosed):
+   * man/Makefile.am (dosed): Use % instead of , as delimiter.
+
* configure.ac: Replace git rev-parse by git describe, now
that git-r3.eclass supports it (bug 489100).
 

diff --git a/bin/Makefile.am b/bin/Makefile.am
index 7ba2996..20902c1 100644
--- a/bin/Makefile.am
+++ b/bin/Makefile.am
@@ -1,10 +1,10 @@
 bin_SCRIPTS = eselect
 EXTRA_DIST = eselect.in
 
-dosed = @SED@ -e 's,\@BASH\@,$(BASH),g' \
- -e 's,\@DATADIR\@,$(datadir),g' \
- -e 's,\@EPREFIX\@,$(EPREFIX),g' \
- -e 's,\@VERSION\@,$(VERSION)$(EXTRAVERSION),g'
+dosed = @SED@ -e 's%\@BASH\@%$(BASH)%g' \
+ -e 's%\@DATADIR\@%$(datadir)%g' \
+ -e 's%\@EPREFIX\@%$(EPREFIX)%g' \
+ -e 's%\@VERSION\@%$(VERSION)$(EXTRAVERSION)%g'
 
 % : %.in
@echo Building $@...

diff --git a/libs/Makefile.am b/libs/Makefile.am
index bab373e..027ef73 100644
--- a/libs/Makefile.am
+++ b/libs/Makefile.am
@@ -27,10 +27,10 @@ EXTRA_DIST = \
tests.bash.in
 
 dosed = @SED@ \
-   -e 's,\@SED\@,@SED@,g' \
-   -e 's,\@PORTAGEQ\@,@PORTAGEQ@,g' \
-   -e 's,\@ENV_UPDATE\@,@ENV_UPDATE@,g' \
-   -e 's,\@CANONICALISE\@,@CANONICALISE@,g'
+   -e 's%\@SED\@%@SED@%g' \
+   -e 's%\@PORTAGEQ\@%@PORTAGEQ@%g' \
+   -e 's%\@ENV_UPDATE\@%@ENV_UPDATE@%g' \
+   -e 's%\@CANONICALISE\@%@CANONICALISE@%g'
 
 %.bash : %.bash.in
@$(dosed) $  $@

diff --git a/man/Makefile.am b/man/Makefile.am
index f93b85b..c4bbdce 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -14,7 +14,7 @@ EXTRA_DIST = $(man_MANS)
 MAINTAINERCLEANFILES = Makefile.in
 
 # turn foo-suffix into foo.eselect.5
-dosed = @SED@ -e 's,^\(.*\)-.*,\1\.eselect\.5,'
+dosed = @SED@ -e 's%^\(.*\)-.*%\1\.eselect\.5%'
 
 install-data-local : $(foreach f, $(symlinks), install-symlink-$(f))
 



[gentoo-commits] gentoo-x86 commit in sys-devel/gcc/files: fix_libtool_files.sh

2014-05-20 Thread Ryan Hill (rhill)
rhill   14/05/20 08:00:40

  Modified: fix_libtool_files.sh
  Log:
  Stop using einfo/eerror in fix_libtool_files.sh to avoid a dependency on
  sys-apps/gentoo-functions (bug #504434).
  
  Signed-off-by: Ryan Hill rh...@gentoo.org
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
957A8463)

Revision  ChangesPath
1.17 sys-devel/gcc/files/fix_libtool_files.sh

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/files/fix_libtool_files.sh?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/files/fix_libtool_files.sh?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/files/fix_libtool_files.sh?r1=1.16r2=1.17

Index: fix_libtool_files.sh
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/files/fix_libtool_files.sh,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- fix_libtool_files.sh18 May 2012 21:28:56 -  1.16
+++ fix_libtool_files.sh20 May 2014 08:00:40 -  1.17
@@ -1,7 +1,7 @@
 #!/bin/sh
-# 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/sys-devel/gcc/files/fix_libtool_files.sh,v 
1.16 2012/05/18 21:28:56 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/files/fix_libtool_files.sh,v 
1.17 2014/05/20 08:00:40 rhill Exp $
 
 usage() {
 cat  USAGE_END
@@ -38,10 +38,9 @@
 ARGV3=$3
 
 . /etc/profile || exit 1
-. /etc/init.d/functions.sh || exit 1
 
 if [ ${EUID:-0} -ne 0 ] ; then
-   eerror ${0##*/}: Must be root.
+   echo ${0##*/}: Must be root.
exit 1
 fi
 
@@ -54,7 +53,7 @@
 AWKDIR=/usr/share/gcc-data
 
 if [ ! -r ${AWKDIR}/fixlafiles.awk ] ; then
-   eerror ${0##*/}: ${AWKDIR}/fixlafiles.awk does not exist!
+   echo ${0##*/}: ${AWKDIR}/fixlafiles.awk does not exist!
exit 1
 fi
 
@@ -62,7 +61,7 @@
 
 export OLDVER OLDCHOST
 
-einfo Scanning libtool files for hardcoded gcc library paths...
+echo Scanning libtool files for hardcoded gcc library paths...
 exec gawk -f ${AWKDIR}/fixlafiles.awk
 
 # vim:ts=4






[gentoo-commits] gentoo-x86 commit in sys-devel/gcc: ChangeLog

2014-05-20 Thread Ryan Hill (rhill)
rhill   14/05/20 08:00:39

  Modified: ChangeLog
  Log:
  Stop using einfo/eerror in fix_libtool_files.sh to avoid a dependency on
  sys-apps/gentoo-functions (bug #504434).
  
  Signed-off-by: Ryan Hill rh...@gentoo.org
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
957A8463)

Revision  ChangesPath
1.1002   sys-devel/gcc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.1001
retrieving revision 1.1002
diff -u -r1.1001 -r1.1002
--- ChangeLog   18 May 2014 08:33:52 -  1.1001
+++ ChangeLog   20 May 2014 08:00:39 -  1.1002
@@ -1,6 +1,10 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1001 2014/05/18 
08:33:52 rhill Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1002 2014/05/20 
08:00:39 rhill Exp $
+
+  20 May 2014; Ryan Hill rh...@gentoo.org files/fix_libtool_files.sh:
+  Stop using einfo/eerror in fix_libtool_files.sh to avoid a dependency on
+  sys-apps/gentoo-functions (bug #504434).
 
 *gcc-4.9.0 (18 May 2014)
 






[gentoo-commits] proj/eselect:master commit in: /

2014-05-20 Thread Ulrich Müller
commit: 52fc546e3590d79921420705bd1771298656fa65
Author: Ulrich Müller ulm AT gentoo DOT org
AuthorDate: Tue May 20 08:03:21 2014 +
Commit: Ulrich Müller ulm AT gentoo DOT org
CommitDate: Tue May 20 08:03:21 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=52fc546e

Add git to EXTRAVERSION.

---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 2f0227f..ea3c58e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -80,9 +80,9 @@ EXTRAVERSION=
 if test -d ${GIT_DIR:-.git}; then
 COMMIT=`git describe --always HEAD`
 if test x$COMMIT != x; then
-EXTRAVERSION=, commit $COMMIT
+EXTRAVERSION=, git commit $COMMIT
 fi
-AC_MSG_RESULT([yes$EXTRAVERSION])
+AC_MSG_RESULT([yes${COMMIT:+, at commit $COMMIT}])
 else
 AC_MSG_RESULT(no)
 fi



[gentoo-commits] gentoo-x86 commit in dev-python/peewee: peewee-2.1.7.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 08:11:00

  Modified: ChangeLog
  Added:peewee-2.1.7.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.6  dev-python/peewee/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   14 May 2014 23:21:07 -  1.5
+++ ChangeLog   20 May 2014 08:11:00 -  1.6
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/peewee
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.5 
2014/05/14 23:21:07 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.6 
2014/05/20 08:11:00 patrick Exp $
+
+*peewee-2.1.7 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +peewee-2.1.7.ebuild:
+  Bump
 
 *peewee-2.1.6 (14 May 2014)
 



1.1  dev-python/peewee/peewee-2.1.7.ebuild

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

Index: peewee-2.1.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/peewee-2.1.7.ebuild,v 1.1 
2014/05/20 08:11:00 patrick Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=Small python ORM
HOMEPAGE=https://github.com/coleifer/peewee/;
SRC_URI=https://github.com/coleifer/${PN}/archive/${PV}.tar.gz;
LICENSE=BSD
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=examples test

RDEPEND=
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/apsw[${PYTHON_USEDEP}]
dev-python/psycopg[${PYTHON_USEDEP}]
)

python_test() {
${PYTHON} ./runtests.py || die tests failed
}

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






[gentoo-commits] gentoo-x86 commit in dev-python/wtf-peewee: wtf-peewee-0.2.1.ebuild ChangeLog

2014-05-20 Thread Patrick Lauer (patrick)
patrick 14/05/20 08:12:49

  Modified: ChangeLog
  Added:wtf-peewee-0.2.1.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.5  dev-python/wtf-peewee/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/wtf-peewee/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   3 May 2014 08:03:02 -   1.4
+++ ChangeLog   20 May 2014 08:12:48 -  1.5
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/wtf-peewee
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wtf-peewee/ChangeLog,v 1.4 
2014/05/03 08:03:02 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wtf-peewee/ChangeLog,v 1.5 
2014/05/20 08:12:48 patrick Exp $
+
+*wtf-peewee-0.2.1 (20 May 2014)
+
+  20 May 2014; Patrick Lauer patr...@gentoo.org +wtf-peewee-0.2.1.ebuild:
+  Bump
 
 *wtf-peewee-0.2.0 (03 May 2014)
 



1.1  dev-python/wtf-peewee/wtf-peewee-0.2.1.ebuild

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

Index: wtf-peewee-0.2.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/wtf-peewee/wtf-peewee-0.2.1.ebuild,v 1.1 
2014/05/20 08:12:48 patrick Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

RESTRICT=test # broken

DESCRIPTION=Small python ORM
HOMEPAGE=https://github.com/coleifer/peewee/;
SRC_URI=https://github.com/coleifer/${PN}/archive/${PV}.tar.gz;
LICENSE=BSD
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=test

RDEPEND=
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/peewee[${PYTHON_USEDEP}]
dev-python/wtforms[${PYTHON_USEDEP}]

python_test() {
nosetests || die Testing failed with ${EPYTHON}
}






[gentoo-commits] gentoo-x86 commit in dev-python/redis-py: redis-py-2.9.1.ebuild ChangeLog

2014-05-20 Thread Ian Delaney (idella4)
idella4 14/05/20 08:18:08

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

Revision  ChangesPath
1.3  dev-python/redis-py/redis-py-2.9.1.ebuild

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

Index: redis-py-2.9.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.9.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- redis-py-2.9.1.ebuild   31 Mar 2014 21:09:33 -  1.2
+++ redis-py-2.9.1.ebuild   20 May 2014 08:18:08 -  1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.9.1.ebuild,v 
1.2 2014/03/31 21:09:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.9.1.ebuild,v 
1.3 2014/05/20 08:18:08 idella4 Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
 
 inherit distutils-r1
 



1.45 dev-python/redis-py/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/ChangeLog?rev=1.45view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/ChangeLog?rev=1.45content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/ChangeLog?r1=1.44r2=1.45

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/redis-py/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   31 Mar 2014 21:09:33 -  1.44
+++ ChangeLog   20 May 2014 08:18:08 -  1.45
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/redis-py
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/ChangeLog,v 1.44 
2014/03/31 21:09:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/ChangeLog,v 1.45 
2014/05/20 08:18:08 idella4 Exp $
+
+  20 May 2014; Ian Delaney idel...@gentoo.org redis-py-2.9.1.ebuild:
+  drop py2.6 pypy2_0 add py3.4 support
 
   31 Mar 2014; Michał Górny mgo...@gentoo.org redis-py-2.7.2-r1.ebuild,
   redis-py-2.7.4.ebuild, redis-py-2.7.5.ebuild, redis-py-2.7.6.ebuild,






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-core: ChangeLog twisted-core-14.0.0.ebuild

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 08:30:57

  Modified: ChangeLog twisted-core-14.0.0.ebuild
  Log:
  Add dep, drop keywords.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.21 dev-python/twisted-core/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?rev=1.21view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?rev=1.21content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?r1=1.20r2=1.21

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   20 May 2014 06:56:34 -  1.20
+++ ChangeLog   20 May 2014 08:30:57 -  1.21
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/twisted-core
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.20 
2014/05/20 06:56:34 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.21 
2014/05/20 08:30:57 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org twisted-core-14.0.0.ebuild:
+  Add dep, drop keywords.
 
 *twisted-core-14.0.0 (20 May 2014)
 



1.2  dev-python/twisted-core/twisted-core-14.0.0.ebuild

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

Index: twisted-core-14.0.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- twisted-core-14.0.0.ebuild  20 May 2014 06:56:34 -  1.1
+++ twisted-core-14.0.0.ebuild  20 May 2014 08:30:57 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 
1.1 2014/05/20 06:56:34 patrick Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 
1.2 2014/05/20 08:30:57 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -12,15 +12,14 @@
 
 DESCRIPTION=An asynchronous networking framework written in Python
 
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
+KEYWORDS=~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=crypt gtk serial test
 
 DEPEND==net-zope/zope-interface-3.6.0[${PYTHON_USEDEP}]
crypt? ( =dev-python/pyopenssl-0.10[${PYTHON_USEDEP}] )
gtk? ( dev-python/pygtk:2[${PYTHON_USEDEP}] )
-   serial? ( dev-python/pyserial[${PYTHON_USEDEP}] )
-# Wait for keywording on ~arm/~hppa/~amd64-fbsd:
-#  test? ( dev-python/twisted-lore[${PYTHON_USEDEP}] )
+   serial? ( dev-python/pyserial[${PYTHON_USEDEP}] )
+   test? ( dev-python/twisted-lore[${PYTHON_USEDEP}] )
 RDEPEND=${DEPEND}
 
 PATCHES=(






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-core: twisted-core-14.0.0.ebuild ChangeLog

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 08:45:03

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

Revision  ChangesPath
1.3  dev-python/twisted-core/twisted-core-14.0.0.ebuild

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

Index: twisted-core-14.0.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- twisted-core-14.0.0.ebuild  20 May 2014 08:30:57 -  1.2
+++ twisted-core-14.0.0.ebuild  20 May 2014 08:45:03 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 
1.2 2014/05/20 08:30:57 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 
1.3 2014/05/20 08:45:03 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -12,7 +12,7 @@
 
 DESCRIPTION=An asynchronous networking framework written in Python
 
-KEYWORDS=~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=crypt gtk serial test
 
 DEPEND==net-zope/zope-interface-3.6.0[${PYTHON_USEDEP}]



1.22 dev-python/twisted-core/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   20 May 2014 08:30:57 -  1.21
+++ ChangeLog   20 May 2014 08:45:03 -  1.22
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/twisted-core
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.21 
2014/05/20 08:30:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.22 
2014/05/20 08:45:03 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org twisted-core-14.0.0.ebuild:
+  Marked ~hppa (bug #510832).
 
   20 May 2014; Jeroen Roovers j...@gentoo.org twisted-core-14.0.0.ebuild:
   Add dep, drop keywords.






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-core: ChangeLog twisted-core-14.0.0.ebuild

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 08:51:02

  Modified: ChangeLog twisted-core-14.0.0.ebuild
  Log:
  Revert. Drop RESTRICT=test.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.23 dev-python/twisted-core/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?rev=1.23view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?rev=1.23content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?r1=1.22r2=1.23

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   20 May 2014 08:45:03 -  1.22
+++ ChangeLog   20 May 2014 08:51:01 -  1.23
@@ -1,9 +1,6 @@
 # ChangeLog for dev-python/twisted-core
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.22 
2014/05/20 08:45:03 jer Exp $
-
-  20 May 2014; Jeroen Roovers j...@gentoo.org twisted-core-14.0.0.ebuild:
-  Marked ~hppa (bug #510832).
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.23 
2014/05/20 08:51:01 jer Exp $
 
   20 May 2014; Jeroen Roovers j...@gentoo.org twisted-core-14.0.0.ebuild:
   Add dep, drop keywords.



1.4  dev-python/twisted-core/twisted-core-14.0.0.ebuild

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

Index: twisted-core-14.0.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- twisted-core-14.0.0.ebuild  20 May 2014 08:45:03 -  1.3
+++ twisted-core-14.0.0.ebuild  20 May 2014 08:51:01 -  1.4
@@ -1,18 +1,15 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 
1.3 2014/05/20 08:45:03 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 
1.4 2014/05/20 08:51:01 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
 
-# bug 510830
-RESTRICT=test
-
 inherit eutils flag-o-matic twisted-r1
 
 DESCRIPTION=An asynchronous networking framework written in Python
 
-KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=crypt gtk serial test
 
 DEPEND==net-zope/zope-interface-3.6.0[${PYTHON_USEDEP}]






[gentoo-commits] gentoo-x86 commit in sys-libs/db: db-6.0.30.ebuild ChangeLog

2014-05-20 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/20 08:53:18

  Modified: ChangeLog
  Added:db-6.0.30.ebuild
  Log:
  Version bump (bug #504248)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.348sys-libs/db/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/ChangeLog?rev=1.348view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/ChangeLog?rev=1.348content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/ChangeLog?r1=1.347r2=1.348

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v
retrieving revision 1.347
retrieving revision 1.348
diff -u -r1.347 -r1.348
--- ChangeLog   15 May 2014 18:36:45 -  1.347
+++ ChangeLog   20 May 2014 08:53:18 -  1.348
@@ -1,6 +1,11 @@
 # ChangeLog for sys-libs/db
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.347 2014/05/15 
18:36:45 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.348 2014/05/20 
08:53:18 polynomial-c Exp $
+
+*db-6.0.30 (20 May 2014)
+
+  20 May 2014; Lars Wendler polynomia...@gentoo.org +db-6.0.30.ebuild:
+  Version bump (bug #504248).
 
 *db-4.8.30-r1 (15 May 2014)
 *db-5.3.28-r2 (15 May 2014)



1.1  sys-libs/db/db-6.0.30.ebuild

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

Index: db-6.0.30.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-6.0.30.ebuild,v 1.1 
2014/05/20 08:53:18 polynomial-c Exp $

EAPI=4
inherit eutils db flag-o-matic java-pkg-opt-2 autotools multilib 
multilib-minimal versionator

#Number of official patches
#PATCHNO=`echo ${PV}|sed -e s,\(.*_p\)\([0-9]*\),\2,`
PATCHNO=${PV/*.*.*_p}
if [[ ${PATCHNO} == ${PV} ]] ; then
MY_PV=${PV}
MY_P=${P}
PATCHNO=0
else
MY_PV=${PV/_p${PATCHNO}}
MY_P=${PN}-${MY_PV}
fi

S_BASE=${WORKDIR}/${MY_P}
S=${S_BASE}/build_unix
DESCRIPTION=Oracle Berkeley DB
HOMEPAGE=http://www.oracle.com/technology/software/products/berkeley-db/index.html;
SRC_URI=http://download.oracle.com/berkeley-db/${MY_P}.tar.gz;
for (( i=1 ; i=${PATCHNO} ; i++ )) ; do
export SRC_URI=${SRC_URI} 
http://www.oracle.com/technology/products/berkeley-db/db/update/${MY_PV}/patch.${MY_PV}.${i};
done

LICENSE=AGPL-3
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd
IUSE=doc java cxx tcl test

# the entire testsuite needs the TCL functionality
DEPEND=tcl? ( =dev-lang/tcl-8.4[${MULTILIB_USEDEP}] )
test? ( =dev-lang/tcl-8.4[${MULTILIB_USEDEP}] )
java? ( =virtual/jdk-1.5 )
=sys-devel/binutils-2.16.1
RDEPEND=tcl? ( dev-lang/tcl[${MULTILIB_USEDEP}] )
java? ( =virtual/jre-1.5 )

MULTILIB_WRAPPED_HEADERS=(
/usr/include/db$(get_version_component_range 1-2)/db.h
)

src_unpack() {
unpack ${MY_P}.tar.gz
}

src_prepare() {
cd ${WORKDIR}/${MY_P}
for (( i=1 ; i=${PATCHNO} ; i++ ))
do
epatch ${DISTDIR}/patch.${MY_PV}.${i}
done

# use the includes from the prefix
epatch ${FILESDIR}/${PN}-4.6-jni-check-prefix-first.patch
epatch ${FILESDIR}/${PN}-4.3-listen-to-java-options.patch

# sqlite configure call has an extra leading ..
# upstreamed:5.2.36, missing in 5.3.x/6.x
# still needs to be patched in 6.0.20
epatch ${FILESDIR}/${PN}-6.0.19-sqlite-configure-path.patch

# The upstream testsuite copies .lib and the binaries for each parallel 
test
# core, ~300MB each. This patch uses links instead, saves a lot of 
space.
epatch ${FILESDIR}/${PN}-6.0.20-test-link.patch

# Upstream release script grabs the dates when the script was run, so 
lets
# end-run them to keep the date the same.
export REAL_DB_RELEASE_DATE=$(awk \
'/^DB_VERSION_STRING=/{ gsub(.*\\(|\\).*,,$0); print $0; }' 
\
${S_BASE}/dist/configure)
sed -r -i \
-e /^DB_RELEASE_DATE=/s~=.*~='${REAL_DB_RELEASE_DATE}'~g \
${S_BASE}/dist/RELEASE || die

# Include the SLOT for Java JAR files
# This supersedes the unused jarlocation patches.
sed -r -i \
-e '/jarfile=.*\.jar$/s,(.jar$),-$(LIBVERSION)\1,g' \
${S_BASE}/dist/Makefile.in || die

cd ${S_BASE}/dist || die
rm -f 

[gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-base: ChangeLog gnustep-base-1.24.3.ebuild gnustep-base-1.24.5.ebuild gnustep-base-1.24.0-r1.ebuild gnustep-base-1.24.6.ebuild gnustep-base-1

2014-05-20 Thread Bernard Cafarelli (voyageur)
voyageur14/05/20 08:56:10

  Modified: ChangeLog
  Removed:  gnustep-base-1.24.3.ebuild
gnustep-base-1.24.5.ebuild
gnustep-base-1.24.0-r1.ebuild
gnustep-base-1.24.6.ebuild
gnustep-base-1.24.4.ebuild
  Log:
  Remove vulnerable versions, security bug #508370
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)

Revision  ChangesPath
1.127gnustep-base/gnustep-base/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog   18 May 2014 10:16:11 -  1.126
+++ ChangeLog   20 May 2014 08:56:10 -  1.127
@@ -1,6 +1,13 @@
 # ChangeLog for gnustep-base/gnustep-base
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v 1.126 
2014/05/18 10:16:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v 1.127 
2014/05/20 08:56:10 voyageur Exp $
+
+  20 May 2014; Bernard Cafarelli voyag...@gentoo.org
+  -gnustep-base-1.24.0-r1.ebuild, -gnustep-base-1.24.3.ebuild,
+  -gnustep-base-1.24.4.ebuild, -gnustep-base-1.24.5.ebuild,
+  -gnustep-base-1.24.6.ebuild,
+  -files/gnustep-base-1.24.0-libxml2-2.9_support.patch:
+  Remove vulnerable versions, security bug #508370
 
   18 May 2014; Agostino Sarubbo a...@gentoo.org 
gnustep-base-1.24.6-r1.ebuild:
   Stable for x86, wrt bug #508370






[gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-base/files: gnustep-base-1.24.0-libxml2-2.9_support.patch

2014-05-20 Thread Bernard Cafarelli (voyageur)
voyageur14/05/20 08:56:10

  Removed:  gnustep-base-1.24.0-libxml2-2.9_support.patch
  Log:
  Remove vulnerable versions, security bug #508370
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)



[gentoo-commits] gentoo-x86 commit in dev-ruby/rrdtool-bindings: ChangeLog rrdtool-bindings-1.4.8.ebuild

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 09:05:31

  Modified: ChangeLog rrdtool-bindings-1.4.8.ebuild
  Log:
  Spelling.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.3  dev-ruby/rrdtool-bindings/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   19 May 2014 18:33:20 -  1.2
+++ ChangeLog   20 May 2014 09:05:31 -  1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rrdtool-bindings
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v 1.2 
2014/05/19 18:33:20 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v 1.3 
2014/05/20 09:05:31 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org rrdtool-bindings-1.4.8.ebuild:
+  Spelling.
 
   19 May 2014; Hans de Graaff gra...@gentoo.org
   rrdtool-bindings-1.4.8.ebuild:



1.3  dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild

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

Index: rrdtool-bindings-1.4.8.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rrdtool-bindings-1.4.8.ebuild   19 May 2014 18:33:20 -  1.2
+++ rrdtool-bindings-1.4.8.ebuild   20 May 2014 09:05:31 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild,v
 1.2 2014/05/19 18:33:20 graaff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.4.8.ebuild,v
 1.3 2014/05/20 09:05:31 jer Exp $
 
 EAPI=5
 
@@ -22,8 +22,7 @@
 KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris
 IUSE=
 
-# Block on older versions of rrdtool that installl the bindings
-# themselves.
+# Block on older versions of rrdtool that install the bindings themselves.
 RDEPEND=${RDEPEND} net-analyzer/rrdtool !!net-analyzer/rrdtool-1.4.8-r1
 DEPEND=${DEPEND} net-analyzer/rrdtool
 






[gentoo-commits] gentoo-x86 commit in dev-python/pyzor: metadata.xml pyzor-0.7.0.ebuild ChangeLog

2014-05-20 Thread Ian Delaney (idella4)
idella4 14/05/20 09:39:50

  Modified: metadata.xml ChangeLog
  Added:pyzor-0.7.0.ebuild
  Log:
  bump; virtual re-write, keywords (reluctantly) dropped subsequent to new deps
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.3  dev-python/pyzor/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzor/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml6 Aug 2008 19:13:20 -   1.2
+++ metadata.xml20 May 2014 09:39:50 -  1.3
@@ -4,5 +4,7 @@
 herdpython/herd
 use
flag name='pyzord'enable support for pyzord/flag
+   flag name='mysql'Enables mysql support/flag
+   flag name='redis'Enables redis support/flag
 /use
 /pkgmetadata



1.68 dev-python/pyzor/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzor/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   19 Mar 2014 13:56:07 -  1.67
+++ ChangeLog   20 May 2014 09:39:50 -  1.68
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/pyzor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzor/ChangeLog,v 1.67 
2014/03/19 13:56:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzor/ChangeLog,v 1.68 
2014/05/20 09:39:50 idella4 Exp $
+
+*pyzor-0.7.0 (20 May 2014)
+
+  20 May 2014; Ian Delaney idel...@gentoo.org +pyzor-0.7.0.ebuild,
+  metadata.xml:
+  bump; virtual re-write, keywords (reluctantly) dropped subsequent to new deps
 
   19 Mar 2014; Agostino Sarubbo a...@gentoo.org pyzor-0.5.0-r2.ebuild:
   Stable for alpha, wrt bug #498050



1.1  dev-python/pyzor/pyzor-0.7.0.ebuild

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

Index: pyzor-0.7.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/pyzor/pyzor-0.7.0.ebuild,v 1.1 
2014/05/20 09:39:50 idella4 Exp $

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

inherit distutils-r1

DESCRIPTION=A distributed, collaborative spam detection and filtering network
HOMEPAGE=http://pyzor.sourceforge.net/;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.bz2

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

IUSE=mysql pyzord redis test

RDEPEND=mysql? ( $(python_gen_cond_dep 
'=dev-python/mysql-python-1.2.5[${PYTHON_USEDEP}]' python2_7) )
redis? ( ~dev-python/redis-py-2.9.1[${PYTHON_USEDEP}] )
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]

# https://sourceforge.net/apps/trac/pyzor/attachment/ticket/196/
DISTUTILS_IN_SOURCE_BUILD=1

REQUIRED_USE=test? ( mysql redis )

python_test() {
# https://sourceforge.net/apps/trac/pyzor/ticket/196
# In this ticket it clearly states the suite is written for py2
# While it's feasible to make it into a py3 ready state, nah
if ! python_is_python3; then
PYTHONPATH=. ${PYTHON} ./tests/unit/__init__.py
fi
}

src_install () {
distutils-r1_src_install

if use pyzord; then
dodir /usr/sbin
mv ${ED}usr/bin/pyzord* ${ED}usr/sbin
else
rm ${ED}usr/bin/pyzord*
fi
}

pkg_postinst() {
if use pyzord; then
ewarn /usr/bin/pyzord has been moved to /usr/sbin
fi

einfo If you want to run the pyzor server you will need to emerge / 
re-emerge
einfo with use flag mysql and or redis. Without either flag provides 
only the pyzor client
}






[gentoo-commits] gentoo-x86 commit in www-client/pybugz/files: pybugz-9999-bugzilla-4.4.1.patch

2014-05-20 Thread Justin Lecher (jlec)
jlec14/05/20 09:42:32

  Added:pybugz--bugzilla-4.4.1.patch
  Log:
  www-client/pybugz: Fix patch for live version
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.1  www-client/pybugz/files/pybugz--bugzilla-4.4.1.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/files/pybugz--bugzilla-4.4.1.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/files/pybugz--bugzilla-4.4.1.patch?rev=1.1content-type=text/plain

Index: pybugz--bugzilla-4.4.1.patch
===
 bugz/cli.py | 31 +++
 1 file changed, 27 insertions(+), 4 deletions(-)

diff --git a/bugz/cli.py b/bugz/cli.py
index 5c8261b..ae57a10 100644
--- a/bugz/cli.py
+++ b/bugz/cli.py
@@ -29,6 +29,7 @@ BUGZ: ---
 
 
 DEFAULT_COOKIE_FILE = '.bugz_cookie'
+DEFAULT_TOKEN_FILE = '.bugz_token'
 DEFAULT_NUM_COLS = 80
 
 #
@@ -135,6 +136,12 @@ class PrettyBugz:
except IOError:
pass
 
+   self.token_file = os.path.join(os.environ['HOME'], 
DEFAULT_TOKEN_FILE)
+   try:
+   self.token = open(self.token_file).read().strip()
+   except IOError:
+   self.token = None
+
if getattr(args, 'encoding'):
self.enc = args.encoding
else:
@@ -151,16 +158,21 @@ class PrettyBugz:
def get_input(self, prompt):
return raw_input(prompt)
 
+   def set_token(self, *args):
+   if args and self.token:
+   args[0]['token'] = self.token
+   return args
+
def bzcall(self, method, *args):
Attempt to call method with args. Log in if authentication 
is required.

try:
-   return method(*args)
+   return method(*self.set_token(*args))
except xmlrpclib.Fault, fault:
# Fault code 410 means login required
if fault.faultCode == 410 and not self.skip_auth:
self.login()
-   return method(*args)
+   return method(*self.set_token(*args))
raise
 
def login(self, args=None):
@@ -192,10 +204,21 @@ class PrettyBugz:
self.bz.User.login(params)
except xmlrpclib.Fault as fault:
raise BugzError(Can't login:  + fault.faultString)
+   log_info('Logging in')
+   result = self.bz.User.login(params)
+   if 'token' in result:
+   self.token = result['token']
 
if args is not None:
-   self.cookiejar.save()
-   os.chmod(self.cookiejar.filename, 0600)
+   if self.token:
+   fd = open(self.token_file, 'w')
+   fd.write(self.token)
+   fd.write('\n')
+   fd.close()
+   os.chmod(self.token_file, 0600)
+   else:
+   self.cookiejar.save()
+   os.chmod(self.cookiejar.filename, 0600)
 
def logout(self, args):
log_info('logging out')






[gentoo-commits] gentoo-x86 commit in www-client/pybugz: ChangeLog pybugz-9999.ebuild

2014-05-20 Thread Justin Lecher (jlec)
jlec14/05/20 09:42:31

  Modified: ChangeLog pybugz-.ebuild
  Log:
  www-client/pybugz: Fix patch for live version
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.116www-client/pybugz/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog   19 May 2014 14:35:32 -  1.115
+++ ChangeLog   20 May 2014 09:42:31 -  1.116
@@ -1,6 +1,10 @@
 # ChangeLog for www-client/pybugz
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.115 
2014/05/19 14:35:32 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.116 
2014/05/20 09:42:31 jlec Exp $
+
+  20 May 2014; Justin Lecher j...@gentoo.org pybugz-.ebuild,
+  +files/pybugz--bugzilla-4.4.1.patch:
+  Fix patch for live version
 
   19 May 2014; Justin Lecher j...@gentoo.org -pybugz-0.9.3.ebuild:
   Drop old



1.18 www-client/pybugz/pybugz-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-.ebuild?rev=1.18view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-.ebuild?rev=1.18content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-.ebuild?r1=1.17r2=1.18

Index: pybugz-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-.ebuild,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- pybugz-.ebuild  19 May 2014 14:34:09 -  1.17
+++ pybugz-.ebuild  20 May 2014 09:42:31 -  1.18
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-.ebuild,v 1.17 
2014/05/19 14:34:09 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-.ebuild,v 1.18 
2014/05/20 09:42:31 jlec Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 pypy pypy2_0 )
@@ -26,7 +26,8 @@
 
 RDEPEND=${DEPEND}
zsh-completion? ( app-shells/zsh )
-PATCHES=( ${FILESDIR}/${PN}-0.10.1-bugzilla-4.4.1.patch )
+
+PATCHES=( ${FILESDIR}/${P}-bugzilla-4.4.1.patch )
 
 python_install_all() {
distutils-r1_python_install_all






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

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 09:55:13

  Modified: ChangeLog package.use.mask use.mask
  Log:
  Generally mask USE=tcmalloc.

Revision  ChangesPath
1.209profiles/arch/hppa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog   19 May 2014 20:22:38 -  1.208
+++ ChangeLog   20 May 2014 09:55:13 -  1.209
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/hppa profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v 1.208 
2014/05/19 20:22:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v 1.209 
2014/05/20 09:55:13 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org package.use.mask, use.mask:
+  Generally mask USE=tcmalloc.
 
   19 May 2014; Jeroen Roovers j...@gentoo.org use.mask:
   Mask USE=x265 (bug #510340).



1.138profiles/arch/hppa/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- package.use.mask6 Mar 2014 15:33:47 -   1.137
+++ package.use.mask20 May 2014 09:55:13 -  1.138
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v 1.137 
2014/03/06 15:33:47 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v 1.138 
2014/05/20 09:55:13 jer Exp $
 
 # DON'T TOUCH THIS FILE. Instead, file a bug and assign it to 
h...@gentoo.org.
 
@@ -45,8 +45,8 @@
 
 # Robin H Johnson robb...@gentoo.org (01 Nov 2012)
 # MySQL 5.5 wants systemtap, tcmalloc  jemalloc
-=dev-db/mysql-5.5 systemtap tcmalloc
-=dev-db/mariadb-5.5 systemtap tcmalloc
+=dev-db/mysql-5.5 systemtap
+=dev-db/mariadb-5.5 systemtap
 
 # Jeroen Roovers j...@gentoo.org (10 Jul 2012)
 # USE=clang needs sys-devel/llvm which has not been ported
@@ -89,7 +89,7 @@
 
 # Robin H. Johnson robb...@gentoo.org (03 Sep 2011)
 # Remove this for your arch after you keyword dev-utils/google-perftools and 
virtual/gsasl (bug #381737
-dev-libs/libmemcached tcmalloc sasl
+dev-libs/libmemcached sasl
 
 # Jeroen Roovers j...@gentoo.org (5 Jun 2011)
 # app-office/gnumeric is not keyworded (bug #367513)



1.79 profiles/arch/hppa/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/use.mask?rev=1.79view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/use.mask?rev=1.79content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/use.mask?r1=1.78r2=1.79

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/use.mask,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- use.mask19 May 2014 20:22:38 -  1.78
+++ use.mask20 May 2014 09:55:13 -  1.79
@@ -1,7 +1,11 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/use.mask,v 1.78 
2014/05/19 20:22:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/use.mask,v 1.79 
2014/05/20 09:55:13 jer Exp $
 # DON'T TOUCH THIS FILE. Instead, file a bug and assign it to 
h...@gentoo.org.
 
+# Jeroen Roovers j...@gentoo.org (20 May 2014)
+# USE=tcmalloc needs dev-util/google-perftools
+tcmalloc
+
 # Jeroen Roovers j...@gentoo.org (19 May 2014)
 # media-libs/x265 has not been ported to HPPA (bug #510340)
 x265






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

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 10:02:35

  Modified: libgsasl-1.8.0-r1.ebuild ChangeLog
  Log:
  Stable for HPPA too.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.10 net-libs/libgsasl/libgsasl-1.8.0-r1.ebuild

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

Index: libgsasl-1.8.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgsasl/libgsasl-1.8.0-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libgsasl-1.8.0-r1.ebuild1 Mar 2014 22:22:40 -   1.9
+++ libgsasl-1.8.0-r1.ebuild20 May 2014 10:02:35 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-libs/libgsasl/libgsasl-1.8.0-r1.ebuild,v 1.9 
2014/03/01 22:22:40 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-libs/libgsasl/libgsasl-1.8.0-r1.ebuild,v 1.10 
2014/05/20 10:02:35 jer Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 SRC_URI=mirror://gnu/${PN/lib}/${P}.tar.gz
 LICENSE=GPL-3 LGPL-3
 SLOT=0
-KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~x86-macos
 IUSE=idn gcrypt kerberos nls ntlm static-libs
 DEPEND=
gcrypt? ( dev-libs/libgcrypt:0 )



1.90 net-libs/libgsasl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libgsasl/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog   1 Mar 2014 22:22:40 -   1.89
+++ ChangeLog   20 May 2014 10:02:35 -  1.90
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libgsasl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libgsasl/ChangeLog,v 1.89 
2014/03/01 22:22:40 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgsasl/ChangeLog,v 1.90 
2014/05/20 10:02:35 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org libgsasl-1.8.0-r1.ebuild:
+  Stable for HPPA too.
 
   01 Mar 2014; Michał Górny mgo...@gentoo.org libgsasl-1.8.0-r1.ebuild:
   Update libgcrypt dep to use slot :0.






[gentoo-commits] gentoo-x86 commit in virtual/gsasl: gsasl-2.ebuild ChangeLog

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 10:03:50

  Modified: gsasl-2.ebuild ChangeLog
  Log:
  Stable for HPPA too.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.5  virtual/gsasl/gsasl-2.ebuild

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

Index: gsasl-2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/virtual/gsasl/gsasl-2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gsasl-2.ebuild  20 Oct 2012 17:47:35 -  1.4
+++ gsasl-2.ebuild  20 May 2014 10:03:50 -  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/virtual/gsasl/gsasl-2.ebuild,v 1.4 
2012/10/20 17:47:35 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/gsasl/gsasl-2.ebuild,v 1.5 
2014/05/20 10:03:50 jer Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE=
 SLOT=0
-KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x86-macos
+KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~x86-macos
 IUSE=
 
 DEPEND=|| ( net-libs/libgsasl net-misc/gsasl )



1.17 virtual/gsasl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/gsasl/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   21 Dec 2012 12:53:51 -  1.16
+++ ChangeLog   20 May 2014 10:03:50 -  1.17
@@ -1,6 +1,9 @@
 # ChangeLog for virtual/gsasl
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/gsasl/ChangeLog,v 1.16 2012/12/21 
12:53:51 eras Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/virtual/gsasl/ChangeLog,v 1.17 2014/05/20 
10:03:50 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org gsasl-2.ebuild:
+  Stable for HPPA too.
 
   21 Dec 2012; Eray Aslan e...@gentoo.org -gsasl-1.6.1.ebuild:
   Remove old






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

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 10:04:58

  Modified: ChangeLog package.use.mask
  Log:
  Drop USE=sasl mask for dev-libs/libmemcached.

Revision  ChangesPath
1.210profiles/arch/hppa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog   20 May 2014 09:55:13 -  1.209
+++ ChangeLog   20 May 2014 10:04:58 -  1.210
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/hppa profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v 1.209 
2014/05/20 09:55:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v 1.210 
2014/05/20 10:04:58 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org package.use.mask:
+  Drop USE=sasl mask for dev-libs/libmemcached.
 
   20 May 2014; Jeroen Roovers j...@gentoo.org package.use.mask, use.mask:
   Generally mask USE=tcmalloc.



1.139profiles/arch/hppa/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- package.use.mask20 May 2014 09:55:13 -  1.138
+++ package.use.mask20 May 2014 10:04:58 -  1.139
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v 1.138 
2014/05/20 09:55:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v 1.139 
2014/05/20 10:04:58 jer Exp $
 
 # DON'T TOUCH THIS FILE. Instead, file a bug and assign it to 
h...@gentoo.org.
 
@@ -87,10 +87,6 @@
 # Depends upon an as yet unsupported version of dev-libs/dietlibc
 dev-libs/libowfat diet
 
-# Robin H. Johnson robb...@gentoo.org (03 Sep 2011)
-# Remove this for your arch after you keyword dev-utils/google-perftools and 
virtual/gsasl (bug #381737
-dev-libs/libmemcached sasl
-
 # Jeroen Roovers j...@gentoo.org (5 Jun 2011)
 # app-office/gnumeric is not keyworded (bug #367513)
 app-office/lyx gnumeric






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

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 10:23:30

  Modified: ChangeLog package.use.mask use.mask
  Log:
  Mask USE=systemtap generally until proper kernel support is in place.

Revision  ChangesPath
1.211profiles/arch/hppa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog   20 May 2014 10:04:58 -  1.210
+++ ChangeLog   20 May 2014 10:23:30 -  1.211
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/hppa profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v 1.210 
2014/05/20 10:04:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v 1.211 
2014/05/20 10:23:30 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org package.use.mask, use.mask:
+  Mask USE=systemtap generally until proper kernel support is in place.
 
   20 May 2014; Jeroen Roovers j...@gentoo.org package.use.mask:
   Drop USE=sasl mask for dev-libs/libmemcached.



1.140profiles/arch/hppa/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- package.use.mask20 May 2014 10:04:58 -  1.139
+++ package.use.mask20 May 2014 10:23:30 -  1.140
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v 1.139 
2014/05/20 10:04:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v 1.140 
2014/05/20 10:23:30 jer Exp $
 
 # DON'T TOUCH THIS FILE. Instead, file a bug and assign it to 
h...@gentoo.org.
 
@@ -43,11 +43,6 @@
 # Mask non-keyworded sci-libs/hdf5 for sci-mathematics/octave
 sci-mathematics/octave hdf5 qhull
 
-# Robin H Johnson robb...@gentoo.org (01 Nov 2012)
-# MySQL 5.5 wants systemtap, tcmalloc  jemalloc
-=dev-db/mysql-5.5 systemtap
-=dev-db/mariadb-5.5 systemtap
-
 # Jeroen Roovers j...@gentoo.org (10 Jul 2012)
 # USE=clang needs sys-devel/llvm which has not been ported
 app-portage/eix clang



1.80 profiles/arch/hppa/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/use.mask?rev=1.80view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/use.mask?rev=1.80content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/use.mask?r1=1.79r2=1.80

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/use.mask,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- use.mask20 May 2014 09:55:13 -  1.79
+++ use.mask20 May 2014 10:23:30 -  1.80
@@ -1,8 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/use.mask,v 1.79 
2014/05/20 09:55:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/use.mask,v 1.80 
2014/05/20 10:23:30 jer Exp $
 # DON'T TOUCH THIS FILE. Instead, file a bug and assign it to 
h...@gentoo.org.
 
 # Jeroen Roovers j...@gentoo.org (20 May 2014)
+# Mask USE=systemtap generally until proper kernel support is in place
+systemtap
+
+# Jeroen Roovers j...@gentoo.org (20 May 2014)
 # USE=tcmalloc needs dev-util/google-perftools
 tcmalloc
 






[gentoo-commits] proj/kde:master commit in: kde-base/plasma-workspace/

2014-05-20 Thread Michael Palimaka
commit: 387b580b558be8f036aa3d6dd95b2363114fb5a5
Author: Elias Probst mail AT eliasprobst DOT eu
AuthorDate: Mon May 19 21:34:03 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon May 19 21:36:42 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=387b580b

[kde-base/plasma-workspace] Depends on qtquickcontrols[widgets]

The plasmashell configuration dialog requires at least WidgetMessageDialog.qml
which is provided by dev-qt/qtquickcontrols once it is built with the 'widgets'
USE flag enabled.

Package-Manager: portage-2.2.10

---
 kde-base/plasma-workspace/plasma-workspace-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-base/plasma-workspace/plasma-workspace-.ebuild 
b/kde-base/plasma-workspace/plasma-workspace-.ebuild
index 3e06c8a..b6ce84b 100644
--- a/kde-base/plasma-workspace/plasma-workspace-.ebuild
+++ b/kde-base/plasma-workspace/plasma-workspace-.ebuild
@@ -72,7 +72,7 @@ COMMON_DEPEND=
 
 RDEPEND=${COMMON_DEPEND}
$(add_kdemisc_dep milou)
-   dev-qt/qtquickcontrols:5
+   dev-qt/qtquickcontrols:5[widgets]
!kde-base/freespacenotifier:4
!kde-base/libkworkspace:4
!kde-base/libtaskmanager:4



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

2014-05-20 Thread Ryan Hill (rhill)
rhill   14/05/20 10:41:23

  Modified: ChangeLog toolchain.eclass
  Log:
  Strip -mno-rtm and -mno-htm as libitm requires these for x86/x86_64 and
  ppc/s390 respectively if supported by the assembler (bug #506202).

Revision  ChangesPath
1.1259   eclass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1258
retrieving revision 1.1259
diff -u -r1.1258 -r1.1259
--- ChangeLog   20 May 2014 07:39:28 -  1.1258
+++ ChangeLog   20 May 2014 10:41:23 -  1.1259
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1258 2014/05/20 
07:39:28 rhill Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1259 2014/05/20 
10:41:23 rhill Exp $
+
+  20 May 2014; Ryan Hill rh...@gentoo.org toolchain.eclass:
+  Strip -mno-rtm and -mno-htm as libitm requires these for x86/x86_64 and
+  ppc/s390 respectively if supported by the assembler (bug #506202).
 
   20 May 2014; Ryan Hill rh...@gentoo.org toolchain.eclass:
   Depend on virtual/libintl rather than sys-devel/gettext (bug #499774).



1.628eclass/toolchain.eclass

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

Index: toolchain.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
retrieving revision 1.627
retrieving revision 1.628
diff -u -r1.627 -r1.628
--- toolchain.eclass20 May 2014 07:39:28 -  1.627
+++ toolchain.eclass20 May 2014 10:41:23 -  1.628
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.627 2014/05/20 
07:39:28 rhill Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.628 2014/05/20 
10:41:23 rhill Exp $
 
 # Maintainer: Toolchain Ninjas toolch...@gentoo.org
 
@@ -1340,7 +1340,8 @@
# dont want to funk ourselves
filter-flags '-mabi*' -m31 -m32 -m64
 
-   filter-flags '-frecord-gcc-switches' # 490738
+   filter-flags -frecord-gcc-switches # 490738
+   filter-flags -mno-rtm -mno-htm # 506202
 
if tc_version_is_between 3.2 3.4 ; then
# XXX: this is so outdated it's barely useful, but it don't 
hurt...






[gentoo-commits] dev/xmw:master commit in: dev-util/eclipse-cpl/

2014-05-20 Thread Michael Weber
commit: e6d3a577cfa18dd1ad3109517262f7e9ba33591f
Author: Michael Weber michael AT xmw DOT de
AuthorDate: Tue May 20 10:44:47 2014 +
Commit: Michael Weber xmw AT gentoo DOT org
CommitDate: Tue May 20 10:44:47 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=e6d3a577

make use of USE=coin

Package-Manager: portage-2.2.10
Manifest-Sign-Key: 62EEF090

---
 dev-util/eclipse-cpl/ChangeLog  |  3 +++
 dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild | 10 ++
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/dev-util/eclipse-cpl/ChangeLog b/dev-util/eclipse-cpl/ChangeLog
index e46844c..bbf03bc 100644
--- a/dev-util/eclipse-cpl/ChangeLog
+++ b/dev-util/eclipse-cpl/ChangeLog
@@ -1,3 +1,6 @@
+  20 May 2014; Michael Weber x...@gentoo.org eclipse-cpl-6.1.187.ebuild:
+  make use of USE=coin
+
   18 May 2014; Michael Weber x...@gentoo.org
   +files/eclipse-cpl-6.1.187-Eplex-Makefile.patch,
   +files/eclipse-cpl-6.1.187-Oci-mkdir.patch,

diff --git a/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild 
b/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
index a44e7c1..dfcd591 100644
--- a/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
+++ b/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
@@ -42,10 +42,12 @@ pkg_setup() {
 
 src_unpack() {
default
-   local my_cbc=$(best_version sci-libs/coinor-cbc)
-   cp 
${EROOT}usr/share/doc/${my_cbc/sci-libs\//}/examples/Cbc{Branch,Compare}User.{c,h}pp.*
 . || die
-   unpack ./Cbc{Branch,Compare}User.{c,h}pp.*
-   mv Cbc{Branch,Compare}User.{c,h}pp ${S}/Eplex || die
+   if use coin ; then
+   local my_cbc=$(best_version sci-libs/coinor-cbc)
+   cp 
${EROOT}usr/share/doc/${my_cbc/sci-libs\//}/examples/Cbc{Branch,Compare}User.{c,h}pp.*
 . || die
+   unpack ./Cbc{Branch,Compare}User.{c,h}pp.*
+   mv Cbc{Branch,Compare}User.{c,h}pp ${S}/Eplex || die
+   fi
 }
 
 src_prepare() {



[gentoo-commits] gentoo-x86 commit in dev-python/twisted-web: twisted-web-14.0.0.ebuild ChangeLog

2014-05-20 Thread Marien Zwart (marienz)
marienz 14/05/20 10:47:53

  Modified: ChangeLog
  Added:twisted-web-14.0.0.ebuild
  Log:
  Bump twisted-web to 14.0.0 to be in sync with the rest. Drop keywords.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.100dev-python/twisted-web/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-web/ChangeLog?rev=1.100view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-web/ChangeLog?rev=1.100content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-web/ChangeLog?r1=1.99r2=1.100

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-web/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog   19 Feb 2014 13:49:22 -  1.99
+++ ChangeLog   20 May 2014 10:47:53 -  1.100
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twisted-web
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/ChangeLog,v 1.99 
2014/02/19 13:49:22 ultrabug Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/ChangeLog,v 1.100 
2014/05/20 10:47:53 marienz Exp $
+
+*twisted-web-14.0.0 (20 May 2014)
+
+  20 May 2014; Marien Zwart mari...@gentoo.org +twisted-web-14.0.0.ebuild:
+  Bump twisted-web to 14.0.0 to be in sync with the rest. Drop keywords.
 
 *twisted-web-12.3.0-r1 (19 Feb 2014)
 



1.1  dev-python/twisted-web/twisted-web-14.0.0.ebuild

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

Index: twisted-web-14.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-web/twisted-web-14.0.0.ebuild,v 1.1 
2014/05/20 10:47:53 marienz Exp $

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

inherit twisted-r1

MY_PN=TwistedWeb
DESCRIPTION=Twisted web server, programmable in Python

KEYWORDS=~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
IUSE=soap

DEPEND==dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
soap? ( dev-python/soappy[${PYTHON_USEDEP}] )
RDEPEND=${DEPEND}

python_prepare_all() {
if [[ ${EUID} -eq 0 ]]; then
# Disable tests failing with root permissions.
sed -e s/test_forbiddenResource/_/ -i 
twisted/web/test/test_static.py
sed -e s/testDownloadPageError3/_/ -i 
twisted/web/test/test_webclient.py
fi

distutils-r1_python_prepare_all
}
# testsuite has a PYTHONPATH oddity, currently appears to require a system 
install to effectively import,
# putting in question as to whether it is a testsuite






[gentoo-commits] gentoo-x86 commit in dev-db/redis: ChangeLog redis-2.8.9.ebuild

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 10:53:58

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

Revision  ChangesPath
1.80 dev-db/redis/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/redis/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog   4 May 2014 13:43:30 -   1.79
+++ ChangeLog   20 May 2014 10:53:58 -  1.80
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/redis
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/ChangeLog,v 1.79 2014/05/04 
13:43:30 ultrabug Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/ChangeLog,v 1.80 2014/05/20 
10:53:58 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org redis-2.8.9.ebuild:
+  Marked ~hppa (bug #510626).
 
 *redis-2.8.9 (04 May 2014)
 



1.2  dev-db/redis/redis-2.8.9.ebuild

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

Index: redis-2.8.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/redis/redis-2.8.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- redis-2.8.9.ebuild  4 May 2014 13:43:30 -   1.1
+++ redis-2.8.9.ebuild  20 May 2014 10:53:58 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/redis-2.8.9.ebuild,v 1.1 
2014/05/04 13:43:30 ultrabug Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/redis-2.8.9.ebuild,v 1.2 
2014/05/20 10:53:58 jer Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 SRC_URI=http://download.redis.io/releases/${P}.tar.gz;
 
 LICENSE=BSD
-KEYWORDS=~amd64 ~x86 ~x86-macos ~x86-solaris
+KEYWORDS=~amd64 ~hppa ~x86 ~x86-macos ~x86-solaris
 IUSE=+jemalloc tcmalloc test
 SLOT=0
 






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

2014-05-20 Thread Michael Palimaka
commit: 90864b680b69977324d46e96da4917cd2bd091e3
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Tue May 20 11:10:33 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Tue May 20 11:10:33 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=90864b68

[kde-frameworks/kdelibs4support] Add missing runtime dependencies that are 
required for header translation.

Package-Manager: portage-2.2.8-r1

---
 kde-frameworks/kdelibs4support/kdelibs4support-4.99.0.ebuild | 11 +--
 kde-frameworks/kdelibs4support/kdelibs4support-.ebuild   |  9 +++--
 2 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kdelibs4support/kdelibs4support-4.99.0.ebuild 
b/kde-frameworks/kdelibs4support/kdelibs4support-4.99.0.ebuild
index cdfc329..6e6cfc6 100644
--- a/kde-frameworks/kdelibs4support/kdelibs4support-4.99.0.ebuild
+++ b/kde-frameworks/kdelibs4support/kdelibs4support-4.99.0.ebuild
@@ -12,7 +12,7 @@ LICENSE=LGPL-2+
 KEYWORDS= ~amd64 ~x86 ~amd64-linux ~x86-linux
 IUSE=X
 
-RDEPEND=
+COMMON_DEPEND=
$(add_frameworks_dep kauth)
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kcompletion)
@@ -20,12 +20,14 @@ RDEPEND=
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kdesignerplugin)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemviews)
$(add_frameworks_dep kjobwidgets)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kparts)
@@ -53,7 +55,12 @@ RDEPEND=
x11-libs/libX11
)
 
-DEPEND=${RDEPEND}
+RDEPEND=${COMMON_DEPEND}
+   $(add_frameworks_dep kemoticons)
+   $(add_frameworks_dep kinit)
+   $(add_frameworks_dep kitemmodels)
+
+DEPEND=${COMMON_DEPEND}
$(add_frameworks_dep kdoctools)
dev-qt/designer:5
test? ( dev-qt/qtconcurrent:5 )

diff --git a/kde-frameworks/kdelibs4support/kdelibs4support-.ebuild 
b/kde-frameworks/kdelibs4support/kdelibs4support-.ebuild
index 509bfdd..c9a405a 100644
--- a/kde-frameworks/kdelibs4support/kdelibs4support-.ebuild
+++ b/kde-frameworks/kdelibs4support/kdelibs4support-.ebuild
@@ -12,7 +12,7 @@ LICENSE=LGPL-2+
 KEYWORDS=
 IUSE=X
 
-RDEPEND=
+COMMON_DEPEND=
$(add_frameworks_dep kauth)
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kcompletion)
@@ -55,7 +55,12 @@ RDEPEND=
x11-libs/libX11
)
 
-DEPEND=${RDEPEND}
+RDEPEND=${COMMON_DEPEND}
+   $(add_frameworks_dep kemoticons)
+   $(add_frameworks_dep kinit)
+   $(add_frameworks_dep kitemmodels)
+
+DEPEND=${COMMON_DEPEND}
$(add_frameworks_dep kdoctools)
dev-qt/designer:5
test? ( dev-qt/qtconcurrent:5 )



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

2014-05-20 Thread Mikle Kolyada (zlogene)
zlogene 14/05/20 11:15:59

  Modified: herds.xml
  Log:
  Add myself to *-embedded herds, acked by vapier

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

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

Index: herds.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v
retrieving revision 1.1099
retrieving revision 1.1100
diff -u -r1.1099 -r1.1100
--- herds.xml   18 May 2014 21:28:06 -  1.1099
+++ herds.xml   20 May 2014 11:15:59 -  1.1100
@@ -20,7 +20,7 @@
always a description without a lang attribute. Also there are no overlapping
descriptions allowed (multiple description tags with the same language)
 
-   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1099 
2014/05/18 21:28:06 jauhien Exp $
+   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1100 
2014/05/20 11:15:59 zlogene Exp $
 
 --
 herds
@@ -1427,6 +1427,10 @@
emailhwoar...@gentoo.org/email
nameMarkos Chandras/name
   /maintainer
+  maintainer
+emailzlog...@gentoo.org/email
+nameMikle Kolyada/name
+  /maintainer
 /herd
 herd
   namedesktop-effects/name
@@ -1553,6 +1557,10 @@
emailhwoar...@gentoo.org/email
nameMarkos Chandras/name
   /maintainer
+  maintainer
+   emailzlog...@gentoo.org/email
+   nameMikle Kolyada/name
+  /maintainer
   !-- Do not enable it until the file does not give 500 errors anymore
   maintainingproject/proj/en/base/embedded/index.xml/maintainingproject
   --  /herd






[gentoo-commits] gentoo-x86 commit in dev-python/redis-py: ChangeLog redis-py-2.9.1.ebuild

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 11:27:28

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

Revision  ChangesPath
1.46 dev-python/redis-py/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/ChangeLog?rev=1.46view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/ChangeLog?rev=1.46content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/ChangeLog?r1=1.45r2=1.46

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/redis-py/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog   20 May 2014 08:18:08 -  1.45
+++ ChangeLog   20 May 2014 11:27:28 -  1.46
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/redis-py
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/ChangeLog,v 1.45 
2014/05/20 08:18:08 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/ChangeLog,v 1.46 
2014/05/20 11:27:28 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org redis-py-2.9.1.ebuild:
+  Marked ~hppa (bug #510626).
 
   20 May 2014; Ian Delaney idel...@gentoo.org redis-py-2.9.1.ebuild:
   drop py2.6 pypy2_0 add py3.4 support



1.4  dev-python/redis-py/redis-py-2.9.1.ebuild

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

Index: redis-py-2.9.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.9.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- redis-py-2.9.1.ebuild   20 May 2014 08:18:08 -  1.3
+++ redis-py-2.9.1.ebuild   20 May 2014 11:27:28 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.9.1.ebuild,v 
1.3 2014/05/20 08:18:08 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.9.1.ebuild,v 
1.4 2014/05/20 11:27:28 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
@@ -16,7 +16,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux
 IUSE=test
 
 DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]






[gentoo-commits] gentoo-x86 commit in dev-python/pyzor: ChangeLog pyzor-0.7.0.ebuild

2014-05-20 Thread Jeroen Roovers (jer)
jer 14/05/20 11:28:12

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

Revision  ChangesPath
1.69 dev-python/pyzor/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzor/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   20 May 2014 09:39:50 -  1.68
+++ ChangeLog   20 May 2014 11:28:12 -  1.69
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyzor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzor/ChangeLog,v 1.68 
2014/05/20 09:39:50 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzor/ChangeLog,v 1.69 
2014/05/20 11:28:12 jer Exp $
+
+  20 May 2014; Jeroen Roovers j...@gentoo.org pyzor-0.7.0.ebuild:
+  Marked ~hppa (bug #510626).
 
 *pyzor-0.7.0 (20 May 2014)
 



1.2  dev-python/pyzor/pyzor-0.7.0.ebuild

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

Index: pyzor-0.7.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzor/pyzor-0.7.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pyzor-0.7.0.ebuild  20 May 2014 09:39:50 -  1.1
+++ pyzor-0.7.0.ebuild  20 May 2014 11:28:12 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzor/pyzor-0.7.0.ebuild,v 1.1 
2014/05/20 09:39:50 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzor/pyzor-0.7.0.ebuild,v 1.2 
2014/05/20 11:28:12 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux
 
 IUSE=mysql pyzord redis test
 






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

2014-05-20 Thread Michael Palimaka
commit: 1f8dbd89090f33f362a0644ca2ca4e10dd501767
Author: Elias Probst mail AT eliasprobst DOT eu
AuthorDate: Sun May  4 16:52:12 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Tue May 20 11:32:07 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1f8dbd89

[kde-base/konsole] Add ebuild for frameworks based konsole

Package-Manager: portage-2.2.10

---
 kde-base/konsole/konsole-.ebuild | 56 
 1 file changed, 56 insertions(+)

diff --git a/kde-base/konsole/konsole-.ebuild 
b/kde-base/konsole/konsole-.ebuild
new file mode 100644
index 000..634409e
--- /dev/null
+++ b/kde-base/konsole/konsole-.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK=true
+EGIT_BRANCH=frameworks
+inherit kde5
+
+DESCRIPTION=KDE's terminal emulator
+HOMEPAGE=http://www.kde.org/applications/system/konsole 
http://konsole.kde.org;
+
+KEYWORDS=
+IUSE=X
+
+DEPEND=
+   $(add_frameworks_dep kbookmarks)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep kguiaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep knotifyconfig)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kpty)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtscript:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   X? ( x11-libs/libX11 )
+
+RDEPEND=${DEPEND}
+   !kde-base/konsole:4
+
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package X X11)
+   )
+
+   kde5_src_configure
+}



[gentoo-commits] dev/xmw:master commit in: dev-util/eclipse-cpl/

2014-05-20 Thread Michael Weber
commit: 5eee70b7626f3b9b416d06b1d31d0fa1197c65a8
Author: Michael Weber michael AT xmw DOT de
AuthorDate: Tue May 20 11:47:09 2014 +
Commit: Michael Weber xmw AT gentoo DOT org
CommitDate: Tue May 20 11:47:09 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=5eee70b7

fix tempdir

Package-Manager: portage-2.2.10
Manifest-Sign-Key: 62EEF090

---
 dev-util/eclipse-cpl/ChangeLog  | 3 +++
 dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-util/eclipse-cpl/ChangeLog b/dev-util/eclipse-cpl/ChangeLog
index bbf03bc..5b74253 100644
--- a/dev-util/eclipse-cpl/ChangeLog
+++ b/dev-util/eclipse-cpl/ChangeLog
@@ -1,4 +1,7 @@
   20 May 2014; Michael Weber x...@gentoo.org eclipse-cpl-6.1.187.ebuild:
+  fix tempdir
+
+  20 May 2014; Michael Weber x...@gentoo.org eclipse-cpl-6.1.187.ebuild:
   make use of USE=coin
 
   18 May 2014; Michael Weber x...@gentoo.org

diff --git a/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild 
b/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
index dfcd591..35af3d4 100644
--- a/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
+++ b/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
@@ -183,8 +183,8 @@ src_install() {
make_wrapper jeclipse ${EROOT}opt/${PN}/bin/${ARCH}/jeclipse
fi
 
-   echo ECLIPSEDIR=\${EROOT}opt/${PN}\  ${TMP}/90${PN}
-   doenvd ${TMP}/90${PN}
+   echo ECLIPSEDIR=\${EROOT}opt/${PN}\  ${T}/90${PN}
+   doenvd ${T}/90${PN}
 
dodoc README_UNIX
readme.gentoo_create_doc



[gentoo-commits] dev/xmw:master commit in: dev-util/PyCLP/, dev-python/PyCLP/, profiles/updates/

2014-05-20 Thread Michael Weber
commit: c712b89f9c50d44f3481a9205fcf2a993349a84b
Author: Michael Weber michael AT xmw DOT de
AuthorDate: Tue May 20 11:50:49 2014 +
Commit: Michael Weber xmw AT gentoo DOT org
CommitDate: Tue May 20 11:50:49 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=c712b89f

move dev-util/PyCLP - dev-python/PyCLP

---
 {dev-util = dev-python}/PyCLP/ChangeLog| 0
 {dev-util = dev-python}/PyCLP/Manifest | 0
 {dev-util = dev-python}/PyCLP/PyCLP-0.8.ebuild | 0
 {dev-util = dev-python}/PyCLP/metadata.xml | 0
 profiles/updates/2Q-2014| 1 +
 5 files changed, 1 insertion(+)

diff --git a/dev-util/PyCLP/ChangeLog b/dev-python/PyCLP/ChangeLog
similarity index 100%
rename from dev-util/PyCLP/ChangeLog
rename to dev-python/PyCLP/ChangeLog

diff --git a/dev-util/PyCLP/Manifest b/dev-python/PyCLP/Manifest
similarity index 100%
rename from dev-util/PyCLP/Manifest
rename to dev-python/PyCLP/Manifest

diff --git a/dev-util/PyCLP/PyCLP-0.8.ebuild b/dev-python/PyCLP/PyCLP-0.8.ebuild
similarity index 100%
rename from dev-util/PyCLP/PyCLP-0.8.ebuild
rename to dev-python/PyCLP/PyCLP-0.8.ebuild

diff --git a/dev-util/PyCLP/metadata.xml b/dev-python/PyCLP/metadata.xml
similarity index 100%
rename from dev-util/PyCLP/metadata.xml
rename to dev-python/PyCLP/metadata.xml

diff --git a/profiles/updates/2Q-2014 b/profiles/updates/2Q-2014
new file mode 100644
index 000..3b0aec2
--- /dev/null
+++ b/profiles/updates/2Q-2014
@@ -0,0 +1 @@
+move dev-util/PyCLP dev-python/PyCLP



[gentoo-commits] dev/xmw:master commit in: virtual/salma-deps/

2014-05-20 Thread Michael Weber
commit: cc600a43e6632a1a390cc043c5e6de9d856b3d13
Author: Michael Weber michael AT xmw DOT de
AuthorDate: Tue May 20 12:00:03 2014 +
Commit: Michael Weber xmw AT gentoo DOT org
CommitDate: Tue May 20 12:00:03 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=cc600a43

Initial import

Package-Manager: portage-2.2.10
Manifest-Sign-Key: 62EEF090

---
 virtual/salma-deps/ChangeLog   |  5 +
 virtual/salma-deps/metadata.xml|  8 
 virtual/salma-deps/salma-deps-0.ebuild | 25 +
 3 files changed, 38 insertions(+)

diff --git a/virtual/salma-deps/ChangeLog b/virtual/salma-deps/ChangeLog
new file mode 100644
index 000..6a72bc8
--- /dev/null
+++ b/virtual/salma-deps/ChangeLog
@@ -0,0 +1,5 @@
+*salma-deps-0 (20 May 2014)
+
+  20 May 2014; Michael Weber x...@gentoo.org +metadata.xml,
+  +salma-deps-0.ebuild:
+  Initial import

diff --git a/virtual/salma-deps/metadata.xml b/virtual/salma-deps/metadata.xml
new file mode 100644
index 000..5b80fb9
--- /dev/null
+++ b/virtual/salma-deps/metadata.xml
@@ -0,0 +1,8 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+maintainer
+emailx...@gentoo.org/email
+nameMichael Weber/name
+/maintainer
+/pkgmetadata

diff --git a/virtual/salma-deps/salma-deps-0.ebuild 
b/virtual/salma-deps/salma-deps-0.ebuild
new file mode 100644
index 000..edd8eae
--- /dev/null
+++ b/virtual/salma-deps/salma-deps-0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+DESCRIPTION=Dependencies for diploma thesis software
+HOMEPAGE=
+SRC_URI=
+
+LICENSE=
+SLOT=0
+KEYWORDS=~amd64
+IUSE=
+
+RDEPEND=dev-python/PyCLP
+   dev-python/matplotlib
+   dev-python/statsmodels
+   dev-python/numpy
+   dev-python/nose
+   dev-python/celery
+   dev-python/pyside
+   dev-util/eclipse-cpl[coin]
+   net-misc/rabbitmq-server
+DEPEND=${RDEPEND}



[gentoo-commits] gentoo-x86 commit in dev-embedded/ponyprog/files: ponyprog-2.07a-build.patch

2014-05-20 Thread Mikle Kolyada (zlogene)
zlogene 14/05/20 12:10:11

  Modified: ponyprog-2.07a-build.patch
  Log:
  Revision bump: EAPI=5; epatch_user; fix parallel make issue wrt bug #282244. 
Thanks to Sergey Popov.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.3  dev-embedded/ponyprog/files/ponyprog-2.07a-build.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/ponyprog/files/ponyprog-2.07a-build.patch?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/ponyprog/files/ponyprog-2.07a-build.patch?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/ponyprog/files/ponyprog-2.07a-build.patch?r1=1.2r2=1.3

Index: ponyprog-2.07a-build.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-embedded/ponyprog/files/ponyprog-2.07a-build.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ponyprog-2.07a-build.patch  8 Oct 2010 03:50:37 -   1.2
+++ ponyprog-2.07a-build.patch  20 May 2014 12:10:10 -  1.3
@@ -1,15 +1,20 @@
 Respect LDFLAGS, CC, CXX
 
-http://bugs.gentoo.org/show_bug.cgi?id=317767
+http://bugs.gentoo.org/317767
+
+Fix parallel make
+
+https://bugs.gentoo.org/show_bug.cgi?id=282244
 
 --- Makefile
 +++ Makefile
 @@ -331,7 +331,7 @@
  prps: $(PRPS)
  
- $(PROG):  $(OBJS)
+-$(PROG):  $(OBJS)
++$(PROG):  $(OBJS) vlib
 -  $(CXX) -o $@ $(OBJS) $(LDFLAGS)
-+  $(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBDIR) $(LIBS)
++  $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBDIR) $(LIBS)
  
  %.o: %.cpp
$(CXX) $(CFLAGS) -c $ -o $@
@@ -17,10 +22,10 @@
 +++ v/Config.mk
 @@ -35,8 +35,6 @@
  #-
- # Tools used in the makefile execution
- #-
--CC=   gcc
--CXX   =   g++
+ #CC   =   gcc
+ #CXX  =   g++
+-CC=   gcc-3.4
+-CXX   =   g++-3.4
  
  #-
  # VPATH for dependencies on header files






[gentoo-commits] gentoo-x86 commit in dev-embedded/ponyprog: ponyprog-2.07c-r1.ebuild ChangeLog

2014-05-20 Thread Mikle Kolyada (zlogene)
zlogene 14/05/20 12:10:10

  Modified: ChangeLog
  Added:ponyprog-2.07c-r1.ebuild
  Log:
  Revision bump: EAPI=5; epatch_user; fix parallel make issue wrt bug #282244. 
Thanks to Sergey Popov.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.28 dev-embedded/ponyprog/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/ponyprog/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog   8 Oct 2010 03:53:27 -   1.27
+++ ChangeLog   20 May 2014 12:10:10 -  1.28
@@ -1,6 +1,13 @@
 # ChangeLog for dev-embedded/ponyprog
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/ponyprog/ChangeLog,v 1.27 
2010/10/08 03:53:27 vapier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/ponyprog/ChangeLog,v 1.28 
2014/05/20 12:10:10 zlogene Exp $
+
+*ponyprog-2.07c-r1 (20 May 2014)
+
+  20 May 2014; Mikle Kolyada zlog...@gentoo.org +ponyprog-2.07c-r1.ebuild,
+  files/ponyprog-2.07a-build.patch:
+  Revision bump: EAPI=5; epatch_user; fix parallel make issue wrt bug #282244.
+  Thanks to Sergey Popov.
 
 *ponyprog-2.07c (08 Oct 2010)
 
@@ -101,4 +108,3 @@
 
   16 Mar 2004; Daniel Black dragonhe...@gentoo.org ponyprog-2.06c.ebuild:
   Initial ebuild by Marco Testarmata testarmata.ma...@tiscali.it in bug 
#43289
-



1.1  dev-embedded/ponyprog/ponyprog-2.07c-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/ponyprog/ponyprog-2.07c-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/ponyprog/ponyprog-2.07c-r1.ebuild?rev=1.1content-type=text/plain

Index: ponyprog-2.07c-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-embedded/ponyprog/ponyprog-2.07c-r1.ebuild,v 1.1 
2014/05/20 12:10:10 zlogene Exp $

EAPI=5

inherit eutils toolchain-funcs

DESCRIPTION=Serial device programmer
HOMEPAGE=http://www.lancos.com/ppwin95.html;
SRC_URI=mirror://sourceforge/${PN}/Pony_Prog2000-${PV}.tar.gz

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

RDEPEND=x11-libs/libXaw
x11-libs/libXmu
x11-libs/libXt
x11-libs/libXext
x11-libs/libX11
x11-misc/xdg-utils
DEPEND=${RDEPEND}
|| ( media-gfx/graphicsmagick[imagemagick] media-gfx/imagemagick )

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

src_prepare() {
sed -i -e '/CFLAGS/s:-O2::' v/Config.mk || die
sed -i -e '/include.*asm\/io.h/s:asm:sys:' *.cpp || die
sed -i -e 's/netscape/xdg-open/' e2cmdw.cpp || die

convert ponyprog.ico ponyprog.png

epatch \
${FILESDIR}/${PN}-2.07a-gcc43.patch \
${FILESDIR}/${PN}-2.07c-build.patch
epatch_user
}

src_compile() {
tc-export CC CXX
# most of build is C++, but it uses CFLAGS
CFLAGS=${CXXFLAGS} emake HOMEV=${S}/v
}

src_install() {
dobin bin/ponyprog2000
keepdir /var/lock/uucp
fowners uucp:uucp /var/lock/uucp
fperms 755 /var/lock/uucp
doicon ponyprog.png
make_desktop_entry ponyprog2000 PonyProg2000 ponyprog
}

pkg_postinst() {
elog To use the COM port in user mode (not as root), you need to
elog be in the 'uucp' group.
elog
elog To use the LPT port in user mode (not as root) you need a kernel 
with
elog ppdev, parport and parport_pc compiled in or as modules. You need 
the
elog rights to write to /dev/parport? devices.
}






[gentoo-commits] gentoo-x86 commit in dev-embedded/ponyprog/files: ponyprog-2.07c-build.patch

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

  Modified: ponyprog-2.07c-build.patch
  Log:
  fix parallel make issue (bug #282244)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  dev-embedded/ponyprog/files/ponyprog-2.07c-build.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/ponyprog/files/ponyprog-2.07c-build.patch?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/ponyprog/files/ponyprog-2.07c-build.patch?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/ponyprog/files/ponyprog-2.07c-build.patch?r1=1.1r2=1.2

Index: ponyprog-2.07c-build.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-embedded/ponyprog/files/ponyprog-2.07c-build.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ponyprog-2.07c-build.patch  8 Oct 2010 03:53:28 -   1.1
+++ ponyprog-2.07c-build.patch  20 May 2014 12:18:53 -  1.2
@@ -2,12 +2,17 @@
 
 http://bugs.gentoo.org/317767
 
+Fix parallel make
+
+https://bugs.gentoo.org/show_bug.cgi?id=282244
+
 --- Makefile
 +++ Makefile
 @@ -331,7 +331,7 @@
  prps: $(PRPS)
  
- $(PROG):  $(OBJS)
+-$(PROG):  $(OBJS)
++$(PROG):  $(OBJS) vlib
 -  $(CXX) -o $@ $(OBJS) $(LDFLAGS)
 +  $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBDIR) $(LIBS)
  
@@ -40,3 +45,4 @@
  
  
  
#xxx
+






[gentoo-commits] gentoo-x86 commit in app-i18n/fcitx-rime: ChangeLog fcitx-rime-0.3.1.ebuild

2014-05-20 Thread Yixun Lan (dlan)
dlan14/05/20 12:58:14

  Modified: ChangeLog
  Added:fcitx-rime-0.3.1.ebuild
  Log:
  version bump to 0.3.1
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

Revision  ChangesPath
1.12 app-i18n/fcitx-rime/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/fcitx-rime/ChangeLog?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/fcitx-rime/ChangeLog?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/fcitx-rime/ChangeLog?r1=1.11r2=1.12

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-i18n/fcitx-rime/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   8 Mar 2014 12:04:08 -   1.11
+++ ChangeLog   20 May 2014 12:58:14 -  1.12
@@ -1,6 +1,11 @@
 # ChangeLog for app-i18n/fcitx-rime
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx-rime/ChangeLog,v 1.11 
2014/03/08 12:04:08 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx-rime/ChangeLog,v 1.12 
2014/05/20 12:58:14 dlan Exp $
+
+*fcitx-rime-0.3.1 (20 May 2014)
+
+  20 May 2014; Yixun Lan d...@gentoo.org +fcitx-rime-0.3.1.ebuild:
+  version bump to 0.3.1
 
   08 Mar 2014; Pacho Ramos pa...@gentoo.org fcitx-rime-0.2.2.ebuild:
   amd64 stable, bug 498688



1.1  app-i18n/fcitx-rime/fcitx-rime-0.3.1.ebuild

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

Index: fcitx-rime-0.3.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-i18n/fcitx-rime/fcitx-rime-0.3.1.ebuild,v 1.1 
2014/05/20 12:58:14 dlan Exp $

EAPI=5

inherit cmake-utils

DESCRIPTION=Rime support for Fcitx
HOMEPAGE=http://fcitx-im.org/;
SRC_URI=http://download.fcitx-im.org/${PN}/${P}.tar.xz;

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

RDEPEND==app-i18n/fcitx-4.2.8.1
=app-i18n/librime-1.0
app-i18n/rime-data
x11-libs/libnotify
DEPEND=${RDEPEND}

src_prepare() {
# dont build data resource here, already provided by app-i18n/rime-data
sed -i -e 's|add_subdirectory(data)||' CMakeLists.txt || die
}

src_configure() {
local mycmakeargs=(
-DRIME_DATA_DIR=/usr/share/rime-data
)
cmake-utils_src_configure
}






[gentoo-commits] gentoo-x86 commit in net-mail/notmuch: ChangeLog notmuch-0.18.ebuild

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

  Modified: ChangeLog
  Removed:  notmuch-0.18.ebuild
  Log:
  Removed old revision of 0.18.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F0134531E1DBFAB5)

Revision  ChangesPath
1.93 net-mail/notmuch/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?rev=1.93view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?rev=1.93content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?r1=1.92r2=1.93

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog   14 May 2014 13:12:03 -  1.92
+++ ChangeLog   20 May 2014 13:03:35 -  1.93
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/notmuch
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.92 
2014/05/14 13:12:03 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.93 
2014/05/20 13:03:35 aidecoe Exp $
+
+  20 May 2014; Amadeusz Żołnowski aide...@gentoo.org -notmuch-0.18.ebuild:
+  Removed old revision of 0.18.
 
 *notmuch-0.18-r1 (14 May 2014)
 






[gentoo-commits] dev/ultrabug:master commit in: app-admin/rsyslog/files/7-stable/, app-admin/rsyslog/

2014-05-20 Thread Alexys Jacob
commit: 2071124e11d18eb9d6da292d059b1dfac3108311
Author: Ultrabug ultrabug AT gentoo DOT org
AuthorDate: Tue May 20 13:05:57 2014 +
Commit: Alexys Jacob ultrabug AT gentoo DOT org
CommitDate: Tue May 20 13:05:57 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/ultrabug.git;a=commit;h=2071124e

add rsyslog wrt bug #501988

---
 app-admin/rsyslog/Manifest |  13 +
 app-admin/rsyslog/files/7-stable/50-default.conf   |  95 ++
 app-admin/rsyslog/files/7-stable/README.gentoo |  36 +++
 app-admin/rsyslog/files/7-stable/bugfix_52.patch   | 100 +++
 app-admin/rsyslog/files/7-stable/bugfix_73.patch   | 103 +++
 .../7-stable/fix-omruleset-default-value.patch |  25 ++
 .../files/7-stable/rsyslog-7.x-mmjsonparse.patch   |  26 ++
 app-admin/rsyslog/files/7-stable/rsyslog.conf  |  61 
 app-admin/rsyslog/files/7-stable/rsyslog.confd-r1  |  30 ++
 app-admin/rsyslog/files/7-stable/rsyslog.initd-r1  |  69 +
 .../rsyslog/files/7-stable/rsyslog.logrotate-r1|  37 +++
 app-admin/rsyslog/metadata.xml |  41 +++
 app-admin/rsyslog/rsyslog-7.6.3.ebuild | 327 +
 13 files changed, 963 insertions(+)

diff --git a/app-admin/rsyslog/Manifest b/app-admin/rsyslog/Manifest
new file mode 100644
index 000..d06c4dd
--- /dev/null
+++ b/app-admin/rsyslog/Manifest
@@ -0,0 +1,13 @@
+AUX 7-stable/50-default.conf 1701 SHA256 
61c1dd1450f574a21a8d8375faaf3e42f9856df91011150ff13c0cfddc86ed41 SHA512 
33e4e63239b9112fec1a37115ac80ab8dbd6e7189d9d29b1bc743c433e0124ea0d1a4cf6f7ada9e5b92e9b0025b6617a1a16f4c491e743bbf4327a5f376a1ea9
 WHIRLPOOL 
d33b83bb690e78b5e5f7cfc090d21da03615c891a287b1f3a92a51514dcad1f5dfe8d2ceed867b3007768d47f48d207fac43a1ff33a85b24c21a5531cdf9d311
+AUX 7-stable/README.gentoo 1126 SHA256 
29b4c68f521f2f1f138f44c4635da1a270fed9cbd4a780569754080987aa777c SHA512 
46fdf3350e2005d3ef588d50dfc6d474a1b5d3010329b656879a43cbbd7be0cd91944b88d3838f45f69c830fc28c42e7fac2cd52e0a4b24bb6780562d59ae384
 WHIRLPOOL 
a1a3ec8b887110a01e8c1c1320f25493dd8ff343e4b08780c30c9bc3bb842afa0ef79db08195db876697c1a69807f49a8b3793609d25f78559fa534507fc195e
+AUX 7-stable/bugfix_52.patch 3776 SHA256 
756f7630fa2c14d9605ce560f608acdc66277abb4592feec11dc05ef9ecc01cc SHA512 
1b4fb7efd2a9e3a5b16003124e63ff5434512d9d103d938d2cfaf9ceb6087bad83d5141c21bd1d13b8dad7c67b58e0359fc836dc8263652eafd5404d181b0a4f
 WHIRLPOOL 
f0062ca640e11957da6621d8e73189e6be9eca275adfff32e3f701235682535cc42d34709a9c912541764af3d74073afd82c8d8048a3521eab9b70f8198ea02d
+AUX 7-stable/bugfix_73.patch 3575 SHA256 
f621d578f730c8d633e42af977077f3c67e894acd4e8c7702dd6a41e85232062 SHA512 
67996a804673214e4c23ceaf8c0092a1cf8288024180c047b96b773ee55db05e95b8da4b73ea0db5cdfabc8b49a632d6b313cf54dad23a80d9fd1bf243590971
 WHIRLPOOL 
371ded4813d1f3b65e570eefd366c1ca9ffabf38b1b5b5b80d6d632b3574bea272a8a802ec2b956d69359ac8f44c5b66d0c0ed66d898dbe96784a9090c4585a3
+AUX 7-stable/fix-omruleset-default-value.patch 834 SHA256 
9b9506a1141ef8619ba98e4bb8e2c8ad23e6a51e64d971db8ee461c073ef1ae0 SHA512 
64113caf4ec31100f1ad4dbfef27ac39e6be09f0560b1a77ad54b2c7aaf8469780b4ba17ef892cbcf80931a4d7070b40b4ca22265553568d2302eaf5ab976e5e
 WHIRLPOOL 
7aa020772813d2611c90f7605497ece6f1ed32c1e3b75f0fc7360492186dfe0b522275d128c185013c1849b64c7c1550f1752397239609f18583a475f44361cf
+AUX 7-stable/rsyslog-7.x-mmjsonparse.patch 952 SHA256 
8db6b4c0001ae53306ceb685ef245c6978e143c71c9642e634cbed98e6d2dde8 SHA512 
4446349f75ff5726d1bffe261f607dd8710c31d1254925928ffcc825a0f86d96b281962150bfa8e85846b94610d0a15f0932ef6b041d390bd4402657ad0f47b7
 WHIRLPOOL 
1ba7a6db2cb753953f0ae8e701a9b7150b99bf553b653ba2b82c6f6d1bf76461efa1cbfb1d026e5e459069cbfc6e868d46743e38c9a01583b1ff4f7a4225ed69
+AUX 7-stable/rsyslog.conf 1562 SHA256 
fc70a94213b5eb519febf9aa7d758ee9526433bcc5683bcb7451d16e65a2f5b0 SHA512 
1720174fab020e2de590f3d6bbb03784aca1928fe05f7e75e02fb4597cb8b2ee755e6deb8e8f989060511044ae483f791f496f24e0eecaf27eb9e0b5e20a2c7a
 WHIRLPOOL 
97cf3fdee62a9339b412ebe93b71b2d6804df60aad9cb7e71779fcaddb01d489e38bbb353557864ea38aba384e664e6da636812c3c078ed9e22e261ed7b78cba
+AUX 7-stable/rsyslog.confd-r1 1140 SHA256 
f0b15a0334f6177a6cf23cb9b169302c75745dc30857f24a7d11892feb6b1ee4 SHA512 
8501be8d0abc166994863db61afa5a4ef120aaec601d86fb71711b557741d39b29b96a4d688e7af6ad8d5d15a1257821ca299c5f7391f2ce66cd95e33ea2ff7c
 WHIRLPOOL 
0a3617defa10acfa693a3339e1f7ec69c9272b44aac6fda30b49452f32ea7037743acfd871cea025f1e584639725588286056db6e17663c2806ed47088600d35
+AUX 7-stable/rsyslog.initd-r1 1597 SHA256 
30615d3d29155675e09fa1082a5851fb6e260e1f914d899b7fd23430a2b95249 SHA512 
5dd92f557831e6ecd9c6acfea2a7168fbc40cca10c7dd9241097c58dd7369e39fab7c7f988d0e4450c258c18886e3769715d0b6feb632023daa8f6d178cae18f
 WHIRLPOOL 
61ca87c8f21ccbabc449fe0dc4743cbaa259a12e903ae8ba5c01b04e7a21dc867fc37334350c78e1d3a5a2c7233b880c6affe00f205384c57fe79e0ed3a1512a
+AUX 7-stable/rsyslog.logrotate-r1 682 SHA256 

[gentoo-commits] gentoo-x86 commit in dev-python/rdflib: rdflib-4.1.2.ebuild ChangeLog

2014-05-20 Thread Ian Delaney (idella4)
idella4 14/05/20 13:05:54

  Modified: rdflib-4.1.2.ebuild ChangeLog
  Log:
  drop py2.6 add py3.4 support, update test phase
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  dev-python/rdflib/rdflib-4.1.2.ebuild

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

Index: rdflib-4.1.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rdflib/rdflib-4.1.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rdflib-4.1.2.ebuild 9 May 2014 05:09:56 -   1.1
+++ rdflib-4.1.2.ebuild 20 May 2014 13:05:54 -  1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/rdflib-4.1.2.ebuild,v 1.1 
2014/05/09 05:09:56 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/rdflib-4.1.2.ebuild,v 1.2 
2014/05/20 13:05:54 idella4 Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
 PYTHON_REQ_USE=sqlite?
 DISTUTILS_NO_PARALLEL_BUILD=true
 # The usual required for tests
@@ -42,6 +42,13 @@
 python_test() {
if python_is_python3; then
pushd ${BUILD_DIR}/src/  /dev/null
+   if [[ ${EPYTHON} == 'python3.4' ]]; then
+   sed -e 's:test_rdfpipe_bytes_vs_str:_:' \
+   -e 's:test_rdfpipe_mdata_open:_:' \
+   -i test/test_issue375.py || die
+   sed -e 's:testHTML:_:' \
+   -i test/test_xmlliterals.py || die
+   fi
${PYTHON} ./run_tests.py || die Tests failed under 
${EPYTHON}
popd  /dev/null
else



1.43 dev-python/rdflib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog   9 May 2014 05:09:56 -   1.42
+++ ChangeLog   20 May 2014 13:05:54 -  1.43
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/rdflib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.42 
2014/05/09 05:09:56 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.43 
2014/05/20 13:05:54 idella4 Exp $
+
+  20 May 2014; Ian Delaney idel...@gentoo.org rdflib-4.1.2.ebuild:
+  drop py2.6 add py3.4 support, update test phase
 
 *rdflib-4.1.2 (09 May 2014)
 






[gentoo-commits] gentoo commit in xml/htdocs/main/es: irc.xml

2014-05-20 Thread JosA MarAa Alonso (nimiux)
nimiux  14/05/20 13:10:48

  Modified: irc.xml
  Log:
  fixed new link for comrel, now on the wiki

Revision  ChangesPath
1.24 xml/htdocs/main/es/irc.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/main/es/irc.xml?rev=1.24view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/main/es/irc.xml?rev=1.24content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/main/es/irc.xml?r1=1.23r2=1.24

Index: irc.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/main/es/irc.xml,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- irc.xml 19 May 2014 22:13:07 -  1.23
+++ irc.xml 20 May 2014 13:10:48 -  1.24
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=utf-8?
 !DOCTYPE mainpage SYSTEM /dtd/guide.dtd
 
-!-- $Header: /var/cvsroot/gentoo/xml/htdocs/main/es/irc.xml,v 1.23 2014/05/19 
22:13:07 nimiux Exp $ --
+!-- $Header: /var/cvsroot/gentoo/xml/htdocs/main/es/irc.xml,v 1.24 2014/05/20 
13:10:48 nimiux Exp $ --
 
 mainpage lang=es
 titleRecursos IRC Gentoo Linux/title
@@ -51,7 +51,7 @@
 
 license/
 
-version5/version
+version6/version
 date2014-05-19/date
 
 chapter
@@ -201,14 +201,15 @@
   thuri link=/proj/en/councilGentoo Council/uri/th
 /tr
 tr
- tiuri link=irc://irc.gentoo.org/gentoo-commits#gentoo-commits/uri/ti
- thInformación en tiempo real de los envíos al CVS/SVN/GIT de Gentoo/th
+  tiuri 
link=irc://irc.gentoo.org/gentoo-commits#gentoo-commits/uri/ti
+  thInformación en tiempo real de los envíos al CVS/SVN/GIT de Gentoo/th
 /tr
 tr
- tiuri link=irc://irc.gentoo.org/gentoo-comrel#gentoo-comrel/uri/ti
- th
-   El proyecto de uri link=/proj/en/comrelRelaciones con la Comunidad/uri
- /th
+  tiuri link=irc://irc.gentoo.org/gentoo-comrel#gentoo-comrel/uri/ti
+  th
+El proyecto de uri link=https://wiki.gentoo.org/wiki/Project:ComRel;
+Relaciones con la Comunidad/uri
+  /th
 /tr
 tr
   tiuri link=irc://irc.gentoo.org/gentoo-db#gentoo-db/uri/ti






[gentoo-commits] gentoo-x86 commit in sys-libs/db: db-5.3.28-r2.ebuild db-5.3.21.ebuild ChangeLog db-5.3.28-r1.ebuild db-6.0.30.ebuild db-6.0.20-r1.ebuild db-5.3.28.ebuild

2014-05-20 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/20 13:19:07

  Modified: db-5.3.28-r2.ebuild db-5.3.21.ebuild ChangeLog
db-5.3.28-r1.ebuild db-6.0.30.ebuild
db-6.0.20-r1.ebuild db-5.3.28.ebuild
  Log:
  Fixed compilation with java USE flag being enabled
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.2  sys-libs/db/db-5.3.28-r2.ebuild

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

Index: db-5.3.28-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/db/db-5.3.28-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- db-5.3.28-r2.ebuild 15 May 2014 18:36:45 -  1.1
+++ db-5.3.28-r2.ebuild 20 May 2014 13:19:07 -  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-libs/db/db-5.3.28-r2.ebuild,v 1.1 
2014/05/15 18:36:45 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-5.3.28-r2.ebuild,v 1.2 
2014/05/20 13:19:07 polynomial-c Exp $
 
 EAPI=5
 inherit eutils db flag-o-matic java-pkg-opt-2 autotools multilib 
multilib-minimal
@@ -52,6 +52,9 @@
epatch ${DISTDIR}/patch.${MY_PV}.${i}
done
 
+   # bug #510506
+   epatch ${FILESDIR}/${PN}-4.8.24-java-manifest-location.patch
+
# use the includes from the prefix
epatch ${FILESDIR}/${PN}-4.6-jni-check-prefix-first.patch
epatch ${FILESDIR}/${PN}-4.3-listen-to-java-options.patch



1.5  sys-libs/db/db-5.3.21.ebuild

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

Index: db-5.3.21.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/db/db-5.3.21.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- db-5.3.21.ebuild18 Jan 2014 04:14:32 -  1.4
+++ db-5.3.21.ebuild20 May 2014 13:19: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/sys-libs/db/db-5.3.21.ebuild,v 1.4 
2014/01/18 04:14:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-5.3.21.ebuild,v 1.5 
2014/05/20 13:19:07 polynomial-c Exp $
 
 EAPI=2
 inherit eutils db flag-o-matic java-pkg-opt-2 autotools multilib
@@ -53,6 +53,9 @@
# upstreamed:5.2.36
#epatch ${FILESDIR}/${PN}-4.8.24-java-manifest-location.patch
 
+   # bug #510506
+   epatch ${FILESDIR}/${PN}-4.8.24-java-manifest-location.patch
+
# use the includes from the prefix
epatch ${FILESDIR}/${PN}-4.6-jni-check-prefix-first.patch
epatch ${FILESDIR}/${PN}-4.3-listen-to-java-options.patch



1.349sys-libs/db/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v
retrieving revision 1.348
retrieving revision 1.349
diff -u -r1.348 -r1.349
--- ChangeLog   20 May 2014 08:53:18 -  1.348
+++ ChangeLog   20 May 2014 13:19:07 -  1.349
@@ -1,6 +1,11 @@
 # ChangeLog for sys-libs/db
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.348 2014/05/20 
08:53:18 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.349 2014/05/20 
13:19:07 polynomial-c Exp $
+
+  20 May 2014; Lars Wendler polynomia...@gentoo.org db-5.3.21.ebuild,
+  db-5.3.28.ebuild, db-5.3.28-r1.ebuild, db-5.3.28-r2.ebuild,
+  db-6.0.20-r1.ebuild, db-6.0.30.ebuild:
+  Fixed compilation with java USE flag being enabled.
 
 *db-6.0.30 (20 May 2014)
 



1.2  sys-libs/db/db-5.3.28-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/db-5.3.28-r1.ebuild?rev=1.2view=markup
plain: 

[gentoo-commits] gentoo-x86 commit in dev-haskell/gtk2hs-buildtools: gtk2hs-buildtools-0.12.5.2-r1.ebuild ChangeLog

2014-05-20 Thread Mark Wright (gienah)
gienah  14/05/20 13:27:52

  Modified: ChangeLog
  Added:gtk2hs-buildtools-0.12.5.2-r1.ebuild
  Log:
  Bump gtk2hs-buildtools to 0.12.5.2-r1
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
618E971F)

Revision  ChangesPath
1.31 dev-haskell/gtk2hs-buildtools/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/gtk2hs-buildtools/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   23 Mar 2014 17:17:41 -  1.30
+++ ChangeLog   20 May 2014 13:27:52 -  1.31
@@ -1,6 +1,12 @@
 # ChangeLog for dev-haskell/gtk2hs-buildtools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/gtk2hs-buildtools/ChangeLog,v 
1.30 2014/03/23 17:17:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/gtk2hs-buildtools/ChangeLog,v 
1.31 2014/05/20 13:27:52 gienah Exp $
+
+*gtk2hs-buildtools-0.12.5.2-r1 (20 May 2014)
+
+  20 May 2014; Mark Wright gie...@gentoo.org
+  +gtk2hs-buildtools-0.12.5.2-r1.ebuild:
+  Bump gtk2hs-buildtools to 0.12.5.2-r1
 
   23 Mar 2014; Agostino Sarubbo a...@gentoo.org
   gtk2hs-buildtools-0.12.5.1-r1.ebuild:



1.1  
dev-haskell/gtk2hs-buildtools/gtk2hs-buildtools-0.12.5.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/gtk2hs-buildtools/gtk2hs-buildtools-0.12.5.2-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/gtk2hs-buildtools/gtk2hs-buildtools-0.12.5.2-r1.ebuild?rev=1.1content-type=text/plain

Index: gtk2hs-buildtools-0.12.5.2-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-haskell/gtk2hs-buildtools/gtk2hs-buildtools-0.12.5.2-r1.ebuild,v
 1.1 2014/05/20 13:27:52 gienah Exp $

EAPI=5

# ebuild generated by hackport 0.4.

CABAL_FEATURES=bin
inherit haskell-cabal

DESCRIPTION=Tools to build the Gtk2Hs suite of User Interface libraries.
HOMEPAGE=http://projects.haskell.org/gtk2hs/;
SRC_URI=mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=+closuresignals

RDEPEND=
DEPEND=${RDEPEND}
dev-haskell/alex
=dev-haskell/cabal-1.8
dev-haskell/happy
dev-haskell/hashtables
dev-haskell/random
=dev-lang/ghc-7.4.1


src_configure() {
haskell-cabal_src_configure \
$(cabal_flag closuresignals closuresignals)
}






[gentoo-commits] gentoo-x86 commit in dev-haskell/cairo: cairo-0.12.5.3.ebuild ChangeLog

2014-05-20 Thread Mark Wright (gienah)
gienah  14/05/20 13:29:01

  Modified: ChangeLog
  Added:cairo-0.12.5.3.ebuild
  Log:
  Bump cairo to 0.12.5.3
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
618E971F)

Revision  ChangesPath
1.24 dev-haskell/cairo/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/cairo/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   2 Feb 2014 11:13:48 -   1.23
+++ ChangeLog   20 May 2014 13:29:01 -  1.24
@@ -1,6 +1,11 @@
 # ChangeLog for dev-haskell/cairo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cairo/ChangeLog,v 1.23 
2014/02/02 11:13:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cairo/ChangeLog,v 1.24 
2014/05/20 13:29:01 gienah Exp $
+
+*cairo-0.12.5.3 (20 May 2014)
+
+  20 May 2014; Mark Wright gie...@gentoo.org +cairo-0.12.5.3.ebuild:
+  Bump cairo to 0.12.5.3
 
   02 Feb 2014; Agostino Sarubbo a...@gentoo.org cairo-0.12.4-r1.ebuild:
   Stable for sparc, wrt bug #488808



1.1  dev-haskell/cairo/cairo-0.12.5.3.ebuild

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

Index: cairo-0.12.5.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cairo/cairo-0.12.5.3.ebuild,v 
1.1 2014/05/20 13:29:01 gienah Exp $

EAPI=5

# ebuild generated by hackport 0.3.5.

CABAL_FEATURES=lib profile haddock hoogle hscolour nocabaldep
inherit haskell-cabal

DESCRIPTION=Binding to the Cairo library.
HOMEPAGE=http://projects.haskell.org/gtk2hs/;
SRC_URI=mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz

LICENSE=BSD
SLOT=0/${PV}
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=+pdf +postscript +svg

RDEPEND=dev-haskell/mtl:=[profile?]
=dev-haskell/utf8-string-0.2:=[profile?] 
dev-haskell/utf8-string-0.4:=[profile?]
=dev-lang/ghc-6.10.4:=
x11-libs/cairo[svg?]
DEPEND=${RDEPEND}
=dev-haskell/gtk2hs-buildtools-0.12.5.1-r1:0=
virtual/pkgconfig


src_prepare() {
sed -e s@#includecairo-features.h@#define $(usex amd64 __x86_64__ 
__i386__)\n#includecairo-features.h@ \
-i ${S}/Graphics/Rendering/Cairo.hs \
|| die Could not define ABI in Graphics/Rendering/Cairo.hs
}

src_configure() {
haskell-cabal_src_configure \
$(cabal_flag pdf cairo_pdf) \
$(cabal_flag postscript cairo_ps) \
$(cabal_flag svg cairo_svg)
}






[gentoo-commits] proj/sci:master commit in: sys-cluster/lustre/, sys-cluster/lustre/files/

2014-05-20 Thread Alexey Shvetsov
commit: 74d0e393903bacf89db7bf392cddcd629bec24d1
Author: Alexey Shvetsov alexxy AT gentoo DOT org
AuthorDate: Tue May 20 13:43:57 2014 +
Commit: Alexey Shvetsov alexxy AT gentoo DOT org
CommitDate: Tue May 20 13:43:57 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=74d0e393

Some more fixes

Signed-off-by: Alexey Shvetsov alexxy AT gentoo.org

---
 ...cfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch |   2 +-
 ...cfs-update-zfs-proc-handling-to-seq_files.patch |   2 +-
 ...rocfs-move-osp-proc-handling-to-seq_files.patch |   2 +-
 ...procfs-symlinks-for-forward-compatibility.patch | 199 -
 ...fs-move-mdd-ofd-proc-handling-to-seq_fil.patch} |  21 ++-
 ...-Backport-shrinker-changes-from-upstream.patch} |   4 +-
 sys-cluster/lustre/lustre-.ebuild  |   5 +-
 7 files changed, 17 insertions(+), 218 deletions(-)

diff --git 
a/sys-cluster/lustre/files/0001-LU-3319-procfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch
 
b/sys-cluster/lustre/files/0001-LU-3319-procfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch
index 1b625a8..326e02b 100644
--- 
a/sys-cluster/lustre/files/0001-LU-3319-procfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch
+++ 
b/sys-cluster/lustre/files/0001-LU-3319-procfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch
@@ -1,7 +1,7 @@
 From d6775461847a80d82de476b78fc2322702c516af Mon Sep 17 00:00:00 2001
 From: James Simmons uja.o...@gmail.com
 Date: Tue, 25 Feb 2014 12:54:05 -0500
-Subject: [PATCH 1/6] LU-3319 procfs: Move NRS TBF proc handling to seq_files
+Subject: [PATCH 1/5] LU-3319 procfs: Move NRS TBF proc handling to seq_files
 
 With newer kernels moving their proc file system handling
 to seq_files this patch migrates the proc handling for NRS

diff --git 
a/sys-cluster/lustre/files/0002-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch
 
b/sys-cluster/lustre/files/0002-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch
index a44d310..bcaa434 100644
--- 
a/sys-cluster/lustre/files/0002-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch
+++ 
b/sys-cluster/lustre/files/0002-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch
@@ -1,7 +1,7 @@
 From c16260bdb1cd63a50d37f2161279fc71b9e03efb Mon Sep 17 00:00:00 2001
 From: James Simmons uja.o...@gmail.com
 Date: Wed, 23 Apr 2014 09:31:09 -0400
-Subject: [PATCH 2/6] LU-3319 procfs: update zfs proc handling to seq_files
+Subject: [PATCH 2/5] LU-3319 procfs: update zfs proc handling to seq_files
 
 Migrate all zfs proc handling to using strictly seq_files.
 

diff --git 
a/sys-cluster/lustre/files/0003-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch
 
b/sys-cluster/lustre/files/0003-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch
index 5361aca..969c229 100644
--- 
a/sys-cluster/lustre/files/0003-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch
+++ 
b/sys-cluster/lustre/files/0003-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch
@@ -1,7 +1,7 @@
 From 63f3f2e29c2745b3491712a4a3f7a868ec6ece8d Mon Sep 17 00:00:00 2001
 From: James Simmons uja.o...@gmail.com
 Date: Thu, 24 Apr 2014 12:04:57 -0400
-Subject: [PATCH 3/6] LU-3319 procfs: move osp proc handling to seq_files
+Subject: [PATCH 3/5] LU-3319 procfs: move osp proc handling to seq_files
 
 With 3.10 linux kernel and above proc handling now only
 uses struct seq_files. This patch migrates the osp

diff --git 
a/sys-cluster/lustre/files/0004-LU-2096-lprocfs-symlinks-for-forward-compatibility.patch
 
b/sys-cluster/lustre/files/0004-LU-2096-lprocfs-symlinks-for-forward-compatibility.patch
deleted file mode 100644
index b835516..000
--- 
a/sys-cluster/lustre/files/0004-LU-2096-lprocfs-symlinks-for-forward-compatibility.patch
+++ /dev/null
@@ -1,199 +0,0 @@
-From ae21b1ad797973ad686dfc1c0cad8d313ddaf4d7 Mon Sep 17 00:00:00 2001
-From: Andreas Dilger andreas.dil...@intel.com
-Date: Tue, 6 May 2014 09:51:45 -0400
-Subject: [PATCH 4/6] LU-2096 lprocfs: symlinks for forward compatibility
-
-Currently, the ofd device is still named obdfilter in the Lustre
-configuration and in /proc/fs/lustre.  It would be better to name it
-ost which is has been the long term goal but retain the ofd
-module name.
-
-The per-OST device statistics should really be under ost/{target},
-like the per-MDT statistics are under mdt/{target} already in 2.x.
-
-Similarly, the OSS statistics have always been under ost/OSS, but
-would be better in their own oss subdirectory much like what is done
-for MDS statistics.
-
-Add symlinks in lprocfs for ost/OSS - oss, obdfilter - ofd - ost,
-and obdfilter/{target} - ost/{target} for forward compatibility so
-that when we finally are able to make these changes to the module names
-userspace tools and scripts can have a smoother transition between
-Lustre versions.
-
-Signed-off-by: Andreas Dilger andreas.dil...@intel.com
-Signed-off-by: John L. Hammond john.hamm...@intel.com
-Signed-off-by: James Simmons uja.o...@gmail.com
-Change-Id: 

[gentoo-commits] gentoo-x86 commit in dev-haskell/gio: gio-0.12.5.3.ebuild ChangeLog

2014-05-20 Thread Mark Wright (gienah)
gienah  14/05/20 13:47:04

  Modified: ChangeLog
  Added:gio-0.12.5.3.ebuild
  Log:
  Bump gio to 0.12.5.3
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
618E971F)

Revision  ChangesPath
1.22 dev-haskell/gio/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/gio/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   2 Feb 2014 11:13:45 -   1.21
+++ ChangeLog   20 May 2014 13:47:04 -  1.22
@@ -1,6 +1,11 @@
 # ChangeLog for dev-haskell/gio
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/gio/ChangeLog,v 1.21 2014/02/02 
11:13:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/gio/ChangeLog,v 1.22 2014/05/20 
13:47:04 gienah Exp $
+
+*gio-0.12.5.3 (20 May 2014)
+
+  20 May 2014; Mark Wright gie...@gentoo.org +gio-0.12.5.3.ebuild:
+  Bump gio to 0.12.5.3
 
   02 Feb 2014; Agostino Sarubbo a...@gentoo.org gio-0.12.4-r1.ebuild:
   Stable for sparc, wrt bug #488808



1.1  dev-haskell/gio/gio-0.12.5.3.ebuild

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

Index: gio-0.12.5.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/gio/gio-0.12.5.3.ebuild,v 1.1 
2014/05/20 13:47:04 gienah Exp $

EAPI=5

# ebuild generated by hackport 0.3.5.

#nocabaldep is for the fancy cabal-detection feature at build-time
CABAL_FEATURES=lib profile haddock hoogle hscolour nocabaldep
inherit haskell-cabal

DESCRIPTION=Binding to the GIO.
HOMEPAGE=http://projects.haskell.org/gtk2hs/;
SRC_URI=mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz

LICENSE=LGPL-2.1
SLOT=0/${PV}
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=

RDEPEND==dev-haskell/glib-0.12.5.3:0=[profile?] 
dev-haskell/glib-0.13:0=[profile?]
dev-haskell/mtl:=[profile?]
=dev-lang/ghc-6.10.4:=
dev-libs/glib:2

DEPEND=${RDEPEND}
=dev-haskell/gtk2hs-buildtools-0.12.5.1-r1:0=
virtual/pkgconfig







[gentoo-commits] gentoo-x86 commit in dev-haskell/glib: glib-0.12.5.4.ebuild ChangeLog

2014-05-20 Thread Mark Wright (gienah)
gienah  14/05/20 13:48:39

  Modified: ChangeLog
  Added:glib-0.12.5.4.ebuild
  Log:
  Bump glib to 0.12.5.4
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
618E971F)

Revision  ChangesPath
1.24 dev-haskell/glib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/glib/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   6 Mar 2014 09:17:29 -   1.23
+++ ChangeLog   20 May 2014 13:48:39 -  1.24
@@ -1,6 +1,11 @@
 # ChangeLog for dev-haskell/glib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/glib/ChangeLog,v 1.23 
2014/03/06 09:17:29 qnikst Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/glib/ChangeLog,v 1.24 
2014/05/20 13:48:39 gienah Exp $
+
+*glib-0.12.5.4 (20 May 2014)
+
+  20 May 2014; Mark Wright gie...@gentoo.org +glib-0.12.5.4.ebuild:
+  Bump glib to 0.12.5.4
 
   06 Mar 2014; Alexander Vershilov qni...@gentoo.org glib-0.12.4-r1.ebuild:
   fix buildtime issue (bug #503286)



1.1  dev-haskell/glib/glib-0.12.5.4.ebuild

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

Index: glib-0.12.5.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/glib/glib-0.12.5.4.ebuild,v 1.1 
2014/05/20 13:48:39 gienah Exp $

EAPI=5

# ebuild generated by hackport 0.4.

CABAL_FEATURES=lib profile haddock hoogle hscolour
inherit haskell-cabal

DESCRIPTION=Binding to the GLIB library for Gtk2Hs.
HOMEPAGE=http://projects.haskell.org/gtk2hs/;
SRC_URI=mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz

LICENSE=LGPL-2.1
SLOT=0/${PV}
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=+closure_signals

RDEPEND==dev-haskell/utf8-string-0.2:=[profile?] 
dev-haskell/utf8-string-0.4:=[profile?]
=dev-lang/ghc-7.4.1:=
dev-libs/glib:2

DEPEND=${RDEPEND}
=dev-haskell/cabal-1.8
=dev-haskell/gtk2hs-buildtools-0.12.5.1-r1:0=
virtual/pkgconfig


src_configure() {
haskell-cabal_src_configure \
$(cabal_flag closure_signals closure_signals)
}






[gentoo-commits] gentoo-x86 commit in dev-haskell/pango: pango-0.12.5.3.ebuild ChangeLog

2014-05-20 Thread Mark Wright (gienah)
gienah  14/05/20 13:50:17

  Modified: ChangeLog
  Added:pango-0.12.5.3.ebuild
  Log:
  Bump pango to 0.12.5.3
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
618E971F)

Revision  ChangesPath
1.23 dev-haskell/pango/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/pango/ChangeLog?rev=1.23view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/pango/ChangeLog?rev=1.23content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/pango/ChangeLog?r1=1.22r2=1.23

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/pango/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   2 Feb 2014 11:13:36 -   1.22
+++ ChangeLog   20 May 2014 13:50:17 -  1.23
@@ -1,6 +1,11 @@
 # ChangeLog for dev-haskell/pango
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/pango/ChangeLog,v 1.22 
2014/02/02 11:13:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/pango/ChangeLog,v 1.23 
2014/05/20 13:50:17 gienah Exp $
+
+*pango-0.12.5.3 (20 May 2014)
+
+  20 May 2014; Mark Wright gie...@gentoo.org +pango-0.12.5.3.ebuild:
+  Bump pango to 0.12.5.3
 
   02 Feb 2014; Agostino Sarubbo a...@gentoo.org pango-0.12.4-r1.ebuild:
   Stable for sparc, wrt bug #488808



1.1  dev-haskell/pango/pango-0.12.5.3.ebuild

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

Index: pango-0.12.5.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/pango/pango-0.12.5.3.ebuild,v 
1.1 2014/05/20 13:50:17 gienah Exp $

EAPI=5

# ebuild generated by hackport 0.3.5.

#nocabaldep is for the fancy cabal-detection feature at build-time
CABAL_FEATURES=lib profile haddock hoogle hscolour nocabaldep
inherit haskell-cabal

DESCRIPTION=Binding to the Pango text rendering engine.
HOMEPAGE=http://projects.haskell.org/gtk2hs/;
SRC_URI=mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz

LICENSE=LGPL-2.1
SLOT=0/${PV}
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=

RDEPEND==dev-haskell/cairo-0.12.5.3:0=[profile?] 
dev-haskell/cairo-0.13:0=[profile?]
=dev-haskell/glib-0.12.5.3:0=[profile?] 
dev-haskell/glib-0.13:0=[profile?]
dev-haskell/mtl:=[profile?]
=dev-lang/ghc-6.10.4:=
x11-libs/cairo
x11-libs/pango

DEPEND=${RDEPEND}
=dev-haskell/gtk2hs-buildtools-0.12.5.1-r1:0
virtual/pkgconfig







[gentoo-commits] gentoo-x86 commit in dev-haskell/gtk: gtk-0.12.5.7.2.ebuild metadata.xml ChangeLog

2014-05-20 Thread Mark Wright (gienah)
gienah  14/05/20 13:51:57

  Modified: metadata.xml ChangeLog
  Added:gtk-0.12.5.7.2.ebuild
  Log:
  Bump gtk to 0.12.5.7.2
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
618E971F)

Revision  ChangesPath
1.2  dev-haskell/gtk/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/gtk/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml9 May 2011 19:37:00 -   1.1
+++ metadata.xml20 May 2014 13:51:57 -  1.2
@@ -5,7 +5,16 @@
maintainer
emailhask...@gentoo.org/email
/maintainer
-   use
-   flag name=gioAdd glib's GIO bindings./flag
-   /use
+   longdescription
+   This is the core library of the Gtk2Hs suite of libraries for 
Haskell
+   based on Gtk+. Gtk+ is an extensive and mature multi-platform 
toolkit
+   for creating graphical user interfaces.
+   /longdescription
+use
+  flag name='gio'Depend on GIO package, thereby enabling certain 
features./flag
+  flag name='fmode-binary'Set the default file translation mode for
+  file I/O operations to _O_BINARY.  Some GTK libraries open image
+  files without specifing binary mode.  If you have trouble loading
+  gtk in ghci, then it may help to turn this option off./flag
+/use
 /pkgmetadata



1.20 dev-haskell/gtk/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/gtk/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   2 Feb 2014 11:13:39 -   1.19
+++ ChangeLog   20 May 2014 13:51:57 -  1.20
@@ -1,6 +1,12 @@
 # ChangeLog for dev-haskell/gtk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/gtk/ChangeLog,v 1.19 2014/02/02 
11:13:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/gtk/ChangeLog,v 1.20 2014/05/20 
13:51:57 gienah Exp $
+
+*gtk-0.12.5.7.2 (20 May 2014)
+
+  20 May 2014; Mark Wright gie...@gentoo.org +gtk-0.12.5.7.2.ebuild,
+  metadata.xml:
+  Bump gtk to 0.12.5.7.2
 
   02 Feb 2014; Agostino Sarubbo a...@gentoo.org gtk-0.12.4-r1.ebuild:
   Stable for sparc, wrt bug #488808



1.1  dev-haskell/gtk/gtk-0.12.5.7.2.ebuild

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

Index: gtk-0.12.5.7.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/gtk/gtk-0.12.5.7.2.ebuild,v 1.1 
2014/05/20 13:51:57 gienah Exp $

EAPI=5

# ebuild generated by hackport 0.4.

GTK_MAJ_VER=2

MY_PV=${PV%.*}
MY_P=${PN}-${MY_PV}

CABAL_FEATURES=lib profile haddock hoogle hscolour
inherit haskell-cabal

DESCRIPTION=Binding to the Gtk+ graphical user interface library.
HOMEPAGE=http://projects.haskell.org/gtk2hs/;
SRC_URI=mirror://hackage/packages/archive/${PN}/${MY_PV}/${MY_P}.tar.gz

S=${WORKDIR}/${MY_P}

LICENSE=LGPL-2.1
SLOT=${GTK_MAJ_VER}/${PV}
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=+fmode-binary +gio

RDEPEND=fmode-binary? ( =dev-haskell/glib-0.12.5.4:0=[profile?] 
dev-haskell/glib-0.13:0=[profile?]
dev-haskell/mtl:=[profile?]
=dev-haskell/pango-0.12.5.3:0=[profile?] 
dev-haskell/pango-0.13:0=[profile?]
=dev-lang/ghc-7.4.1:=
dev-libs/glib:2
x11-libs/gtk+:2 )
gio? ( =dev-haskell/cairo-0.12.5.3:0=[profile?] 
dev-haskell/cairo-0.13:0=[profile?]
=dev-haskell/gio-0.12.5:0=[profile?] 
dev-haskell/gio-0.13:0=[profile?]
=dev-haskell/glib-0.12.5.4:0=[profile?] 
dev-haskell/glib-0.13:0=[profile?]
dev-haskell/mtl:=[profile?]

[gentoo-commits] gentoo-x86 commit in dev-python/sparql-wrapper: sparql-wrapper-1.6.0.ebuild ChangeLog

2014-05-20 Thread Ian Delaney (idella4)
idella4 14/05/20 14:18:04

  Modified: ChangeLog
  Added:sparql-wrapper-1.6.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.4  dev-python/sparql-wrapper/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sparql-wrapper/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   22 Apr 2014 04:14:49 -  1.3
+++ ChangeLog   20 May 2014 14:18:04 -  1.4
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/sparql-wrapper
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sparql-wrapper/ChangeLog,v 1.3 
2014/04/22 04:14:49 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sparql-wrapper/ChangeLog,v 1.4 
2014/05/20 14:18:04 idella4 Exp $
+
+*sparql-wrapper-1.6.0 (20 May 2014)
+
+  20 May 2014; Ian Delaney idel...@gentoo.org +sparql-wrapper-1.6.0.ebuild,
+  sparql-wrapper-1.5.2.ebuild:
+  bump; drop py2.6 support
 
   22 Apr 2014; Ian Delaney idel...@gentoo.org sparql-wrapper-1.5.2.ebuild:
   add missing DEPEND dep



1.1  dev-python/sparql-wrapper/sparql-wrapper-1.6.0.ebuild

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

Index: sparql-wrapper-1.6.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/sparql-wrapper/sparql-wrapper-1.6.0.ebuild,v 
1.1 2014/05/20 14:18:04 idella4 Exp $

EAPI=5

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

inherit distutils-r1

MY_PN=SPARQLWrapper
DESCRIPTION=Wrapper around a SPARQL service
HOMEPAGE=http://pypi.python.org/pypi/${MY_PN};
SRC_URI=mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz

LICENSE=W3C
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux
IUSE=

DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
RDEPEND=dev-python/rdflib[${PYTHON_USEDEP}]

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






[gentoo-commits] gentoo-x86 commit in app-text/calibre: calibre-1.37.ebuild ChangeLog

2014-05-20 Thread Ian Stakenvicius (axs)
axs 14/05/20 14:25:28

  Modified: ChangeLog
  Added:calibre-1.37.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
2B6559ED)

Revision  ChangesPath
1.320app-text/calibre/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v
retrieving revision 1.319
retrieving revision 1.320
diff -u -r1.319 -r1.320
--- ChangeLog   13 May 2014 14:54:59 -  1.319
+++ ChangeLog   20 May 2014 14:25:28 -  1.320
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/calibre
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.319 
2014/05/13 14:54:59 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.320 
2014/05/20 14:25:28 axs Exp $
+
+*calibre-1.37 (20 May 2014)
+
+  20 May 2014; Ian Stakenvicius (_AxS_) a...@gentoo.org +calibre-1.37.ebuild:
+  version bump
 
 *calibre-1.36 (13 May 2014)
 



1.1  app-text/calibre/calibre-1.37.ebuild

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

Index: calibre-1.37.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-1.37.ebuild,v 1.1 
2014/05/20 14:25:28 axs Exp $

EAPI=5

inherit eutils fdo-mime bash-completion-r1 multilib toolchain-funcs

DESCRIPTION=Ebook management application
HOMEPAGE=http://calibre-ebook.com/;
[[ ${PV} == ${PV%.*}.${PV#*.} ]]  MY_PV=${PV}.0 || MY_PV=${PV}
SRC_URI=http://sourceforge.net/projects/calibre/files/${MY_PV}/${PN}-${MY_PV}.tar.xz;

LICENSE=
GPL-3+
GPL-3
GPL-2+
GPL-2
GPL-1+
LGPL-3+
LGPL-2.1+
LGPL-2.1
BSD
MIT
Old-MIT
Apache-2.0
public-domain
|| ( Artistic GPL-1+ )
CC-BY-3.0
OFL-1.1
PSF-2
unRAR


KEYWORDS=~amd64 ~x86
SLOT=0
IUSE=+udisks

COMMON_DEPEND=
=app-text/podofo-0.8.2:=
=app-text/poppler-0.20.2:=[qt4,xpdf-headers(+)]
=dev-lang/python-2.7.1:2.7[sqlite,ssl]
=dev-libs/chmlib-0.40:=
=dev-libs/icu-4.4:=
=dev-python/apsw-3.7.17[python_targets_python2_7(-)]
=dev-python/beautifulsoup-3.0.5:python-2[python_targets_python2_7(-)]
dev-python/netifaces[python_targets_python2_7(-)]
dev-python/python-dateutil[python_targets_python2_7(-)]
=dev-python/dnspython-1.6.0[python_targets_python2_7(-)]
=dev-python/cssselect-0.7.1[python_targets_python2_7(-)]
=dev-python/cssutils-0.9.9[python_targets_python2_7(-)]
=dev-python/dbus-python-0.82.2[python_targets_python2_7(-)]
=dev-python/lxml-3.2.1[python_targets_python2_7(-)]
=dev-python/mechanize-0.1.11[python_targets_python2_7(-)]
=dev-python/python-dateutil-1.4.1[python_targets_python2_7(-)]
=dev-python/PyQt4-4.9.6[X,svg,webkit,python_targets_python2_7(-)]
dev-qt/qtdbus:4=
dev-qt/qtsvg:4=
media-fonts/liberation-fonts
=media-gfx/imagemagick-6.5.9[jpeg,png]
=media-libs/freetype-2:=
=media-libs/libwmf-0.2.8
=media-libs/libmtp-1.1.5:=
virtual/libusb:1=
virtual/python-imaging[python_targets_python2_7(-)]
=x11-misc/xdg-utils-1.0.2-r2

RDEPEND=${COMMON_DEPEND}
udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) )

DEPEND=${COMMON_DEPEND}
=dev-python/setuptools-0.6_rc5

S=${WORKDIR}/${PN}

src_prepare() {
# Fix outdated version constant.
#sed -e s#\\(^numeric_version =\\).*#\\1 (${PV//./, })# \
#   -i src/calibre/constants.py || \
#   die sed failed to patch constants.py

# Avoid sandbox violation in /usr/share/gnome/apps when linux.py
# calls xdg-* (bug #258938).
sed -e s|'xdg-desktop-menu', 'install'|\\0, '--mode', 'user'| \
-e s|check_call(\\['xdg-desktop-menu', 
'forceupdate'\\])|#\\0| \
-e s|\\(CurrentDir(tdir)\\), \$|\\1:| \
-e s|PreserveMIMEDefaults():|| \
-e s|xdg-icon-resource install|\\0 --mode user| \
-e s|cc(\\['xdg-desktop-menu', 'forceupdate'\\])|#\\0| \
-e 

[gentoo-commits] dev/xmw:master commit in: dev-util/eclipse-cpl/

2014-05-20 Thread Michael Weber
commit: 646ea59cc00894d8861892f0b630030bd15456a0
Author: Michael Weber michael AT xmw DOT de
AuthorDate: Tue May 20 14:33:57 2014 +
Commit: Michael Weber xmw AT gentoo DOT org
CommitDate: Tue May 20 14:33:57 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=646ea59c

more non-parallel build

Package-Manager: portage-2.2.10
Manifest-Sign-Key: 62EEF090

---
 dev-util/eclipse-cpl/ChangeLog  | 3 +++
 dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-util/eclipse-cpl/ChangeLog b/dev-util/eclipse-cpl/ChangeLog
index 5b74253..707a93b 100644
--- a/dev-util/eclipse-cpl/ChangeLog
+++ b/dev-util/eclipse-cpl/ChangeLog
@@ -1,4 +1,7 @@
   20 May 2014; Michael Weber x...@gentoo.org eclipse-cpl-6.1.187.ebuild:
+  more non-parallel build
+
+  20 May 2014; Michael Weber x...@gentoo.org eclipse-cpl-6.1.187.ebuild:
   fix tempdir
 
   20 May 2014; Michael Weber x...@gentoo.org eclipse-cpl-6.1.187.ebuild:

diff --git a/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild 
b/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
index 35af3d4..9cf6cd8 100644
--- a/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
+++ b/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
@@ -148,7 +148,7 @@ EOF
emake -C Eplex -f Makefile.${ARCH} PREFIX=${S}/build install 
-j1
 
einfo compile  install icparc_solvers
-   emake -C icparc_solvers -f Makefile.${ARCH} PREFIX=${S}/build 
install
+   emake -C icparc_solvers -f Makefile.${ARCH} PREFIX=${S}/build 
install -j1
fi
if use gecode ; then
einfo compile  install GecodeInterface



[gentoo-commits] gentoo-x86 commit in sys-fs/btrfs-progs/files: btrfs-progs-3.14.1-arg_strtou64.patch

2014-05-20 Thread Mike Gilbert (floppym)
floppym 14/05/20 14:47:03

  Added:btrfs-progs-3.14.1-arg_strtou64.patch
  Log:
  Backport patch to fix linking failures with libbtrfs, reported by dlan.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.1  
sys-fs/btrfs-progs/files/btrfs-progs-3.14.1-arg_strtou64.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/btrfs-progs/files/btrfs-progs-3.14.1-arg_strtou64.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/btrfs-progs/files/btrfs-progs-3.14.1-arg_strtou64.patch?rev=1.1content-type=text/plain

Index: btrfs-progs-3.14.1-arg_strtou64.patch
===
From:   David Sterba dste...@suse.cz
To: linux-bt...@vger.kernel.org
Subject: [PATCH v2] btrfs-progs: move arg_strtou64 to a separate file for 
library
Date:   Tue, 22 Apr 2014 17:49:01 +0200

Linking with libbtrfs fails because arg_strtou64 is not defined and we
cannot just add utils.o to library objects because it's not
library-clean.

Reported-by: Arvin Schnell aschn...@suse.com
Reported-by: Anton Farygin ri...@altlinux.org
Signed-off-by: David Sterba dste...@suse.cz
---

v2: (thanks to Hugo)
- added missing line from comment
- fixed typo
- reformated comment paragraphs

 Makefile|  5 +++--
 utils-lib.c | 42 ++
 utils.c | 33 -
 3 files changed, 45 insertions(+), 35 deletions(-)
 create mode 100644 utils-lib.c

diff --git a/Makefile b/Makefile
index 51d53fadf5af..76565e8b2307 100644
--- a/Makefile
+++ b/Makefile
@@ -9,14 +9,15 @@ CFLAGS = -g -O1 -fno-strict-aliasing
 objects = ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \
  root-tree.o dir-item.o file-item.o inode-item.o inode-map.o \
  extent-cache.o extent_io.o volumes.o utils.o repair.o \
- qgroup.o raid6.o free-space-cache.o list_sort.o props.o
+ qgroup.o raid6.o free-space-cache.o list_sort.o props.o \
+ utils-lib.o
 cmds_objects = cmds-subvolume.o cmds-filesystem.o cmds-device.o cmds-scrub.o \
   cmds-inspect.o cmds-balance.o cmds-send.o cmds-receive.o \
   cmds-quota.o cmds-qgroup.o cmds-replace.o cmds-check.o \
   cmds-restore.o cmds-rescue.o chunk-recover.o super-recover.o \
   cmds-property.o
 libbtrfs_objects = send-stream.o send-utils.o rbtree.o btrfs-list.o crc32c.o \
-  uuid-tree.o
+  uuid-tree.o utils-lib.o
 libbtrfs_headers = send-stream.h send-utils.h send.h rbtree.h btrfs-list.h \
   crc32c.h list.h kerncompat.h radix-tree.h extent-cache.h \
   extent_io.h ioctl.h ctree.h btrfsck.h
diff --git a/utils-lib.c b/utils-lib.c
new file mode 100644
index ..9d53c6e5c710
--- /dev/null
+++ b/utils-lib.c
@@ -0,0 +1,42 @@
+#define _GNU_SOURCE
+
+#include kerncompat.h
+#include unistd.h
+#include stdlib.h
+#include limits.h
+
+#if BTRFS_FLAT_INCLUDES
+#else
+#endif /* BTRFS_FLAT_INCLUDES */
+
+/*
+ * This function should be only used when parsing command arg, it won't return
+ * error to its caller and rather exit directly just like usage().
+ */
+u64 arg_strtou64(const char *str)
+{
+   u64 value;
+   char *ptr_parse_end = NULL;
+
+   value = strtoull(str, ptr_parse_end, 0);
+   if (ptr_parse_end  *ptr_parse_end != '\0') {
+   fprintf(stderr, ERROR: %s is not a valid numeric value.\n,
+   str);
+   exit(1);
+   }
+
+   /*
+* if we pass a negative number to strtoull, it will return an
+* unexpected number to us, so let's do the check ourselves.
+*/
+   if (str[0] == '-') {
+   fprintf(stderr, ERROR: %s: negative value is invalid.\n,
+   str);
+   exit(1);
+   }
+   if (value == ULLONG_MAX) {
+   fprintf(stderr, ERROR: %s is too large.\n, str);
+   exit(1);
+   }
+   return value;
+}
diff --git a/utils.c b/utils.c
index 29953d9dd2a9..e130849c7bb5 100644
--- a/utils.c
+++ b/utils.c
@@ -1538,39 +1538,6 @@ scan_again:
return 0;
 }
 
-/*
- * This function should be only used when parsing
- * command arg, it won't return error to it's
- * caller and rather exit directly just like usage().
- */
-u64 arg_strtou64(const char *str)
-{
-   u64 value;
-   char *ptr_parse_end = NULL;
-
-   value = strtoull(str, ptr_parse_end, 0);
-   if (ptr_parse_end  *ptr_parse_end != '\0') {
-   fprintf(stderr, ERROR: %s is not a valid numeric value.\n,
-   str);
-   exit(1);
-   }
-   /*
-* if we pass a negative number to strtoull,
-* it will return an unexpected number to us,
-* so let's do the check ourselves.
-*/
-   if (str[0] == '-') {
-   

[gentoo-commits] gentoo-x86 commit in sys-fs/btrfs-progs: btrfs-progs-3.14.1-r1.ebuild ChangeLog

2014-05-20 Thread Mike Gilbert (floppym)
floppym 14/05/20 14:47:03

  Modified: ChangeLog
  Added:btrfs-progs-3.14.1-r1.ebuild
  Log:
  Backport patch to fix linking failures with libbtrfs, reported by dlan.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.79 sys-fs/btrfs-progs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/btrfs-progs/ChangeLog?rev=1.79view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/btrfs-progs/ChangeLog?rev=1.79content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/btrfs-progs/ChangeLog?r1=1.78r2=1.79

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/btrfs-progs/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog   29 Apr 2014 01:50:12 -  1.78
+++ ChangeLog   20 May 2014 14:47:03 -  1.79
@@ -1,6 +1,12 @@
 # ChangeLog for sys-fs/btrfs-progs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/btrfs-progs/ChangeLog,v 1.78 
2014/04/29 01:50:12 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/btrfs-progs/ChangeLog,v 1.79 
2014/05/20 14:47:03 floppym Exp $
+
+*btrfs-progs-3.14.1-r1 (20 May 2014)
+
+  20 May 2014; Mike Gilbert flop...@gentoo.org +btrfs-progs-3.14.1-r1.ebuild,
+  +files/btrfs-progs-3.14.1-arg_strtou64.patch:
+  Backport patch to fix linking failures with libbtrfs, reported by dlan.
 
 *btrfs-progs-3.14.1 (29 Apr 2014)
 



1.1  sys-fs/btrfs-progs/btrfs-progs-3.14.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/btrfs-progs/btrfs-progs-3.14.1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/btrfs-progs/btrfs-progs-3.14.1-r1.ebuild?rev=1.1content-type=text/plain

Index: btrfs-progs-3.14.1-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/btrfs-progs/btrfs-progs-3.14.1-r1.ebuild,v 1.1 
2014/05/20 14:47:03 floppym Exp $

EAPI=5

inherit eutils multilib toolchain-funcs

libbtrfs_soname=0

if [[ ${PV} !=  ]]; then
MY_PV=v${PV}
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86

SRC_URI=https://www.kernel.org/pub/linux/kernel/people/mason/${PN}/${PN}-${MY_PV}.tar.xz;
S=${WORKDIR}/${PN}-${MY_PV}
else
inherit git-2

EGIT_REPO_URI=git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git

https://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git;
fi

DESCRIPTION=Btrfs filesystem utilities
HOMEPAGE=https://btrfs.wiki.kernel.org;

LICENSE=GPL-2
SLOT=0/${libbtrfs_soname}
IUSE=

DEPEND=
dev-libs/lzo
sys-libs/zlib
sys-apps/acl
sys-fs/e2fsprogs

RDEPEND=${DEPEND}

src_prepare() {
epatch ${FILESDIR}/${P}-arg_strtou64.patch
epatch_user
}

src_compile() {
emake \
AR=$(tc-getAR) \
CC=$(tc-getCC) \
CFLAGS=${CFLAGS} \
LDFLAGS=${LDFLAGS} \
BUILD_VERBOSE=1
}

src_install() {
emake install \
DESTDIR=${D} \
prefix=/usr \
bindir=/sbin \
libdir=/usr/$(get_libdir) \
mandir=/usr/share/man
}






[gentoo-commits] gentoo-x86 commit in dev-python/sqlobject: sqlobject-1.6.0.ebuild ChangeLog

2014-05-20 Thread Ian Delaney (idella4)
idella4 14/05/20 14:48:56

  Modified: ChangeLog
  Added:sqlobject-1.6.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.58 dev-python/sqlobject/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sqlobject/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog   17 Dec 2013 06:19:00 -  1.57
+++ ChangeLog   20 May 2014 14:48:56 -  1.58
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/sqlobject
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlobject/ChangeLog,v 1.57 
2013/12/17 06:19:00 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlobject/ChangeLog,v 1.58 
2014/05/20 14:48:56 idella4 Exp $
+
+*sqlobject-1.6.0 (20 May 2014)
+
+  20 May 2014; Ian Delaney idel...@gentoo.org +sqlobject-1.6.0.ebuild:
+  bump; drop py2.6 support
 
 *sqlobject-1.5.1 (17 Dec 2013)
 



1.1  dev-python/sqlobject/sqlobject-1.6.0.ebuild

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

Index: sqlobject-1.6.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/sqlobject/sqlobject-1.6.0.ebuild,v 1.1 
2014/05/20 14:48:56 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=sqlite?
inherit distutils-r1

MY_PN=SQLObject
MY_P=${MY_PN}-${PV}

DESCRIPTION=Object-Relational Manager, aka database wrapper
HOMEPAGE=http://sqlobject.org/ http://pypi.python.org/pypi/SQLObject;
SRC_URI=mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
IUSE=doc firebird mysql postgres sqlite

RDEPEND==dev-python/formencode-1.1.1[${PYTHON_USEDEP}]
firebird? ( dev-python/kinterbasdb )
mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
postgres? ( dev-python/psycopg[${PYTHON_USEDEP}] )
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]

S=${WORKDIR}/${MY_P}

python_install_all() {
if use doc; then
pushd docs
dodoc *.txt || die dodoc failed
dohtml -r presentation-2004-11 || die dohtml failed
insinto /usr/share/doc/${PF}
doins -r europython || die doins failed
popd
fi
distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in dev-python/testify: testify-0.3.0.ebuild testify-0.3.1.ebuild testify-0.2.10.ebuild ChangeLog

2014-05-20 Thread Ian Delaney (idella4)
idella4 14/05/20 15:16:09

  Modified: testify-0.3.0.ebuild testify-0.2.10.ebuild
ChangeLog
  Added:testify-0.3.1.ebuild
  Log:
  bump; drop py2.6 add pypy support
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  dev-python/testify/testify-0.3.0.ebuild

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

Index: testify-0.3.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/testify/testify-0.3.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- testify-0.3.0.ebuild3 May 2014 08:12:00 -   1.1
+++ testify-0.3.0.ebuild20 May 2014 15:16:08 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/testify-0.3.0.ebuild,v 
1.1 2014/05/03 08:12:00 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/testify-0.3.0.ebuild,v 
1.2 2014/05/20 15:16:08 idella4 Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 RESTRICT=test
 
 RDEPEND=dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/sqlalchemy
+   dev-python/sqlalchemy[${PYTHON_USEDEP}]
www-servers/tornado[${PYTHON_USEDEP}]
|| ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson )
 DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]



1.3  dev-python/testify/testify-0.2.10.ebuild

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

Index: testify-0.2.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/testify/testify-0.2.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- testify-0.2.10.ebuild   5 Apr 2013 05:44:01 -   1.2
+++ testify-0.2.10.ebuild   20 May 2014 15:16:08 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/testify-0.2.10.ebuild,v 
1.2 2013/04/05 05:44:01 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/testify-0.2.10.ebuild,v 
1.3 2014/05/20 15:16:08 idella4 Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 RESTRICT=test
 
 RDEPEND=dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/sqlalchemy
+   dev-python/sqlalchemy[${PYTHON_USEDEP}]
www-servers/tornado[${PYTHON_USEDEP}]
|| ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson )
 DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]



1.11 dev-python/testify/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   3 May 2014 08:12:00 -   1.10
+++ ChangeLog   20 May 2014 15:16:08 -  1.11
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/testify
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v 1.10 
2014/05/03 08:12:00 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v 1.11 
2014/05/20 15:16:08 idella4 Exp $
+
+*testify-0.3.1 (20 May 2014)
+
+  20 May 2014; Ian Delaney idel...@gentoo.org +testify-0.3.1.ebuild,
+  testify-0.2.10.ebuild, testify-0.3.0.ebuild:
+  bump; drop py2.6 add pypy support
 
 *testify-0.3.0 (03 May 2014)
 



1.1  dev-python/testify/testify-0.3.1.ebuild

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

Index: testify-0.3.1.ebuild

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

2014-05-20 Thread Michael Palimaka
commit: 6b83b271d34eff3ba7ca9028c767f0732ee0556c
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Tue May 20 15:28:11 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Tue May 20 15:28:11 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=6b83b271

[eclass] Raise minimum Qt version.

It is required by kde-workspace projects, and we no longer ship
earlier versions anyway.

---
 eclass/kde5.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 15993fe..e4d2340 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -32,7 +32,7 @@ EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare 
src_configure src_compile src_
 # @ECLASS-VARIABLE: QT_MINIMAL
 # @DESCRIPTION:
 # Minimal Qt version to require for the package.
-: ${QT_MINIMAL:=5.2.0}
+: ${QT_MINIMAL:=5.3.0_rc}
 
 # @ECLASS-VARIABLE: KDE_AUTODEPS
 # @DESCRIPTION:



[gentoo-commits] gentoo-x86 commit in media-sound/spotify: spotify-0.9.10.17.ebuild ChangeLog

2014-05-20 Thread Matt Thode (prometheanfire)
prometheanfire14/05/20 15:36:49

  Modified: ChangeLog
  Added:spotify-0.9.10.17.ebuild
  Log:
  fixes bug 510854
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x2471eb3e40ac5ac3)

Revision  ChangesPath
1.30 media-sound/spotify/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/spotify/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   24 Apr 2014 07:02:32 -  1.29
+++ ChangeLog   20 May 2014 15:36:48 -  1.30
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/spotify
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/spotify/ChangeLog,v 1.29 
2014/04/24 07:02:32 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/spotify/ChangeLog,v 1.30 
2014/05/20 15:36:48 prometheanfire Exp $
+
+*spotify-0.9.10.17 (20 May 2014)
+
+  20 May 2014; Matthew Thode prometheanf...@gentoo.org
+  +spotify-0.9.10.17.ebuild:
+  fixes bug 510854
 
 *spotify-0.9.4.183-r6 (24 Apr 2014)
 



1.1  media-sound/spotify/spotify-0.9.10.17.ebuild

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

Index: spotify-0.9.10.17.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-sound/spotify/spotify-0.9.10.17.ebuild,v 1.1 
2014/05/20 15:36:48 prometheanfire Exp $

EAPI=5
inherit eutils fdo-mime gnome2-utils pax-utils unpacker

DESCRIPTION=Spotify is a social music platform
HOMEPAGE=https://www.spotify.com/ch-de/download/previews/;
MY_PV=${PV}.g4129e1c.78-1
MY_P=${PN}-client_${MY_PV}
SRC_BASE=http://repository.spotify.com/pool/non-free/${PN:0:1}/${PN}/;
SRC_URI=
amd64? ( ${SRC_BASE}${MY_P}_amd64.deb )

#   x86?   ( ${SRC_BASE}${MY_P}_i386.deb )
LICENSE=Spotify
SLOT=0
#amd64 and x86 keywords removed due to security concerns, see bug 474010
KEYWORDS=~amd64
IUSE=gnome pax_kernel pulseaudio
RESTRICT=mirror strip

DEPEND=
RDEPEND=${DEPEND}
x11-libs/libxcb
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXau
x11-libs/libXext
x11-libs/libXinerama
x11-libs/libXdmcp
x11-libs/libXScrnSaver
x11-libs/libXrandr
x11-libs/libXrender
dev-qt/qtcore:4[qt3support]
dev-qt/qtdbus:4
dev-qt/qtgui:4[qt3support]
dev-qt/qtwebkit:4
x11-misc/xdg-utils
media-libs/alsa-lib
media-libs/fontconfig
media-libs/freetype
dev-libs/openssl:0
dev-libs/glib:2
dev-libs/libgcrypt:11/11
media-libs/libpng:1.2
dev-db/sqlite:3
sys-libs/zlib
app-arch/bzip2
sys-apps/dbus
sys-apps/util-linux
dev-libs/expat
=dev-libs/nspr-4.9
gnome-base/gconf:2
x11-libs/gtk+:2
dev-libs/nss
dev-libs/glib:2
net-print/cups
virtual/udev
pulseaudio? ( =media-sound/pulseaudio-0.9.21 )
gnome? ( gnome-extra/gnome-integration-spotify )

S=${WORKDIR}

QA_PREBUILT=/opt/spotify/spotify-client/spotify
/opt/spotify/spotify-client/Data/SpotifyHelper
/opt/spotify/spotify-client/Data/libcef.so

src_prepare() {
#   # different NSPR / NSS library names for some reason
#   sed -i \
#   -e 's/\(lib\(plc4\|nspr4\).so\).9\(.\)/\1.0d\3\3/g' \
#   opt/spotify/spotify-client/Data/SpotifyHelper || die sed 
failed
#   sed -i \
#   -e 's/\(lib\(nss3\|nssutil3\|smime3\).so\).1d/\1\x00\x00\x00/g' 
\
#   -e 's/\(lib\(plc4\|nspr4\).so\).0d\(.\)/\1\x00\x00\3\3/g' \
#   opt/spotify/spotify-client/Data/libcef.so || die sed failed
# Fix desktop entry to launch spotify-dbus.py for GNOME integration
if use gnome ; then
sed -i \
-e 's/spotify 

[gentoo-commits] dev/xmw:master commit in: dev-util/eclipse-cpl/

2014-05-20 Thread Michael Weber
commit: ac31185d31097116bf65116355065d442c1afbe5
Author: Michael Weber michael AT xmw DOT de
AuthorDate: Tue May 20 16:30:28 2014 +
Commit: Michael Weber xmw AT gentoo DOT org
CommitDate: Tue May 20 16:30:28 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=ac31185d

revert to default use flags

Package-Manager: portage-2.2.10
Manifest-Sign-Key: 62EEF090

---
 dev-util/eclipse-cpl/ChangeLog  | 3 +++
 dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-util/eclipse-cpl/ChangeLog b/dev-util/eclipse-cpl/ChangeLog
index 707a93b..5835420 100644
--- a/dev-util/eclipse-cpl/ChangeLog
+++ b/dev-util/eclipse-cpl/ChangeLog
@@ -1,4 +1,7 @@
   20 May 2014; Michael Weber x...@gentoo.org eclipse-cpl-6.1.187.ebuild:
+  revert to default use flags
+
+  20 May 2014; Michael Weber x...@gentoo.org eclipse-cpl-6.1.187.ebuild:
   more non-parallel build
 
   20 May 2014; Michael Weber x...@gentoo.org eclipse-cpl-6.1.187.ebuild:

diff --git a/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild 
b/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
index 9cf6cd8..0ac0e93 100644
--- a/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
+++ b/dev-util/eclipse-cpl/eclipse-cpl-6.1.187.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI=http://eclipseclp.org/Distribution/${MY_PV}/src/${PN/-cpl}_src.tgz - $
 LICENSE=${pn} LGPL-2.1
 SLOT=0
 KEYWORDS=~amd64
-IUSE=doc +coin +gecode +glpk +gmp +java +mysql +tcl +threads
+IUSE=doc +coin +gecode +glpk +gmp java mysql tcl +threads
 
 RDEPEND=
 DEPEND=${RDEPEND}



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

2014-05-20 Thread Maxim Koltsov (maksbotan)
maksbotan14/05/20 17:01:16

  Modified: lc-lmp-.ebuild metadata.xml ChangeLog
  Log:
  Add fradj use flag to lc-lmp-
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F8DBDADE)

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

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

Index: lc-lmp-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/lc-lmp-.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lc-lmp-.ebuild  24 Sep 2013 16:54:44 -  1.3
+++ lc-lmp-.ebuild  20 May 2014 17:01:15 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/lc-lmp-.ebuild,v 
1.3 2013/09/24 16:54:44 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/lc-lmp-.ebuild,v 
1.4 2014/05/20 17:01:15 maksbotan Exp $
 
 EAPI=4
 
@@ -10,7 +10,7 @@
 
 SLOT=0
 KEYWORDS=
-IUSE=debug +graffiti +guess +mpris +mp3tunes
+IUSE=debug +fradj +graffiti +guess +mpris +mp3tunes
 
 # depend on gstreamer:0.10 to match current Qt deps
 DEPEND=~app-leechcraft/lc-core-${PV}
@@ -24,6 +24,7 @@
 
 src_configure() {
local mycmakeargs=
+   $(cmake-utils_use_enable fradj LMP_FRADJ)
$(cmake-utils_use_enable graffiti LMP_GRAFFITI)
$(cmake-utils_use_enable guess LMP_LIBGUESS)
$(cmake-utils_use_enable mpris LMP_MPRIS)



1.3  app-leechcraft/lc-lmp/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml24 Sep 2013 16:54:44 -  1.2
+++ metadata.xml20 May 2014 17:01:15 -  1.3
@@ -3,6 +3,7 @@
 pkgmetadata
herdleechcraft/herd
 use
+   flag name=fradjBuild FrAdj, the equalizer effect module/flag
flag name=graffitiBuild media tags editor plugin/flag
flag name=guessEnable tags encoding guessing via the libguess 
library/flag
flag name=mprisEnable MPRIS support/flag



1.14 app-leechcraft/lc-lmp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   10 Apr 2014 17:58:17 -  1.13
+++ ChangeLog   20 May 2014 17:01:15 -  1.14
@@ -1,6 +1,10 @@
 # ChangeLog for app-leechcraft/lc-lmp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/ChangeLog,v 1.13 
2014/04/10 17:58:17 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/ChangeLog,v 1.14 
2014/05/20 17:01:15 maksbotan Exp $
+
+  20 May 2014; Maxim Koltsov maksbo...@gentoo.org lc-lmp-.ebuild,
+  metadata.xml:
+  Add fradj use flag to lc-lmp-
 
 *lc-lmp-0.6.65 (10 Apr 2014)
 






[gentoo-commits] gentoo-x86 commit in app-leechcraft/lc-eleeminator: - New directory

2014-05-20 Thread Maxim Koltsov (maksbotan)
maksbotan14/05/20 17:01:51

  Log:
  Directory /var/cvsroot/gentoo-x86/app-leechcraft/lc-eleeminator added to the 
repository



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

2014-05-20 Thread Maxim Koltsov (maksbotan)
maksbotan14/05/20 17:04:26

  Added:metadata.xml lc-eleeminator-.ebuild Manifest
ChangeLog
  Log:
  Add lc-eleeminator plugin
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F8DBDADE)

Revision  ChangesPath
1.1  app-leechcraft/lc-eleeminator/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-eleeminator/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-eleeminator/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
herdleechcraft/herd
/pkgmetadata



1.1  app-leechcraft/lc-eleeminator/lc-eleeminator-.ebuild

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

Index: lc-eleeminator-.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-leechcraft/lc-eleeminator/lc-eleeminator-.ebuild,v
 1.1 2014/05/20 17:04:26 maksbotan Exp $

EAPI=4

inherit leechcraft

DESCRIPTION=Embedded LeechCraft Terminal Emulator

SLOT=0
KEYWORDS=
IUSE=debug

DEPEND=~app-leechcraft/lc-core-${PV}
x11-libs/qtermwidget
RDEPEND=${DEPEND}



1.1  app-leechcraft/lc-eleeminator/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-eleeminator/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-eleeminator/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
EBUILD lc-eleeminator-.ebuild 425 SHA256 
53e98c1ea9b1ea88d8a8253528863511ca70c9001165325070956cfa61e6bd5b SHA512 
b6dd793be8516bb235324b50312234dba8eaf2a6af17640810eb6b45877a88b045473740593221ac193554a198a679ac041571a9782651b7f7b4f025f352f79e
 WHIRLPOOL 
e0b2f18aee1a6f92f1f40c32a2cbe97424b8efd5508a8400291e16bcf7a9eedf3fe718732a24da68fdda4d3036d4d8d909e2321f69c7878f6b88f504b752104a
MISC metadata.xml 164 SHA256 
d3d50c47cc72568dcc457fe11ddfc6849ba6572bc2d581aad1deac910ee1d488 SHA512 
ce478accd06c9c530d86b3ca8abaf3680428a7ab07ed8bb5b78e60c7e3240c3be349993f73e2ef904642efec5cd9c8abb7196675b46723103290ef9ab5d1cc10
 WHIRLPOOL 
4c2d59059bc69ff27c720b093f582968e2778d23875e0f7d3edba0ec6634e1b50e7403974c4a32638eeaae4d7baf45ca163e5e80f5bd692590b7d075882d51f0



1.1  app-leechcraft/lc-eleeminator/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for app-leechcraft/lc-eleeminator
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-eleeminator/ChangeLog,v 
1.1 2014/05/20 17:04:26 maksbotan Exp $

*lc-eleeminator- (20 May 2014)

  20 May 2014; Maxim Koltsov maksbo...@gentoo.org +lc-eleeminator-.ebuild,
  +metadata.xml:
  Add lc-eleeminator plugin






[gentoo-commits] dev/maekke:master commit in: media-gfx/hugin/

2014-05-20 Thread Markus Meier
commit: a076e4252b35048ba7eeaf84c73a7218e0a4cf6a
Author: Markus Meier maekke AT gentoo DOT org
AuthorDate: Tue May 20 17:18:06 2014 +
Commit: Markus Meier maekke AT gentoo DOT org
CommitDate: Tue May 20 17:18:06 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/maekke.git;a=commit;h=a076e425

version bump

Package-Manager: portage-2.2.10
Manifest-Sign-Key: 072AD062

---
 media-gfx/hugin/Manifest  |  8 +--
 media-gfx/hugin/hugin-2014.0.0_rc3.ebuild | 83 +++
 2 files changed, 88 insertions(+), 3 deletions(-)

diff --git a/media-gfx/hugin/Manifest b/media-gfx/hugin/Manifest
index ed9f5e5..927b32f 100644
--- a/media-gfx/hugin/Manifest
+++ b/media-gfx/hugin/Manifest
@@ -10,16 +10,18 @@ DIST hugin-2012.0.0.tar.bz2 11658665 SHA256 
63dfd88ac90d3af4b958111db951bb7fbf2c
 DIST hugin-2013.0.0.tar.bz2 11247583 SHA256 
484e1ed58fa6fe4bae1f423967101549345bcca2653b992afbc0ed9ec0dbebd5 SHA512 
dea1682c16991441278a881e5e0916ffdbe8e0012f0dcf45875ee97fe7dc698d4d98037916e63c9a651557adc45c89e4e350ad976fec020562bc17a31f608a86
 WHIRLPOOL 
c3d8e175ff23c8761815406039a8027da327925f07a18b00bde4d457228a2562f30f5df3fb5dff17f8003f985d7b51ec39d557a064c7e228b09ff73473c41e6a
 DIST hugin-2014.0.0_rc1.tar.bz2 11310892 SHA256 
cb5b6f47e3dc55595be592f66c91c71c0afdab0a57da71f8ff21d954108e54f3 SHA512 
53f984ca383d5e2360dc117766eb4d8d2eb52b25b2301ca1df5af3aede59717195604d8bb9690db7604b6a4dd046ac820e10e996aaaf4dedc52655404b0682c4
 WHIRLPOOL 
89a924e35dba64ed20716f5eefb0ae51412cd15551e83fe720ca21e0267db2f685942d143d9c8408ea89ff1e20133e05ae52f6a020ffe7a40e0884980bbd66a2
 DIST hugin-2014.0.0_rc2.tar.bz2 10971998 SHA256 
94b801899257f453f4ee0b51b762967c8a42ffd64345cb97a031142b35537e62 SHA512 
f69120f7ababde9462e6afa9119f20bd8b7ddace443160411b84963bb985f15b3e4c9c34a255d64574a1234b2a33b6a39e1220d0e64ad0a66520d7a935fcd966
 WHIRLPOOL 
eb26a333ca1a48238f03ccac216fc9fc3bae36223312eeeffbb8ee4ddca9011d4ceafa19d3b34ed0b9715336b9c529c0a08dca7ff68ae0e4d3ee8862dc9955ae
+DIST hugin-2014.0.0_rc3.tar.bz2 10970434 SHA256 
85d9b5422c0b32e3f369820628358fb4a0ff2f2ccc44b5dbee4e937f084ef83a SHA512 
6cad780ed5024f7af26b99d26cbf3e2ed47fdd0c82de57307d33295ae20a7e89a9cb5f9789e2d360c959caf1099fc3e0e243a647f88586a48cc1690757eb2744
 WHIRLPOOL 
eecaa22051093fc6fb6f36cf7f6b5d59fdd8cd4259a186c15f75617ae10ba1d000fd48357b48054be523522e09fea66450fd52e22732516baaa4ce0282b0d82e
 EBUILD hugin-2012.0.0.ebuild 1648 SHA256 
b49e5866a8ff84c4f5ff4781faa30d94d7fe945b29a217e663c66bc02b7cced6 SHA512 
ff7bd929200b93a13dced894633370a5e1abe11d58e78d2001e71832342fe10478bd9c7d9c35da252b8520fd845d960fca1823e053e5afc72d2519ca7b1bc730
 WHIRLPOOL 
106f4eeed3afa6c4d4ee7c181ce8a2989e88e61511401105d36bc67544901598f31b882d0547e31db89fe5daeb249e435223ddb9985bc274b7c73864daba9421
 EBUILD hugin-2013.0.0-r1.ebuild 2016 SHA256 
32bf287de5dc2f38014833358c0cc22edebddea3d5c1002a5a0ae78340471752 SHA512 
773ce13fc76b90447bb3140c5aa6c360c4e5868ed29988996211fb009fa78fe62c3dd00461fc022f32713a9c8fcb4495c8bbd24a08584fbae4c4b089c10a96df
 WHIRLPOOL 
cdf69d3eaf5ca8590b7a838c1b854b70401913739a177ae0c23460a0e9439eb6283f4923052d3547014e25bf724e341e0cdaf5c93afc27605f4d824f3d751749
 EBUILD hugin-2014.0.0_rc1.ebuild 1968 SHA256 
893fbec431ac969948bbc8dce14011ae6627b7a589f1500631be38ec111b1c13 SHA512 
89863ef8d46b28714f80531146d2b5983a9e5c33e55a7cf8685dd2582c7941f77c743e8038839f6af0ac9495978ebf7c3badc636a917bc973fe5ea9f857488cd
 WHIRLPOOL 
75f24a64b86658489b531e25147d93fe6e501875516e6495749457bcd1bcf2858a8a8390232181ce6ca8892d66c636824fa2ad16af5a43515c3d033b85efb3b8
 EBUILD hugin-2014.0.0_rc2.ebuild 1968 SHA256 
893fbec431ac969948bbc8dce14011ae6627b7a589f1500631be38ec111b1c13 SHA512 
89863ef8d46b28714f80531146d2b5983a9e5c33e55a7cf8685dd2582c7941f77c743e8038839f6af0ac9495978ebf7c3badc636a917bc973fe5ea9f857488cd
 WHIRLPOOL 
75f24a64b86658489b531e25147d93fe6e501875516e6495749457bcd1bcf2858a8a8390232181ce6ca8892d66c636824fa2ad16af5a43515c3d033b85efb3b8
+EBUILD hugin-2014.0.0_rc3.ebuild 1968 SHA256 
893fbec431ac969948bbc8dce14011ae6627b7a589f1500631be38ec111b1c13 SHA512 
89863ef8d46b28714f80531146d2b5983a9e5c33e55a7cf8685dd2582c7941f77c743e8038839f6af0ac9495978ebf7c3badc636a917bc973fe5ea9f857488cd
 WHIRLPOOL 
75f24a64b86658489b531e25147d93fe6e501875516e6495749457bcd1bcf2858a8a8390232181ce6ca8892d66c636824fa2ad16af5a43515c3d033b85efb3b8
 EBUILD hugin-.ebuild 1998 SHA256 
f5ef9355806eaed940e3a820cab87c55d99016a67ee1fdfeaf8b6ce969ca5a31 SHA512 
e633c703e88d6c5e96e8f602d088d906f3c7c58a13d5672853eca3382133bafc31b03204ed5f78191ee8ece6ad44bb9f8d128c874edf715e7e0b493d1ec16d6f
 WHIRLPOOL 
6258802424c0b048428966609472085f89b94722ef5ac6d6f4622bc20b30595db5d9b780f973e36913d2c3167acd13c0ee8f3ecc4902f9509520748928179d27
 MISC metadata.xml 395 SHA256 
1e88681d08863b52f3ae17f149901c3d84b6c6197913f7538d17572b33adbf9b SHA512 
52848e953af2d3a398f9309a8af40261df0bb78365a3065f805ad06fbc40bea2a44b23ca70aa898b7dbb39a1c2e1309f036762de81d66824bdea09f767039a21
 WHIRLPOOL 

[gentoo-commits] gentoo-x86 commit in media-gfx/hugin: ChangeLog hugin-2014.0.0_rc3.ebuild

2014-05-20 Thread Markus Meier (maekke)
maekke  14/05/20 17:13:58

  Modified: ChangeLog
  Added:hugin-2014.0.0_rc3.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
072AD062)

Revision  ChangesPath
1.146media-gfx/hugin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog   27 Apr 2014 11:54:29 -  1.145
+++ ChangeLog   20 May 2014 17:13:58 -  1.146
@@ -1,6 +1,11 @@
 # ChangeLog for media-gfx/hugin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.145 
2014/04/27 11:54:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.146 
2014/05/20 17:13:58 maekke Exp $
+
+*hugin-2014.0.0_rc3 (20 May 2014)
+
+  20 May 2014; Markus Meier mae...@gentoo.org +hugin-2014.0.0_rc3.ebuild:
+  version bump
 
 *hugin-2014.0.0_rc2 (27 Apr 2014)
 



1.1  media-gfx/hugin/hugin-2014.0.0_rc3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2014.0.0_rc3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2014.0.0_rc3.ebuild?rev=1.1content-type=text/plain

Index: hugin-2014.0.0_rc3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/hugin-2014.0.0_rc3.ebuild,v 
1.1 2014/05/20 17:13:58 maekke Exp $

EAPI=5

WX_GTK_VER=2.8
PYTHON_COMPAT=( python{2_7,3_2,3_3} )

inherit base python-single-r1 wxwidgets versionator cmake-utils

DESCRIPTION=GUI for the creation  processing of panoramic images
HOMEPAGE=http://hugin.sf.net;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.bz2

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

LANGS= cs da de en_GB es eu fi fr hu it ja nl pl pt_BR ro ru sk sv zh_CN zh_TW
IUSE=lapack python sift debug $(echo ${LANGS//\ /\ linguas_})

CDEPEND=
!!dev-util/cocom
app-arch/zip
dev-cpp/tclap
=dev-libs/boost-1.49.0-r1:=
dev-libs/zthread
=media-gfx/enblend-4.0
media-gfx/exiv2
media-libs/freeglut
media-libs/glew:=
media-libs/lensfun
=media-libs/libpano13-2.9.19_beta1:0=
media-libs/libpng:0=
media-libs/openexr:=
media-libs/tiff
sys-libs/zlib
virtual/jpeg
x11-libs/wxGTK:2.8=[X,opengl,-odbc]
lapack? ( virtual/lapack )
sift? ( media-gfx/autopano-sift-C )
RDEPEND=${CDEPEND}
media-libs/exiftool
DEPEND=${CDEPEND}
virtual/pkgconfig
python? ( ${PYTHON_DEPS} =dev-lang/swig-2.0.4 )

REQUIRED_USE=python? ( ${PYTHON_REQUIRED_USE} )

S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)

pkg_setup() {
DOCS=authors.txt README TODO
mycmakeargs=(
$(cmake-utils_use_enable lapack LAPACK)
$(cmake-utils_use_build python HSI)
)
python-single-r1_pkg_setup
}

src_prepare() {
sed \
-e 's:-O3::g' \
-i src/celeste/CMakeLists.txt || die
rm CMakeModules/{FindLAPACK,FindPkgConfig}.cmake || die

cmake-utils_src_prepare
}

src_install() {
cmake-utils_src_install
python_optimize

for lang in ${LANGS} ; do
case ${lang} in
ca) dir=ca_ES;;
cs) dir=cs_CZ;;
*) dir=${lang};;
esac
use linguas_${lang} || rm -r ${D}/usr/share/locale/${dir}
done
}






[gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/files/, sys-cluster/hpx/

2014-05-20 Thread Christoph Junghans
commit: 7aa442faa14f7818e677ac8b3c7fcea08c96d1e4
Author: Christoph Junghans ottxor AT gentoo DOT org
AuthorDate: Tue May 20 17:22:53 2014 +
Commit: Christoph Junghans ottxor AT gentoo DOT org
CommitDate: Tue May 20 17:23:06 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7aa442fa

version bump

Package-Manager: portage-2.2.8-r1

---
 sys-cluster/hpx/ChangeLog  |   7 +
 sys-cluster/hpx/files/hpx-0.9.8-cmake_dir.patch|  27 
 sys-cluster/hpx/files/hpx-0.9.8-install-path.patch |  69 +
 sys-cluster/hpx/files/hpx-0.9.8-multilib.patch | 163 +
 sys-cluster/hpx/hpx-0.9.8.ebuild   |  96 
 5 files changed, 362 insertions(+)

diff --git a/sys-cluster/hpx/ChangeLog b/sys-cluster/hpx/ChangeLog
index 3bef4c6..76ead3d 100644
--- a/sys-cluster/hpx/ChangeLog
+++ b/sys-cluster/hpx/ChangeLog
@@ -2,6 +2,13 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*hpx-0.9.8 (20 May 2014)
+
+  20 May 2014; Christoph Junghans ott...@gentoo.org
+  +files/hpx-0.9.8-cmake_dir.patch, +files/hpx-0.9.8-install-path.patch,
+  +files/hpx-0.9.8-multilib.patch, +hpx-0.9.8.ebuild:
+  version bump
+
   16 Feb 2014; Sébastien Fabbro bicat...@gentoo.org hpx-0.9.7.ebuild,
   hpx-.ebuild, metadata.xml:
   sys-cluster/hpx: Version bump

diff --git a/sys-cluster/hpx/files/hpx-0.9.8-cmake_dir.patch 
b/sys-cluster/hpx/files/hpx-0.9.8-cmake_dir.patch
new file mode 100644
index 000..b5c66c2
--- /dev/null
+++ b/sys-cluster/hpx/files/hpx-0.9.8-cmake_dir.patch
@@ -0,0 +1,27 @@
+From e565c2cce934f2d6fa6e80061c416a2e7df0f311 Mon Sep 17 00:00:00 2001
+From: Christoph Junghans jungh...@lanl.gov
+Date: Tue, 20 May 2014 11:18:21 -0600
+Subject: [PATCH] make cmake_dir configure-able
+
+---
+ CMakeLists.txt | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8ad79cb..e6f392a 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -1981,7 +1981,9 @@ endforeach()
+ # Make list unique
+ list(REMOVE_DUPLICATES external_definitions)
+ 
+-set(cmake_dir cmake-${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
++if (NOT DEFINED cmake_dir)
++  set(cmake_dir cmake-${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
++endif(NOT DEFINED cmake_dir)
+ 
+ if(MSVC)
+   set(output_dir ${CMAKE_BINARY_DIR}/${CMAKE_BUILD_TYPE})
+-- 
+1.8.5.5
+

diff --git a/sys-cluster/hpx/files/hpx-0.9.8-install-path.patch 
b/sys-cluster/hpx/files/hpx-0.9.8-install-path.patch
new file mode 100644
index 000..f5c867b
--- /dev/null
+++ b/sys-cluster/hpx/files/hpx-0.9.8-install-path.patch
@@ -0,0 +1,69 @@
+From 5c04f9c2d47a41f6113f45eeb4dd9f7968f2cd52 Mon Sep 17 00:00:00 2001
+From: Christoph Junghans jungh...@lanl.gov
+Date: Tue, 20 May 2014 09:27:47 -0600
+Subject: [PATCH] fix make install non-empty DESTDIR
+
+Symlinks were created even when make install was called with a
+non-empty DESTDIR variable. Fixed by creating the symlinks in build
+directory first and then install them using common install.
+DESTDIR installation is needed for binary packages.
+---
+ CMakeLists.txt | 31 +++
+ 1 file changed, 19 insertions(+), 12 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 00a71c7..8d5df19 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -1762,15 +1762,22 @@ if(NOT HPX_NO_INSTALL)
+ 
+   if(UNIX)
+ file(GLOB scripts ${CMAKE_SOURCE_DIR}/python/scripts/*.py)
++execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory
++  ${CMAKE_BINARY_DIR}/python/scripts )
+ foreach(script ${scripts})
+   get_filename_component(script_name ${script} NAME)
+   get_filename_component(script_name_we ${script} NAME_WE)
+-  install(CODE
+-set(bindir \${CMAKE_INSTALL_PREFIX}/bin/\)
+- execute_process(
+-   COMMAND \\${CMAKE_COMMAND}\ -E create_symlink
+-   \${script_name}\ \${script_name_we}\
+-   WORKING_DIRECTORY \\${bindir}\))
++
++  #make copy, so that we have intact symlink in CMAKE_BINARY_DIR
++  execute_process(
++COMMAND ${CMAKE_COMMAND} -E copy_if_different ${script} 
${script_name}
++  WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/python/scripts)
++
++  execute_process(
++COMMAND ${CMAKE_COMMAND} -E create_symlink ${script_name} 
${script_name_we}
++  WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/python/scripts)
++
++  install(FILES ${CMAKE_BINARY_DIR}/python/scripts/${script_name_we} 
DESTINATION bin)
+ endforeach()
+   endif()
+ 
+@@ -1781,13 +1788,13 @@ if(NOT HPX_NO_INSTALL)
+ FILES_MATCHING PATTERN *.py
+ PATTERN .git EXCLUDE)
+ 
++  execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory 
${CMAKE_BINARY_DIR}/python )
++  #make symlink, so that we have intact hpx symlink in CMAKE_BINARY_DIR
++  execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink 
${CMAKE_SOURCE_DIR}/python/hpx
++

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

2014-05-20 Thread Alexis Ballier (aballier)
aballier14/05/20 17:55:26

  Modified: ChangeLog x265-.ebuild x265-0.8.ebuild
  Log:
  build as PIC (that is what is done for amd64 in CMakeLists.txt anyway); patch 
by Jeroen Roovers, bug #510444.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.5  media-libs/x265/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   28 Apr 2014 17:50:08 -  1.4
+++ ChangeLog   20 May 2014 17:55:26 -  1.5
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/x265
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.4 2014/04/28 
17:50:08 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.5 2014/05/20 
17:55:26 aballier Exp $
+
+  20 May 2014; Alexis Ballier aball...@gentoo.org x265-0.8.ebuild,
+  x265-.ebuild:
+  build as PIC (that is what is done for amd64 in CMakeLists.txt anyway); patch
+  by Jeroen Roovers, bug #510444.
 
   28 Apr 2014; Michał Górny mgo...@gentoo.org x265-0.8.ebuild,
   x265-.ebuild:



1.5  media-libs/x265/x265-.ebuild

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

Index: x265-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- x265-.ebuild28 Apr 2014 17:50:08 -  1.4
+++ x265-.ebuild20 May 2014 17:55:26 -  1.5
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v 1.4 
2014/04/28 17:50:08 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v 1.5 
2014/05/20 17:55:26 aballier Exp $
 
 EAPI=5
 
-inherit cmake-multilib multilib
+inherit cmake-multilib multilib flag-o-matic
 
 if [[ ${PV} = * ]]; then
inherit mercurial
@@ -40,6 +40,8 @@
 }
 
 multilib_src_configure() {
+   append-cflags -fPIC
+   append-cxxflags -fPIC
local mycmakeargs=(
$(cmake-utils_use_enable test TESTS)
$(multilib_is_native_abi || echo -DENABLE_CLI=OFF)



1.3  media-libs/x265/x265-0.8.ebuild

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

Index: x265-0.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-0.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- x265-0.8.ebuild 28 Apr 2014 17:50:08 -  1.2
+++ x265-0.8.ebuild 20 May 2014 17:55:26 -  1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-0.8.ebuild,v 1.2 
2014/04/28 17:50:08 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-0.8.ebuild,v 1.3 
2014/05/20 17:55:26 aballier Exp $
 
 EAPI=5
 
-inherit cmake-multilib
+inherit cmake-multilib flag-o-matic
 
 if [[ ${PV} = * ]]; then
inherit mercurial
@@ -45,6 +45,8 @@
 }
 
 multilib_src_configure() {
+   append-cflags -fPIC
+   append-cxxflags -fPIC
local mycmakeargs=(
$(cmake-utils_use_enable test TESTS)
$(multilib_is_native_abi || echo -DENABLE_CLI=OFF)






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

2014-05-20 Thread Hans de Graaff (graaff)
graaff  14/05/20 17:58:10

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

Revision  ChangesPath
1.7  dev-ruby/css_parser/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/css_parser/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   11 May 2014 22:14:48 -  1.6
+++ ChangeLog   20 May 2014 17:58:10 -  1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/css_parser
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/css_parser/ChangeLog,v 1.6 
2014/05/11 22:14:48 vikraman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/css_parser/ChangeLog,v 1.7 
2014/05/20 17:58:10 graaff Exp $
+
+  20 May 2014; Hans de Graaff gra...@gentoo.org css_parser-1.3.5-r1.ebuild:
+  Add ruby21. Drop ruby18.
 
   11 May 2014; Vikraman Choudhury (vikraman) vikra...@gentoo.org
   css_parser-1.3.5-r1.ebuild:



1.3  dev-ruby/css_parser/css_parser-1.3.5-r1.ebuild

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

Index: css_parser-1.3.5-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/css_parser/css_parser-1.3.5-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- css_parser-1.3.5-r1.ebuild  11 May 2014 22:14:48 -  1.2
+++ css_parser-1.3.5-r1.ebuild  20 May 2014 17:58:10 -  1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/css_parser/css_parser-1.3.5-r1.ebuild,v 1.2 
2014/05/11 22:14:48 vikraman Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/css_parser/css_parser-1.3.5-r1.ebuild,v 1.3 
2014/05/20 17:58:10 graaff Exp $
 
 EAPI=5
-USE_RUBY=ruby18 ruby19 ruby20 jruby
+USE_RUBY=ruby19 ruby20 ruby21 jruby
 
 RUBY_FAKEGEM_RECIPE_DOC=rdoc
 RUBY_FAKEGEM_DOC_DIR=doc






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

2014-05-20 Thread Alexis Ballier (aballier)
aballier14/05/20 17:59:04

  Modified: ChangeLog x265-.ebuild
  Log:
  bump subslot according to soname change
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.6  media-libs/x265/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   20 May 2014 17:55:26 -  1.5
+++ ChangeLog   20 May 2014 17:59:04 -  1.6
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/x265
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.5 2014/05/20 
17:55:26 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.6 2014/05/20 
17:59:04 aballier Exp $
+
+  20 May 2014; Alexis Ballier aball...@gentoo.org x265-.ebuild:
+  bump subslot according to soname change
 
   20 May 2014; Alexis Ballier aball...@gentoo.org x265-0.8.ebuild,
   x265-.ebuild:



1.6  media-libs/x265/x265-.ebuild

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

Index: x265-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- x265-.ebuild20 May 2014 17:55:26 -  1.5
+++ x265-.ebuild20 May 2014 17:59:04 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v 1.5 
2014/05/20 17:55:26 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-.ebuild,v 1.6 
2014/05/20 17:59:04 aballier Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 
 LICENSE=GPL-2
 # subslot = libx265 soname
-SLOT=0/15
+SLOT=0/18
 IUSE=+10bit test
 
 ASM_DEPEND==dev-lang/yasm-1.2.0






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

2014-05-20 Thread Hans de Graaff (graaff)
graaff  14/05/20 18:13:13

  Modified: ChangeLog
  Added:compass-0.12.6-r1.ebuild
  Removed:  compass-0.12.6.ebuild
  Log:
  Revision bump to ensure correct dependencies. Fix tests by using mocha:0.13. 
Add missing cucumber dependency. Fix cucumber scenario and avoid another.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.2  dev-ruby/compass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/compass/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   11 May 2014 22:23:10 -  1.1
+++ ChangeLog   20 May 2014 18:13:13 -  1.2
@@ -1,6 +1,13 @@
 # ChangeLog for dev-ruby/compass
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/compass/ChangeLog,v 1.1 2014/05/11 
22:23:10 vikraman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/compass/ChangeLog,v 1.2 2014/05/20 
18:13:13 graaff Exp $
+
+*compass-0.12.6-r1 (20 May 2014)
+
+  20 May 2014; Hans de Graaff gra...@gentoo.org -compass-0.12.6.ebuild,
+  +compass-0.12.6-r1.ebuild:
+  Revision bump to ensure correct dependencies. Fix tests by using mocha:0.13.
+  Add missing cucumber dependency. Fix cucumber scenario and avoid another.
 
 *compass-0.12.6 (11 May 2014)
 



1.1  dev-ruby/compass/compass-0.12.6-r1.ebuild

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

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

EAPI=5

USE_RUBY=ruby19

RUBY_FAKEGEM_TASK_TEST=-Ilib test features
RUBY_FAKEGEM_EXTRAINSTALL=frameworks
RUBY_FAKEGEM_RECIPE_DOC=rdoc

inherit ruby-fakegem

DESCRIPTION=Sass-based Stylesheet Framework
HOMEPAGE=http://compass-style.org/;

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

ruby_add_bdepend 
=dev-ruby/sass-3.2.19:0
=dev-ruby/chunky_png-1.2
=dev-ruby/fssm-0.2.7
test? (
dev-ruby/mocha:0.13
dev-ruby/css_parser
dev-util/cucumber
)


all_ruby_prepare() {
sed -e '/.*[Bb]undler.*/d' \
-i Rakefile || die sed failed
sed -e '/require \mocha\/test_unit\/d' \
-i test/test_helper.rb || die sed failed

sed -i -e '1igem mocha, ~ 0.13.0' test/test_helper.rb || die

sed -i -e s:/tmp:${TMPDIR}: 
features/step_definitions/command_line_steps.rb || die
# This scenario fails, not clear yet why.
sed -i -e '/Watching a project for changes/,/^$/ d' 
features/command_line.feature || die
}






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

2014-05-20 Thread Amadeusz Zolnowski (aidecoe)
aidecoe 14/05/20 18:23:07

  Modified: ChangeLog
  Added:dracut-037-r2.ebuild
  Log:
  Fixes bug #510848 on behalf of Alexander Tsoy.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F0134531E1DBFAB5)

Revision  ChangesPath
1.167sys-kernel/dracut/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- ChangeLog   14 May 2014 07:09:46 -  1.166
+++ ChangeLog   20 May 2014 18:23:07 -  1.167
@@ -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.166 
2014/05/14 07:09:46 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.167 
2014/05/20 18:23:07 aidecoe Exp $
+
+*dracut-037-r2 (20 May 2014)
+
+  20 May 2014; Amadeusz Żołnowski aide...@gentoo.org +dracut-037-r2.ebuild,
+  +files/037-0006-98systemd-fixup-rootfs-generator-insta.patch:
+  Fixes bug #510848 on behalf of Alexander Tsoy.
 
 *dracut-037-r1 (13 May 2014)
 



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

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

Index: dracut-037-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-037-r2.ebuild,v 1.1 
2014/05/20 18:23:07 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
${FILESDIR}/${PV}-0006-98systemd-fixup-rootfs-generator-insta.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 to \${libdirs}\ ...
sed 

[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut/files: 037-0006-98systemd-fixup-rootfs-generator-insta.patch

2014-05-20 Thread Amadeusz Zolnowski (aidecoe)
aidecoe 14/05/20 18:23:07

  Added:   
037-0006-98systemd-fixup-rootfs-generator-insta.patch
  Log:
  Fixes bug #510848 on 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-0006-98systemd-fixup-rootfs-generator-insta.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/037-0006-98systemd-fixup-rootfs-generator-insta.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/037-0006-98systemd-fixup-rootfs-generator-insta.patch?rev=1.1content-type=text/plain

Index: 037-0006-98systemd-fixup-rootfs-generator-insta.patch
===
From 37e2811681ed6772c90f8f89432ac1629894a314 Mon Sep 17 00:00:00 2001
From: Hannes Reinecke h...@suse.de
Date: Tue, 20 May 2014 11:20:10 +0200
Subject: [PATCH 6/6] 98systemd: fixup rootfs-generator installation path

The rootfs-generator was installed in the wrong path
in the initrd, cause it never to be run.

References: bnc#878714

Signed-off-by: Hannes Reinecke h...@suse.de
---
 modules.d/98systemd/module-setup.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules.d/98systemd/module-setup.sh 
b/modules.d/98systemd/module-setup.sh
index c72aad4..25ca605 100755
--- a/modules.d/98systemd/module-setup.sh
+++ b/modules.d/98systemd/module-setup.sh
@@ -191,7 +191,7 @@ install() {
 inst_script $moddir/dracut-mount.sh /bin/dracut-mount
 inst_script $moddir/dracut-pre-pivot.sh /bin/dracut-pre-pivot
 
-inst_script $moddir/rootfs-generator.sh 
/lib/systemd/system-generators/dracut-rootfs-generator
+inst_script $moddir/rootfs-generator.sh 
$systemdutildir/system-generators/dracut-rootfs-generator
 
 inst_binary true
 ln_r $(type -P true) /usr/bin/loginctl
-- 
1.9.3







[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ChangeLog ffmpeg-2.2.2.ebuild

2014-05-20 Thread Alexis Ballier (aballier)
aballier14/05/20 18:26:18

  Modified: ChangeLog ffmpeg-2.2.2.ebuild
  Log:
  fix build with USE=ladspa -frei0r, bug #510516
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.736media-video/ffmpeg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.735
retrieving revision 1.736
diff -u -r1.735 -r1.736
--- ChangeLog   19 May 2014 20:23:51 -  1.735
+++ ChangeLog   20 May 2014 18:26:18 -  1.736
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpeg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.735 
2014/05/19 20:23:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.736 
2014/05/20 18:26:18 aballier Exp $
+
+  20 May 2014; Alexis Ballier aball...@gentoo.org ffmpeg-2.2.2.ebuild,
+  +files/ladspadl.patch:
+  fix build with USE=ladspa -frei0r, bug #510516
 
   19 May 2014; Jeroen Roovers j...@gentoo.org ffmpeg-2.2.2.ebuild:
   Marked ~hppa (bug #510340).



1.5  media-video/ffmpeg/ffmpeg-2.2.2.ebuild

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

Index: ffmpeg-2.2.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ffmpeg-2.2.2.ebuild 19 May 2014 20:23:51 -  1.4
+++ ffmpeg-2.2.2.ebuild 20 May 2014 18:26:18 -  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/media-video/ffmpeg/ffmpeg-2.2.2.ebuild,v 
1.4 2014/05/19 20:23:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.2.ebuild,v 
1.5 2014/05/20 18:26:18 aballier Exp $
 
 EAPI=5
 
@@ -162,6 +162,7 @@
if [ ${PV%_p*} != ${PV} ] ; then # Snapshot
export revision=git-N-${FFMPEG_REVISION}
fi
+   epatch ${FILESDIR}/ladspadl.patch
epatch_user
 }
 






[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg/files: ladspadl.patch

2014-05-20 Thread Alexis Ballier (aballier)
aballier14/05/20 18:26:18

  Added:ladspadl.patch
  Log:
  fix build with USE=ladspa -frei0r, bug #510516
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.1  media-video/ffmpeg/files/ladspadl.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/files/ladspadl.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/files/ladspadl.patch?rev=1.1content-type=text/plain

Index: ladspadl.patch
===
From c27dc27c50cb016d470b45c5852c884718f4769c Mon Sep 17 00:00:00 2001
From: Alexis Ballier aball...@gentoo.org
Date: Tue, 20 May 2014 20:06:28 +0200
Subject: [PATCH] Fix build with --enable-ladspa --disable-frei0r.

https://bugs.gentoo.org/show_bug.cgi?id=510516
---
 configure | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure b/configure
index b6d35ae..0848fed 100755
--- a/configure
+++ b/configure
@@ -2499,6 +2499,7 @@ hqdn3d_filter_deps=gpl
 interlace_filter_deps=gpl
 kerndeint_filter_deps=gpl
 ladspa_filter_deps=ladspa dlopen
+ladspa_filter_extralibs='$ldl'
 mcdeint_filter_deps=avcodec gpl
 movie_filter_deps=avcodec avformat
 mp_filter_deps=gpl avcodec swscale inline_asm
-- 
1.9.3







[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ChangeLog ffmpeg-2.2.2.ebuild

2014-05-20 Thread Alexis Ballier (aballier)
aballier14/05/20 18:30:09

  Modified: ChangeLog ffmpeg-2.2.2.ebuild
  Log:
  leverage x265 deps now that it works
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.737media-video/ffmpeg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.736
retrieving revision 1.737
diff -u -r1.736 -r1.737
--- ChangeLog   20 May 2014 18:26:18 -  1.736
+++ ChangeLog   20 May 2014 18:30:09 -  1.737
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/ffmpeg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.736 
2014/05/20 18:26:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.737 
2014/05/20 18:30:09 aballier Exp $
+
+  20 May 2014; Alexis Ballier aball...@gentoo.org ffmpeg-2.2.2.ebuild:
+  leverage x265 deps now that it works
 
   20 May 2014; Alexis Ballier aball...@gentoo.org ffmpeg-2.2.2.ebuild,
   +files/ladspadl.patch:



1.6  media-video/ffmpeg/ffmpeg-2.2.2.ebuild

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

Index: ffmpeg-2.2.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ffmpeg-2.2.2.ebuild 20 May 2014 18:26:18 -  1.5
+++ ffmpeg-2.2.2.ebuild 20 May 2014 18:30:09 -  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/ffmpeg/ffmpeg-2.2.2.ebuild,v 
1.5 2014/05/20 18:26:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.2.ebuild,v 
1.6 2014/05/20 18:30:09 aballier Exp $
 
 EAPI=5
 
@@ -91,7 +91,7 @@
wavpack? ( media-sound/wavpack )
webp? ( media-libs/libwebp )
x264? ( =media-libs/x264-0.0.20111017:= )
-   x265? ( media-libs/x265-0.9:= )
+   x265? ( media-libs/x265:= )
xvid? ( =media-libs/xvid-1.1.0 )
)
fdk? ( =media-libs/fdk-aac-0.1.3 )






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

2014-05-20 Thread Hans de Graaff (graaff)
graaff  14/05/20 18:39:03

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

Revision  ChangesPath
1.35 dev-ruby/rubyzip/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubyzip/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   11 May 2014 05:59:40 -  1.34
+++ ChangeLog   20 May 2014 18:39:03 -  1.35
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/rubyzip
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubyzip/ChangeLog,v 1.34 
2014/05/11 05:59:40 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubyzip/ChangeLog,v 1.35 
2014/05/20 18:39:03 graaff Exp $
+
+*rubyzip-0.9.9-r1 (20 May 2014)
+
+  20 May 2014; Hans de Graaff gra...@gentoo.org +rubyzip-0.9.9-r1.ebuild:
+  Add ruby20, ruby21.
 
 *rubyzip-1.1.3 (11 May 2014)
 



1.1  dev-ruby/rubyzip/rubyzip-0.9.9-r1.ebuild

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

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

EAPI=5

# jruby → adding zip files to the load path fails, badly
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=README.md TODO NEWS

inherit ruby-fakegem

DESCRIPTION=A ruby library for reading and writing zip files
HOMEPAGE=https://github.com/aussiegeek/rubyzip;
# Tests are not included in the gem.
SRC_URI=https://github.com/aussiegeek/rubyzip/tarball/${PV} - ${P}-git.tgz
RUBY_S=aussiegeek-rubyzip-*

LICENSE=Ruby
SLOT=0
KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
IUSE=

RDEPEND=
DEPEND=${DEPEND} test? ( app-arch/zip )

all_ruby_install() {
all_fakegem_install

docinto examples
dodoc samples/*
}






  1   2   3   >