Sync with portage [Mon Jul 1 13:20:14 MSK 2013].

mhiretskiy
root 11 years ago
parent d8c651f055
commit 20337c0378

@ -0,0 +1,70 @@
From 28d0350070c6120a83287f0846c59f50814bc37a Mon Sep 17 00:00:00 2001
From: "Mark J. Washenberger" <mark.washenberger@markwash.net>
Date: Wed, 26 Jun 2013 15:41:25 -0700
Subject: [PATCH] Don't rely on prog.Name for paste app
Relying on the name of the program breaks packagers who need to move
glance executables around to other locations on the file system.
Fixes bug 1194987
Change-Id: I7721c5181b17b1f34adc279c055dfff5d17b57e5
---
bin/glance-api.py | 2 +-
bin/glance-registry.py | 3 ++-
glance/common/config.py | 5 +----
3 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/bin/glance-api b/bin/glance-api
index a82261e..5244b84 100755
--- a/bin/glance-api
+++ b/bin/glance-api
@@ -53,7 +53,7 @@ if __name__ == '__main__':
log.setup('glance')
server = wsgi.Server()
- server.start(config.load_paste_app, default_port=9292)
+ server.start(config.load_paste_app('glance-api'), default_port=9292)
server.wait()
except exception.WorkerCreationFailure as e:
fail(2, e)
diff --git a/bin/glance-registry b/bin/glance-registry
index 678bcd1..39bc3ee 100755
--- a/bin/glance-registry
+++ b/bin/glance-registry
@@ -47,7 +47,8 @@ if __name__ == '__main__':
log.setup('glance')
server = wsgi.Server()
- server.start(config.load_paste_app, default_port=9191)
+ server.start(config.load_paste_app('glance-registry'),
+ default_port=9191)
server.wait()
except RuntimeError as e:
sys.exit("ERROR: %s" % e)
diff --git a/glance/common/config.py b/glance/common/config.py
index 45cea5d..cd4feba 100644
--- a/glance/common/config.py
+++ b/glance/common/config.py
@@ -158,7 +158,7 @@ def _get_deployment_config_file():
return os.path.abspath(path)
-def load_paste_app(app_name=None):
+def load_paste_app(app_name):
"""
Builds and returns a WSGI app from a paste config file.
@@ -170,9 +170,6 @@ def load_paste_app(app_name=None):
:raises RuntimeError when config file cannot be located or application
cannot be loaded from config file
"""
- if app_name is None:
- app_name = CONF.prog
-
# append the deployment flavor to the application name,
# in order to identify the appropriate paste pipeline
app_name += _get_deployment_flavor()
--
1.8.1.5

@ -0,0 +1,70 @@
From 28d0350070c6120a83287f0846c59f50814bc37a Mon Sep 17 00:00:00 2001
From: "Mark J. Washenberger" <mark.washenberger@markwash.net>
Date: Wed, 26 Jun 2013 15:41:25 -0700
Subject: [PATCH] Don't rely on prog.Name for paste app
Relying on the name of the program breaks packagers who need to move
glance executables around to other locations on the file system.
Fixes bug 1194987
Change-Id: I7721c5181b17b1f34adc279c055dfff5d17b57e5
---
bin/glance-api.py | 2 +-
bin/glance-registry.py | 3 ++-
glance/common/config.py | 5 +----
3 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/bin/glance-api b/bin/glance-api
index a82261e..5244b84 100755
--- a/bin/glance-api
+++ b/bin/glance-api
@@ -61,7 +61,7 @@ if __name__ == '__main__':
glance.store.verify_default_store()
server = wsgi.Server()
- server.start(config.load_paste_app(), default_port=9292)
+ server.start(config.load_paste_app('glance-api'), default_port=9292)
server.wait()
except exception.WorkerCreationFailure as e:
fail(2, e)
diff --git a/bin/glance-registry b/bin/glance-registry
index 678bcd1..39bc3ee 100755
--- a/bin/glance-registry
+++ b/bin/glance-registry
@@ -51,7 +51,8 @@ if __name__ == '__main__':
log.setup('glance')
server = wsgi.Server()
- server.start(config.load_paste_app(), default_port=9191)
+ server.start(config.load_paste_app('glance-registry'),
+ default_port=9191)
server.wait()
except RuntimeError as e:
sys.exit("ERROR: %s" % e)
diff --git a/glance/common/config.py b/glance/common/config.py
index 45cea5d..cd4feba 100644
--- a/glance/common/config.py
+++ b/glance/common/config.py
@@ -183,7 +183,7 @@ def _get_deployment_config_file():
return os.path.abspath(path)
-def load_paste_app(app_name=None):
+def load_paste_app(app_name):
"""
Builds and returns a WSGI app from a paste config file.
@@ -195,9 +195,6 @@ def load_paste_app(app_name=None):
:raises RuntimeError when config file cannot be located or application
cannot be loaded from config file
"""
- if app_name is None:
- app_name = CONF.prog
-
# append the deployment flavor to the application name,
# in order to identify the appropriate paste pipeline
app_name += _get_deployment_flavor()
--
1.8.1.5

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/glance-2012.2.4-r1.ebuild,v 1.1 2013/06/24 20:40:31 prometheanfire Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/glance-2012.2.4-r2.ebuild,v 1.1 2013/06/30 23:46:58 prometheanfire Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
@ -48,6 +48,7 @@ RDEPEND="${DEPEND}
ldap? ( dev-python/python-ldap )"
PATCHES=(
"${FILESDIR}/glance-gbug-474064-folsom.patch"
)
python_install() {

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/glance-2013.1.2-r1.ebuild,v 1.1 2013/06/24 20:40:31 prometheanfire Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/glance-2013.1.2-r2.ebuild,v 1.1 2013/06/30 23:46:58 prometheanfire Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
@ -46,14 +46,15 @@ RDEPEND="${DEPEND}
<dev-python/python-swiftclient-2[${PYTHON_USEDEP}]
)
sqlite? ( >=dev-python/sqlalchemy-0.7[sqlite]
<=dev-python/sqlalchemy-0.7.9[sqlite] )
<dev-python/sqlalchemy-0.8[sqlite] )
mysql? ( >=dev-python/sqlalchemy-0.7[mysql]
<=dev-python/sqlalchemy-0.7.9[mysql] )
<dev-python/sqlalchemy-0.8[mysql] )
postgres? ( >=dev-python/sqlalchemy-0.7[postgres]
<=dev-python/sqlalchemy-0.7.9[postgres] )
<dev-python/sqlalchemy-0.8[postgres] )
ldap? ( dev-python/python-ldap )"
PATCHES=(
"${FILESDIR}/glance-gbug-474064-grizzly.patch"
)
python_install() {

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/puppet/puppet-2.7.22.ebuild,v 1.3 2013/06/29 10:13:39 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/puppet/puppet-2.7.22.ebuild,v 1.4 2013/06/30 22:17:29 jer Exp $
EAPI="4"
USE_RUBY="ruby18 ruby19"
@ -18,7 +18,7 @@ SRC_URI="http://www.puppetlabs.com/downloads/puppet/${P}.tar.gz"
LICENSE="Apache-2.0 GPL-2"
SLOT="0"
IUSE="augeas diff doc emacs ldap minimal rrdtool selinux shadow sqlite3 vim-syntax xemacs"
KEYWORDS="amd64 ~hppa ppc ~sparc ~x86"
KEYWORDS="amd64 hppa ppc ~sparc ~x86"
ruby_add_rdepend "
>=dev-ruby/facter-1.5.6

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-de/myspell-de-2012.06.17-r1.ebuild,v 1.5 2013/06/30 15:10:33 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-de/myspell-de-2012.06.17-r1.ebuild,v 1.6 2013/06/30 21:11:34 ago Exp $
EAPI=4
@ -44,7 +44,7 @@ SRC_URI="
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""
src_prepare() {

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/gedit-plugins-3.8.3.ebuild,v 1.1 2013/06/18 18:55:26 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/gedit-plugins-3.8.3.ebuild,v 1.2 2013/06/30 21:33:08 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -23,6 +23,7 @@ REQUIRED_USE="
charmap? ( python )
git? ( python )
terminal? ( python )
python? ( ${REQUIRED_PYTHON_USE} )
"
RDEPEND="

@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/files/xenstored.initd,v 1.4 2013/05/15 08:40:29 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/files/xenstored.initd,v 1.5 2013/07/01 05:42:01 idella4 Exp $
depend() {
before xendomains xend sshd ntp-client ntpd nfs nfsmount rsyncd portmap dhcp
@ -14,6 +14,11 @@ start() {
--pidfile /var/run/xenstored.pid \
-- --pid-file=/var/run/xenstored.pid \
$XENSTORED_OPTS
until xenstore-exists /
do
echo -n .
sleep .5
done
sleep 15
einfo "Setting domain0 name record"
/usr/bin/xenstore-write "/local/domain/0/name" "Domain-0"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.2.1-r5.ebuild,v 1.1 2013/06/28 13:46:44 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.2.1-r5.ebuild,v 1.2 2013/07/01 07:44:16 idella4 Exp $
EAPI=5
@ -41,7 +41,6 @@ REQUIRED_USE="hvm? ( qemu )"
CDEPEND="dev-libs/yajl
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/pypam[${PYTHON_USEDEP}]
dev-python/pyxml[${PYTHON_USEDEP}]
sys-libs/zlib
sys-power/iasl
ocaml? ( dev-ml/findlib )

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.2.2-r3.ebuild,v 1.1 2013/06/28 13:46:44 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.2.2-r3.ebuild,v 1.2 2013/07/01 07:44:16 idella4 Exp $
EAPI=5
@ -41,7 +41,6 @@ CDEPEND="dev-libs/lzo:2
dev-libs/yajl
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/pypam[${PYTHON_USEDEP}]
dev-python/pyxml[${PYTHON_USEDEP}]
sys-libs/zlib
sys-power/iasl
dev-ml/findlib

@ -1 +1,2 @@
DIST gentoo-0.19.13.tar.gz 1541738 SHA256 6afafeacd54a18d97e217ad10df1b555274ac856f050e10888109d405ebdc092 SHA512 51bffcc73a1c81697bed975169286afefc46f02b956da17985a5a4082188ffe155f0943d4cf0718c1097823e4f7d41399efda8309a5ecc6e2c02bd80adee4bac WHIRLPOOL be4d1fa32c814ecbfc2dc149931104c9c9d93b3e9491c4de5630ae737cc5f01f6b389e9a7a435b4423e9fc714aaa526782624b2739d8f80304618f05d1de1936
DIST gentoo-0.20.1.tar.gz 1552672 SHA256 3f7a57681a2bade54a0096bdcaad1ff776bca51486fd42cb7518d33e29b3835f SHA512 30a7adf6c8987cb9b158545cc11f8b87691f4b85056d1b2653143055b53232a9a6bc2995b7f0d9c1f2b79350a03d57470c6b0656ab07ed72bcda29a7a86ca507 WHIRLPOOL a531a7b2c2d005be4157c3a7c0756b1dbb09e9a7416752a7156d35ffb03d5bb6a6e282daa5a456d078a6d4b9430945090288c9b4d4d4f06677f89a9df085131e

@ -0,0 +1,62 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/gentoo/gentoo-0.20.1.ebuild,v 1.1 2013/06/30 22:10:20 jer Exp $
EAPI=5
inherit autotools eutils
DESCRIPTION="A modern GTK+ based filemanager for any WM"
HOMEPAGE="http://www.obsession.se/gentoo/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="nls"
RDEPEND="
dev-libs/glib:2
x11-libs/cairo
x11-libs/gdk-pixbuf
x11-libs/gtk+:3
x11-libs/pango
"
DEPEND="
${RDEPEND}
nls? ( sys-devel/gettext )
"
DOCS=(
AUTHORS BUGS CONFIG-CHANGES CREDITS NEWS README TODO docs/{FAQ,menus.txt}
)
src_prepare() {
sed -i \
-e 's^icons/gnome/16x16/mimetypes^gentoo/icons^' \
gentoorc.in || die
sed -i \
-e '/GTK_DISABLE_DEPRECATED/ d' \
-e '/^GENTOO_CFLAGS=/s|".*"|"${CFLAGS}"|g' \
-e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
configure.in || die #357343
eautoreconf
}
src_configure() {
econf \
--sysconfdir=/etc/gentoo \
$(use_enable nls)
}
src_install() {
default
dohtml -r docs/{images,config,*.{html,css}}
newman docs/gentoo.1x gentoo.1
docinto scratch
dodoc docs/scratch/*
make_desktop_entry ${PN} Gentoo \
/usr/share/${PN}/icons/${PN}.png \
"System;FileTools;FileManager"
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-4.0.4.2.ebuild,v 1.3 2013/06/30 15:10:50 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-4.0.4.2.ebuild,v 1.4 2013/06/30 21:12:14 ago Exp $
EAPI=4
@ -14,7 +14,7 @@ BASE_SRC_URI="http://download.documentfoundation.org/${PN/-l10n/}/testing/${MY_P
LICENSE="|| ( LGPL-3 MPL-1.1 )"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux"
IUSE="offlinehelp"
LANGUAGES_HELP="ast bg bn_IN bn bo bs ca_XV ca cs da de dz el en_GB en en_ZA eo

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.0.4.2.ebuild,v 1.5 2013/06/30 15:25:25 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.0.4.2.ebuild,v 1.6 2013/06/30 21:12:02 ago Exp $
EAPI=5
@ -91,7 +91,7 @@ unset lo_xt
LICENSE="|| ( LGPL-3 MPL-1.1 )"
SLOT="0"
[[ ${PV} == *9999* ]] || \
KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux"
COMMON_DEPEND="
${PYTHON_DEPS}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libmspub/libmspub-0.0.6.ebuild,v 1.3 2013/06/30 15:10:56 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libmspub/libmspub-0.0.6.ebuild,v 1.4 2013/06/30 21:12:25 ago Exp $
EAPI=5
@ -17,7 +17,7 @@ SLOT="0"
# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061
[[ ${PV} == 9999 ]] || \
KEYWORDS="amd64 ~arm ~ppc x86"
KEYWORDS="amd64 ~arm ppc x86"
IUSE="doc static-libs"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/qpdf/qpdf-4.1.0.ebuild,v 1.3 2013/06/30 17:13:49 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/qpdf/qpdf-4.1.0.ebuild,v 1.4 2013/06/30 21:13:55 ago Exp $
EAPI="5"
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz"
LICENSE="Artistic-2"
SLOT="0/10" # subslot = libqpdf soname version
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
IUSE="doc examples static-libs test"
RDEPEND="dev-libs/libpcre

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashable/hashable-1.1.2.5.ebuild,v 1.6 2013/01/06 09:19:51 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashable/hashable-1.1.2.5.ebuild,v 1.7 2013/06/30 21:09:18 ago Exp $
EAPI=5
@ -15,7 +15,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
KEYWORDS="~alpha ~amd64 ~ia64 ppc ~ppc64 ~sparc ~x86"
IUSE=""
RDEPEND=">=dev-haskell/text-0.11.0.5:=[profile?]

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/test-framework-quickcheck2/test-framework-quickcheck2-0.3.0.1-r1.ebuild,v 1.1 2013/04/02 13:00:19 gienah Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/test-framework-quickcheck2/test-framework-quickcheck2-0.3.0.1-r1.ebuild,v 1.2 2013/06/30 21:09:39 ago Exp $
EAPI=5
@ -15,7 +15,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
KEYWORDS="~alpha ~amd64 ~ia64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=dev-haskell/extensible-exceptions-0.1.1:=[profile?]

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/test-framework/test-framework-0.8.ebuild,v 1.1 2013/04/02 12:57:44 gienah Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/test-framework/test-framework-0.8.ebuild,v 1.2 2013/06/30 21:09:29 ago Exp $
EAPI=5
@ -15,7 +15,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
KEYWORDS="~alpha ~amd64 ~ia64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=dev-haskell/ansi-terminal-0.4.0:=[profile?]

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.7_p374.ebuild,v 1.4 2013/06/30 13:27:30 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.7_p374.ebuild,v 1.6 2013/07/01 02:36:54 jer Exp $
EAPI=2
@ -30,7 +30,7 @@ SRC_URI="mirror://ruby/${SLOT}/${MY_P}.tar.bz2
http://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2"
LICENSE="|| ( Ruby GPL-2 )"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="+berkdb debug doc examples +gdbm ipv6 rubytests socks5 ssl threads tk xemacs ncurses +readline libedit"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.9.3_p448.ebuild,v 1.4 2013/06/30 13:27:30 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.9.3_p448.ebuild,v 1.6 2013/07/01 02:36:54 jer Exp $
EAPI=4
@ -34,7 +34,7 @@ SRC_URI="mirror://ruby/1.9/${MY_P}.tar.bz2
http://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2"
LICENSE="|| ( Ruby-BSD BSD-2 )"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="berkdb debug doc examples gdbm ipv6 +rdoc rubytests socks5 ssl tk xemacs ncurses +readline +yaml" #libedit
# libedit support is removed everywhere because of this upstream bug:

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liborcus/liborcus-0.3.0.ebuild,v 1.9 2013/06/30 15:11:00 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liborcus/liborcus-0.3.0.ebuild,v 1.10 2013/06/30 21:12:35 ago Exp $
EAPI=5
@ -17,7 +17,7 @@ HOMEPAGE="http://gitorious.org/orcus/pages/Home"
LICENSE="MIT"
SLOT="0"
[[ ${PV} == 9999 ]] || \
KEYWORDS="amd64 ~arm ~ppc x86"
KEYWORDS="amd64 ~arm ppc x86"
IUSE="static-libs"
RDEPEND="

@ -1,2 +1 @@
DIST luvit-0.6.1.tar.gz 7022830 SHA256 da0951cc92fec2809d5aa6a54512856917985177002fb7ef5d99392f1ed8a46c SHA512 5a3ff741149afae2f8e358b7a4c71b11c1543bf63845a94906d4f4a42bd88c4ad98a9e8c54b579b795c344e6053a8406f6acc29ed9a755c5b452a1704f9a6213 WHIRLPOOL 7206d6f1785e9e17142b91c2f02d29e91a0633b52018e5a89f6857362b9a0c11f69869a51a5fb2a2de725a4d2111ae5d88544890c5745e1d55e31f47c1c8a8a6
DIST luvit-0.6_p20121221.tar.xz 21018492 SHA256 a7189b44ccde2a97b5a4b40381efaaf8ffd50348c00d463645ef60db92f36ab7 SHA512 83622cedd20a8e20e42bfa1d346d35355bc1b72ac92258b5146fbafb92cee3a11399059b3cfc6fde86e7613dd7c1ece287c8a774ccfe59f691ea6f1d87bef5da WHIRLPOOL ff84a6e2a0dc900b3439c5a53807cc2988e6172cfc9f131a3f9334b1fc18a02a025fdea6cbcc6e8c407fb5aa9f0edd75adc2e968c1264865d87b37a40862afde

@ -0,0 +1,54 @@
commit b34b7b0474878d1951637b762c68694c16c1c574
Author: hasufell <hasufell@gentoo.org>
Date: Sun Jun 30 22:37:10 2013 +0200
unbundle http-parser
diff --git a/Makefile b/Makefile
index a0e9277..99535ca 100644
--- a/Makefile
+++ b/Makefile
@@ -38,6 +38,7 @@ USE_SYSTEM_SSL?=0
USE_SYSTEM_LUAJIT?=0
USE_SYSTEM_ZLIB?=0
USE_SYSTEM_YAJL?=0
+USE_SYSTEM_HTTPPARSER?=0
DEBUG ?= 1
ifeq (${DEBUG},1)
@@ -92,6 +93,10 @@ endif
LIBS += ${UVDIR}/uv.a
+ifeq (${USE_SYSTEM_HTTPPARSER},1)
+LIBS += -lhttp_parser
+endif
+
ifeq (${USE_SYSTEM_LUAJIT},1)
CPPFLAGS+=$(shell pkg-config --cflags luajit)
LIBS+=$(shell pkg-config --libs luajit)
@@ -169,8 +174,11 @@ LUVLIBS=${BUILDDIR}/utils.o \
${BUILDDIR}/luv_zlib.o \
${BUILDDIR}/lhttp_parser.o
-DEPS= ${UVDIR}/uv.a \
- ${HTTPDIR}/http_parser.o
+DEPS= ${UVDIR}/uv.a
+
+ifeq (${USE_SYSTEM_HTTPPARSER},0)
+DEPS += ${HTTPDIR}/http_parser.o
+endif
ifeq (${USE_SYSTEM_LUAJIT},0)
DEPS+=${LUADIR}/src/libluajit.a
@@ -278,8 +286,10 @@ install: all
install ${BUILDDIR}/luvit ${BINDIR}/luvit
mkdir -p ${LIBDIR}
cp lib/luvit/*.lua ${LIBDIR}
+ifeq (${USE_SYSTEM_HTTPPARSER},0)
mkdir -p ${INCDIR}/http_parser
cp ${HTTPDIR}/http_parser.h ${INCDIR}/http_parser/
+endif
mkdir -p ${INCDIR}/uv
cp -r ${UVDIR}/include/* ${INCDIR}/uv/
cp src/*.h ${INCDIR}/

@ -1,24 +1,24 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lua/luvit/luvit-0.6_p20121221.ebuild,v 1.1 2013/01/01 16:36:54 hasufell Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lua/luvit/luvit-0.6.1-r1.ebuild,v 1.1 2013/06/30 20:44:13 hasufell Exp $
EAPI=5
inherit toolchain-funcs multilib
inherit eutils toolchain-funcs multilib
# TODO: FHS https://github.com/luvit/luvit/issues/379
DESCRIPTION="Takes node.js' architecture and dependencies and fits it in the Lua language"
HOMEPAGE="http://luvit.io/"
SRC_URI="http://dev.gentoo.org/~hasufell/distfiles/${P}.tar.xz"
SRC_URI="http://luvit.io/dist/latest/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="examples +system-libs"
IUSE="bundled-libs examples"
# luvit Apache-2.0
# luajit MIT
# yajl BSD
LICENSE="Apache-2.0 MIT !system-libs? ( BSD )"
LICENSE="Apache-2.0 bundled-libs? ( BSD MIT )"
# fails in portage environment
# succeeds if run manually
@ -27,24 +27,33 @@ RESTRICT="test"
RDEPEND="
dev-libs/openssl:0
sys-libs/zlib
system-libs? (
!bundled-libs? (
dev-lang/luajit:2[lua52compat]
>=dev-libs/yajl-2.0.2
net-libs/http-parser
)"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
if use system-libs ; then
MY_YAJL_VERSION=$(pkg-config --modversion yajl)
rm -r deps/{openssl,zlib} || die
epatch "${FILESDIR}"/${P}-unbundle-http-parser.patch
if use bundled-libs ; then
sed -i \
-e "s/-Werror//" \
-e "s/-O3//" \
deps/http-parser/Makefile || die "fixing flags failed!"
else
rm -r deps/{luajit,yajl,http-parser} || die
# TODO: no version detection for http-parser yet
MY_YAJL_VERSION=$($(tc-getPKG_CONFIG) --modversion yajl)
MY_LUAJIT_VERSION=$($(tc-getPKG_CONFIG) --modversion luajit)
sed -i \
-e "s:^YAJL_VERSION=.*:YAJL_VERSION=${MY_YAJL_VERSION}:" \
-e "s:^LUAJIT_VERSION=.*:LUAJIT_VERSION=${MY_LUAJIT_VERSION}:" \
Makefile || die "setting yajl version failed"
fi
sed -i \
-e "s/-Werror//" \
-e "s/-O3//" \
deps/http-parser/Makefile || die "fixing flags failed!"
}
src_configure() {
@ -60,11 +69,12 @@ src_compile() {
WERROR=0
USE_SYSTEM_SSL=1
# bundled luajit is compiled with special flags
USE_SYSTEM_LUAJIT=0
USE_SYSTEM_LUAJIT=$(usex bundled-libs "0" "1")
USE_SYSTEM_YAJL=$(usex bundled-libs "0" "1")
USE_SYSTEM_HTTPPARSER=$(usex bundled-libs "0" "1")
USE_SYSTEM_ZLIB=1
USE_SYSTEM_YAJL=$(usex system-libs "1" "0")
PREFIX=/usr
LIBDIR="${D}"/usr/$(get_libdir)/${PN}
LIBDIR="${D%/}"/usr/$(get_libdir)/${PN}
DESTDIR="${D}"
)

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lua/luvit/luvit-9999.ebuild,v 1.2 2013/03/05 21:09:17 hasufell Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lua/luvit/luvit-9999.ebuild,v 1.3 2013/06/30 20:56:18 hasufell Exp $
EAPI=5
@ -14,11 +14,11 @@ EGIT_REPO_URI="git://github.com/luvit/luvit.git"
KEYWORDS=""
SLOT="0"
IUSE="examples +system-libs"
IUSE="bundled-libs examples"
# luvit Apache-2.0
# luajit MIT
# yajl BSD
LICENSE="Apache-2.0 MIT !system-libs? ( BSD )"
LICENSE="Apache-2.0 !bundled-libs? ( BSD MIT )"
# fails in portage environment
# succeeds if run manually
@ -27,7 +27,8 @@ RESTRICT="test"
RDEPEND="
dev-libs/openssl:0
sys-libs/zlib
system-libs? (
!bundled-libs? (
dev-lang/luajit:2[lua52compat]
>=dev-libs/yajl-2.0.4
)"
DEPEND="${RDEPEND}
@ -36,11 +37,17 @@ DEPEND="${RDEPEND}
EGIT_HAS_SUBMODULES=1
src_prepare() {
if use system-libs ; then
MY_YAJL_VERSION=$(pkg-config --modversion yajl)
else
rm -r deps/{openssl,zlib} || die
if use bundled-libs ; then
MY_YAJL_VERSION=$(git --git-dir deps/yajl/.git describe --tags)
MY_LUAJIT_VERSION=$(git --git-dir deps/luajit/.git describe --tags)
else
rm -r deps/{luajit,yajl} || die
MY_YAJL_VERSION=$($(tc-getPKG_CONFIG) --modversion yajl)
MY_LUAJIT_VERSION=$($(tc-getPKG_CONFIG) --modversion luajit)
fi
MY_HTTP_VERSION=$(git --git-dir deps/http-parser/.git describe --tags)
MY_UV_VERSION=$(git --git-dir deps/uv/.git describe --all --long | cut -f 3 -d -)
@ -69,10 +76,10 @@ src_compile() {
DEBUG=0
WERROR=0
USE_SYSTEM_SSL=1
# bundled luajit is compiled with special flags
USE_SYSTEM_LUAJIT=0
USE_SYSTEM_ZLIB=1
USE_SYSTEM_YAJL=$(usex system-libs "1" "0")
# bundled luajit is compiled with special flags
USE_SYSTEM_LUAJIT=$(usex bundled-libs "0" "1")
USE_SYSTEM_YAJL=$(usex bundled-libs "0" "1")
PREFIX=/usr
LIBDIR="${D}"/usr/$(get_libdir)/${PN}
DESTDIR="${D}"

@ -6,6 +6,7 @@
<name>Julian Ospald</name>
</maintainer>
<use>
<flag name='bundled-libs'>Use bundled versions of some libraries.</flag>
<flag name='system-libs'>Use system version of <pkg>dev-libs/yajl</pkg>.</flag>
</use>
</pkgmetadata>

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-Load/Class-Load-0.200.0.ebuild,v 1.6 2012/12/31 16:54:24 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-Load/Class-Load-0.200.0.ebuild,v 1.7 2013/06/30 22:40:46 zlogene Exp $
EAPI=4
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="A working (require q{Class::Name}) and more"
SLOT="0"
KEYWORDS="alpha ~amd64 arm ~hppa ia64 ppc ~ppc64 s390 sh sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="test"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Proc-Simple/Proc-Simple-1.310.0.ebuild,v 1.2 2013/06/29 20:09:47 zlogene Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Proc-Simple/Proc-Simple-1.310.0.ebuild,v 1.3 2013/06/30 21:10:22 ago Exp $
EAPI=4
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Perl Proc-Simple - Launch and control background processes"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
KEYWORDS="amd64 ppc x86"
IUSE=""
SRC_TEST="do"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.4 2013/06/25 16:59:11 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.5 2013/06/30 21:54:24 tampakrap Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
@ -30,6 +30,7 @@ python_compile_all() {
}
python_test() {
cd appconf/tests || die
set -- django-admin.py test appconf --settings=appconf.test_settings
echo "$@"
"$@" || die "Testing failed with ${EPYTHON}"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-compressor/django-compressor-1.3.ebuild,v 1.2 2013/05/31 03:04:44 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-compressor/django-compressor-1.3.ebuild,v 1.3 2013/06/30 22:04:47 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
@ -40,9 +40,11 @@ python_compile_all() {
}
python_test() {
pushd "${BUILD_DIR}/lib" > /dev/null || die
set -- django-admin.py test compressor --settings=compressor.test_settings
echo "$@"
"$@" || die "Tests failed with ${EPYTHON}"
popd > /dev/null || die
}
python_install_all() {

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/feedparser/feedparser-5.1.3-r1.ebuild,v 1.2 2013/06/23 11:02:57 pinkbyte Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/feedparser/feedparser-5.1.3-r1.ebuild,v 1.7 2013/06/30 20:18:12 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_{5,6,7},3_{1,2,3}} pypy{1_9,2_0} )
@ -14,7 +14,7 @@ SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
# sgmllib is licensed under PSF-2.
LICENSE="BSD-2 PSF-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"

@ -2,3 +2,4 @@ DIST qt-creator-2.5.2-src.tar.gz 22523588 SHA256 04521c642953fcb7a2d4011a60fdf29
DIST qt-creator-2.6.2-src.tar.gz 21396937 SHA256 86165159841f2a3c41e6b80af3ed6fb6655a5194de7fe51cbf08b1539a352524 SHA512 62a8def36bd6c10c0fd44977428b518b7111229d1ca847e263d61a39bd6b51eb40c0699dbccdc96a8b8980c453d0cf9c57cd8c59054df0f24c5b5af62ea7091d WHIRLPOOL 81ba71194ca2ec13235a91214d3e22fa1440cfa5d9f9296106351f5bcbe704c324623fac0774826d0ca046299790bb9a74135baf5dc62ef55fb402b571ccb267
DIST qt-creator-2.7.0-src.tar.gz 22503776 SHA256 c8d05b65661639809df7815837e8c7d42980028dff1e21dc518049d837b3d6fa SHA512 bb4b941c8acb3572450c3eb8a70807480cbe1f23b1eb7150fcbac5b766c5a109567822a3f2644164f894f736a2d8fcc972d013a9f475ae72f97609afc98b89fc WHIRLPOOL ff660ac5283ae788843e0b812e68ca950b62bfd1507c1952d9bee0a3397ef300625dc3bf4207a773d81c1e2483533213365d2d0715b0a31f20ec3ca11fb56285
DIST qt-creator-2.7.1-src.tar.gz 22572001 SHA256 5b428b49579ab62ab0575010848b4d50b05d4ff1abebaa73883bcdd9863f7613 SHA512 d76fe27e8d03bebe9aa732114b93fbd78b1561c6465e86160725b3a4cb45aabd91f2d5aa91f4d0cb24fa6e5583927cd68ccd70ffe1f672a489c41d6657ea629d WHIRLPOOL fd3cb6324a6d933b791beffaae9a226fb6356a3282ccd1ec6188ac4743e9f7c6c90d46dc5ab33a9cce4f89f83f8654ad8cbd6608e3e69e60e1a766cf534efb3c
DIST qt-creator-2.8.0-rc-src.tar.gz 24187937 SHA256 99995e3a4e154c6c8fc89d9c5e95b5fd214c9242c61c1920c819b0f1878f1647 SHA512 2a976ebe2d78886d64435ab2ccb03c32949dffefe2de370b533e47024edb5536f23cb31e1a5365c86939d918050bde0173c1ca1ae73e68762d02f013d2598ad9 WHIRLPOOL 55f3f2602da39ed85eba6268b13372041fccf3d351c2b6fba3c0488f4ebf7e677e2f01449033ee6b24d616019e2768f7bb677374cc9fae4dc3ab1e1b9b06075b

@ -0,0 +1,118 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qt-creator/qt-creator-2.8.0_rc.ebuild,v 1.1 2013/06/30 23:47:43 pesa Exp $
EAPI=5
PLOCALES="cs de es fr it ja pl ru sl uk zh_CN zh_TW"
inherit eutils l10n multilib qt4-r2
DESCRIPTION="Lightweight IDE for C++/QML development centering around Qt"
HOMEPAGE="http://qt-project.org/wiki/Category:Tools::QtCreator"
LICENSE="LGPL-2.1"
if [[ ${PV} == *9999* ]]; then
inherit git-2
EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git
https://git.gitorious.org/${PN}/${PN}.git"
else
MY_PV=${PV/_/-}
MY_P=${PN}-${MY_PV}-src
[[ ${MY_PV} == ${PV} ]] && MY_REL=official || MY_REL=development
SRC_URI="http://download.qt-project.org/${MY_REL}_releases/${PN/-}/${PV%.*}/${MY_PV}/${MY_P}.tar.gz"
S=${WORKDIR}/${MY_P}
fi
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
QTC_PLUGINS=(android autotools:autotoolsprojectmanager bazaar
clearcase cmake:cmakeprojectmanager cvs fakevim git
madde mercurial perforce qnx subversion valgrind)
IUSE="debug doc examples test ${QTC_PLUGINS[@]%:*}"
# minimum Qt version required
QT_PV="4.8.0:4"
CDEPEND="
=dev-libs/botan-1.10*
>=dev-qt/qtcore-${QT_PV}[ssl]
>=dev-qt/qtdeclarative-${QT_PV}
>=dev-qt/qtgui-${QT_PV}
>=dev-qt/qthelp-${QT_PV}[doc?]
>=dev-qt/qtscript-${QT_PV}
>=dev-qt/qtsql-${QT_PV}
>=dev-qt/qtsvg-${QT_PV}
"
DEPEND="${CDEPEND}
virtual/pkgconfig
test? ( >=dev-qt/qttest-${QT_PV} )
"
RDEPEND="${CDEPEND}
>=sys-devel/gdb-7.2[python]
examples? ( >=dev-qt/qtdemo-${QT_PV} )
"
PDEPEND="
autotools? ( sys-devel/autoconf )
bazaar? ( dev-vcs/bzr )
cmake? ( dev-util/cmake )
cvs? ( dev-vcs/cvs )
git? ( dev-vcs/git )
mercurial? ( dev-vcs/mercurial )
subversion? ( dev-vcs/subversion )
valgrind? ( dev-util/valgrind )
"
src_prepare() {
qt4-r2_src_prepare
# disable unwanted plugins
for plugin in "${QTC_PLUGINS[@]#[+-]}"; do
if ! use ${plugin%:*}; then
einfo "Disabling ${plugin%:*} plugin"
sed -i -re "/^\s+${plugin#*:}\>/d" src/plugins/plugins.pro \
|| die "failed to disable ${plugin%:*} plugin"
fi
done
# fix translations
sed -i -e "/^LANGUAGES =/ s:=.*:= $(l10n_get_locales):" \
share/qtcreator/translations/translations.pro || die
}
src_configure() {
EQMAKE4_EXCLUDE="share/qtcreator/templates/*
tests/*"
eqmake4 IDE_LIBRARY_BASENAME="$(get_libdir)" \
IDE_PACKAGE_MODE=1 \
TEST=$(use test && echo 1 || echo 0) \
USE_SYSTEM_BOTAN=1
}
src_test() {
echo ">>> Test phase [QTest]: ${CATEGORY}/${PF}"
cd tests/auto || die
EQMAKE4_EXCLUDE="valgrind/*"
eqmake4 IDE_LIBRARY_BASENAME="$(get_libdir)"
emake check
}
src_install() {
emake INSTALL_ROOT="${ED}usr" install
dodoc dist/{changes-*,known-issues}
# install documentation
if use doc; then
emake docs
insinto /usr/share/doc/${PF}
doins share/doc/qtcreator/qtcreator{,-dev}.qch
docompress -x /usr/share/doc/${PF}/qtcreator{,-dev}.qch
fi
# install desktop file
make_desktop_entry qtcreator 'Qt Creator' QtProject-qtcreator 'Qt;Development;IDE'
}

@ -8,3 +8,4 @@ DIST debhelper_9.20130604.tar.gz 473080 SHA256 27c3b7f8dcafea0d4e0f6311970ad26b7
DIST debhelper_9.20130605.tar.gz 473168 SHA256 5e9b73e460d088c11b99cf6002eb6f264027255d18a83fbdadda6365e934efd1 SHA512 3c0621cef85b23a1489ef860c1c2971734115344ec732f67a012510d762f136c4aee1357dfe32caf389388ef91dc09bc9d2e9ec04bb93de307aa2a8094e90185 WHIRLPOOL abc3fff33b3d4b3ed9ad99d3a6abb6fce4e4951577ca1966150d62308dd449d08c0aa1c42c599894af158d7489dd2b284dea61b76b87fbc6d2e98032d9281c8e
DIST debhelper_9.20130624.tar.gz 474475 SHA256 93c0e1e399bfb276b61bd8cc0461c2a4552c0f9ebe729f4826badf6a724acacf SHA512 26ac7ea3dd89c8eb4ccc72d4c58a76c80a1b68c1f7bd5231f012bd510ecb860bf151e091f4e963faff7539811555aaebcbb39be2292af3ea8480a21f4c691721 WHIRLPOOL fcb67fc5ae1677c2ece5ed28e8b4d50bcf03259961f2956e544c54aedc7a7bfc829c7fd06b9538ca367ed4ac91039ec83fb53c8a0004f0e1e551561dbc24f038
DIST debhelper_9.20130626.tar.gz 474419 SHA256 c0e9bef6a8e69e8eade382195876b7fd4fff5ab6221769749e2e357908fd9b7d SHA512 a91bf2925a365f7e2990fdfced2949394ec3cda08a9443f5d2a235d9971b1d44109d3edda9b1fcd9c17bf47c08541d782e8b866de3be2118997945623a428538 WHIRLPOOL 834edb345fa56d4cea897b89652c36bb242ebd1d4d68ab28e20b2e979735ec803f9b23e558926ccf80e2f28e53a4e835327273709283ddb8c204e07d0af0c26b
DIST debhelper_9.20130630.tar.gz 474476 SHA256 fca28ff0dac3fdb21eb6ed154acc3cc39588211c395be3c3e7f684a7b8d11d46 SHA512 e6bff3582b6ea6b84fd71782ff9fd8584f1ef545ee9c42118aa61e2025f64bf7fb136241b809055a2aaf889e621764b1512c62e781abcbf8d8c0f0508f818712 WHIRLPOOL df2328dd62d44197229bdb9803842843d4e5bb7c9b1a58cc8c4b2db981d9cb21d72a3354881b6e4d97ade0d1cd8802073b05a917fa62772bfdbc75dd6a3ffbcd

@ -0,0 +1,70 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/debhelper-9.20130630.ebuild,v 1.1 2013/06/30 22:00:39 jer Exp $
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="Collection of programs that can be used to automate common tasks in debian/rules"
HOMEPAGE="http://packages.qa.debian.org/d/debhelper.html http://joeyh.name/code/debhelper/"
SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux"
IUSE="test"
DH_LINGUAS=( de es fr )
IUSE+=" ${DH_LINGUAS[@]/#/linguas_}"
NLS_DEPEND=$(
printf "linguas_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LINGUAS[@]}
)
RDEPEND="
>=dev-lang/perl-5.10
app-arch/dpkg
dev-perl/TimeDate
virtual/perl-Getopt-Long
"
DEPEND="${RDEPEND}
${NLS_DEPEND}
test? ( dev-perl/Test-Pod )
"
S=${WORKDIR}/${PN}
src_compile() {
tc-export CC
local LANGS="" USE_NLS=no lingua
for lingua in ${DH_LINGUAS[@]}; do
if use linguas_${lingua}; then
LANGS+=" ${lingua}"
USE_NLS=yes
fi
done
emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
dodoc doc/* debian/changelog
docinto examples
dodoc examples/*
local lingua
for manfile in *.1 *.7 ; do
for lingua in ${DH_LINGUAS[@]}; do
case ${manfile} in
*.${lingua}.?)
use linguas_${lingua} \
&& cp ${manfile} "${T}"/${manfile/.${lingua}/} \
&& doman -i18n=${lingua} "${T}"/${manfile/.${lingua}/}
;;
*)
doman ${manfile}
;;
esac
done
done
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-1.4.4.ebuild,v 1.4 2013/06/30 12:43:10 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-1.4.4.ebuild,v 1.5 2013/06/30 21:09:53 ago Exp $
EAPI=5
inherit eutils toolchain-funcs
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/linuxconsole/files/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc x86"
KEYWORDS="amd64 ~arm ppc x86"
IUSE="sdl"
DEPEND="sdl? ( media-libs/libsdl:0[video] )

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-calculator/gnome-calculator-3.8.2.ebuild,v 1.2 2013/05/14 20:53:20 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-calculator/gnome-calculator-3.8.2.ebuild,v 1.3 2013/06/30 21:34:06 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -31,5 +31,7 @@ DEPEND="${COMMON_DEPEND}
"
src_configure() {
gnome2_src_configure ITSTOOL=$(type -P true)
gnome2_src_configure \
ITSTOOL=$(type -P true) \
VALAC=$(type -P true)
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-clocks/gnome-clocks-3.8.2.ebuild,v 1.1 2013/05/14 20:47:58 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-clocks/gnome-clocks-3.8.2.ebuild,v 1.2 2013/06/30 21:35:08 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -20,12 +20,16 @@ RDEPEND="
>=dev-libs/glib-2.30:2
>=x11-libs/gtk+-3.7.12:3
>=media-libs/libcanberra-0.30
>=dev-libs/libgweather-3.7.90
>=gnome-base/gnome-desktop-3.7.90
>=x11-libs/libnotify-0.7
>=dev-libs/libgweather-3.7.90:=
>=gnome-base/gnome-desktop-3.7.90:=
>=x11-libs/libnotify-0.7:=
"
DEPEND="${RDEPEND}
$(vala_depend)"
$(vala_depend)
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
virtual/pkgconfig
"
src_prepare() {
gnome2_src_prepare

@ -1,10 +1,11 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-contacts/gnome-contacts-3.8.2.ebuild,v 1.2 2013/05/29 21:26:10 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-contacts/gnome-contacts-3.8.2.ebuild,v 1.3 2013/06/30 21:30:09 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
VALA_MIN_API_VERSION="0.18"
VALA_USE_DEPEND="vapigen"
inherit gnome2 vala
@ -18,6 +19,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
VALA_DEPEND="
$(vala_depend)
>=dev-libs/gobject-introspection-0.9.6
dev-libs/folks[vala]
gnome-base/gnome-desktop[introspection]
gnome-extra/evolution-data-server[vala]
@ -36,7 +38,7 @@ RDEPEND="
x11-libs/cairo:=
x11-libs/gdk-pixbuf:2
x11-libs/libnotify:=
>=x11-libs/gtk+-3.4:3
>=x11-libs/gtk+-3.7.10:3
x11-libs/pango
v4l? ( >=media-video/cheese-3.5.91:= )
"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/office-runner/office-runner-1.0.1.ebuild,v 1.1 2013/03/28 17:28:55 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/office-runner/office-runner-1.0.1.ebuild,v 1.2 2013/06/30 20:52:50 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -15,13 +15,20 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/glib:2
COMMON_DEPEND="
dev-libs/glib:2
>=gnome-base/gnome-settings-daemon-3.0
x11-libs/gtk+:3"
DEPEND="${RDEPEND}
x11-libs/gtk+:3
"
# requires systemd's org.freedesktop.login1 dbus service
RDEPEND="${COMMON_DEPEND}
>=sys-apps/systemd-190
"
DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.40.0
virtual/pkgconfig
sys-devel/gettext"
sys-devel/gettext
"
pkg_postinst() {
gnome2_pkg_postinst

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/sushi/sushi-3.8.1.ebuild,v 1.1 2013/04/19 17:54:36 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/sushi/sushi-3.8.1.ebuild,v 1.2 2013/06/30 20:32:50 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -50,7 +50,5 @@ RDEPEND="${COMMON_DEPEND}
"
src_configure() {
gnome2_src_configure \
--disable-static \
UNOCONV=$(usex office $(type -P unoconv) $(type -P false))
gnome2_src_configure --disable-static
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebase-pam/kdebase-pam-9.ebuild,v 1.3 2013/06/30 19:51:14 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebase-pam/kdebase-pam-9.ebuild,v 1.4 2013/06/30 21:10:37 ago Exp $
EAPI=5
@ -11,7 +11,7 @@ HOMEPAGE="http://www.kde.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd"
KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd"
IUSE=""
DEPEND="virtual/pam"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/colorhug-client/colorhug-client-0.2.0.ebuild,v 1.1 2013/06/02 12:30:32 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/colorhug-client/colorhug-client-0.2.0.ebuild,v 1.2 2013/06/30 20:20:10 eva Exp $
EAPI=5
GCONF_DEBUG="no"
@ -28,5 +28,16 @@ RDEPEND="
>=x11-libs/colord-gtk-0.1.24
"
DEPEND="${RDEPEND}
app-text/docbook-sgml-dtd:4.1
app-text/docbook-sgml-utils
app-text/yelp-tools
>=dev-util/intltool-0.35
>=sys-devel/gettext-0.17
virtual/pkgconfig
"
# docbook stuff needed for man pages
src_configure() {
# introspection checked but not needed by anything
gnome2_src_configure --disable-introspection
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog-plugins/eog-plugins-3.8.1.ebuild,v 1.1 2013/05/14 18:28:07 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog-plugins/eog-plugins-3.8.1.ebuild,v 1.2 2013/06/30 21:41:26 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -16,7 +16,9 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+exif +flickr map +picasa +python"
REQUIRED_USE="map? ( exif )"
REQUIRED_USE="
map? ( exif )
python? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
>=dev-libs/glib-2.32:2

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gnome-font-viewer/gnome-font-viewer-3.8.0.ebuild,v 1.1 2013/03/28 17:37:31 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gnome-font-viewer/gnome-font-viewer-3.8.0.ebuild,v 1.2 2013/06/30 20:47:08 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -21,7 +21,7 @@ COMMON_DEPEND="
media-libs/fontconfig:1.0
media-libs/freetype:2
x11-libs/cairo
>=x11-libs/gtk+-3.0.3:3
>=x11-libs/gtk+-3.7.10:3
x11-libs/pango
"
RDEPEND="${COMMON_DEPEND}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/replicatorg/replicatorg-37-r1.ebuild,v 1.1 2012/08/03 22:14:14 mattm Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/replicatorg/replicatorg-37-r2.ebuild,v 1.1 2013/06/30 20:16:27 tomwij Exp $
EAPI="3"
@ -18,7 +18,7 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
COMMON_DEPEND="dev-java/sun-jre-bin"
COMMON_DEPEND="dev-java/oracle-jre-bin"
RDEPEND="${COMMON_DEPEND}"
DEPEND="${COMMON_DEPEND}"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/replicatorg/replicatorg-40.ebuild,v 1.1 2013/01/02 04:47:51 mattm Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/replicatorg/replicatorg-40-r1.ebuild,v 1.1 2013/06/30 20:16:27 tomwij Exp $
EAPI="3"
@ -18,7 +18,7 @@ KEYWORDS=""
IUSE=""
COMMON_DEPEND="dev-java/sun-jre-bin"
COMMON_DEPEND="dev-java/oracle-jre-bin"
RDEPEND="${COMMON_DEPEND}"
DEPEND="${COMMON_DEPEND}"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/totem/totem-3.8.2.ebuild,v 1.2 2013/06/02 20:44:56 abcd Exp $
# $Header: /var/cvsroot/gentoo-x86/media-video/totem/totem-3.8.2.ebuild,v 1.3 2013/06/30 21:36:24 eva Exp $
EAPI="5"
GCONF_DEBUG="yes"
@ -34,7 +34,7 @@ REQUIRED_USE="
RDEPEND="
>=dev-libs/glib-2.33:2
>=x11-libs/gdk-pixbuf-2.23.0:2
>=x11-libs/gtk+-3.5.2:3[introspection?]
>=x11-libs/gtk+-3.7.10:3[introspection?]
>=dev-libs/totem-pl-parser-2.32.4[introspection?]
>=dev-libs/libpeas-1.1.0[gtk]
>=x11-themes/gnome-icon-theme-2.16
@ -107,26 +107,6 @@ src_prepare() {
src_configure() {
use nsplugin && DOCS="${DOCS} browser-plugin/README.browser-plugin"
#--with-smclient=auto needed to correctly link to libICE and libSM
G2CONF="${G2CONF}
--disable-run-in-source-tree
--disable-static
--with-smclient=auto
--enable-easy-codec-installation
--enable-vala
$(use_enable flash vegas-plugin)
$(use_enable introspection)
$(use_enable nautilus)
$(use_enable nsplugin browser-plugins)
$(use_enable python)
VALAC=$(type -P true)
BROWSER_PLUGIN_DIR=/usr/$(get_libdir)/nsbrowser/plugins"
# XXX: always set to true otherwise tests fails due to pylint not
# respecting EPYTHON (wait for python-r1)
# pylint is checked unconditionally, but is only used for make check
G2CONF="${G2CONF} PYLINT=$(type -P true)"
# Disabled: sample-python, sample-vala
local plugins="apple-trailers,autoload-subtitles,brasero-disc-recorder"
plugins+=",chapters,im-status,gromit,media-player-keys,ontop"
@ -138,7 +118,23 @@ src_configure() {
use python && plugins+=",dbusservice,pythonconsole,opensubtitles"
use zeitgeist && plugins+=",zeitgeist-dp"
G2CONF="${G2CONF} --with-plugins=${plugins}"
gnome2_src_configure
#--with-smclient=auto needed to correctly link to libICE and libSM
# XXX: always set to true otherwise tests fails due to pylint not
# respecting EPYTHON (wait for python-r1)
# pylint is checked unconditionally, but is only used for make check
gnome2_src_configure \
PYLINT=$(type -P true)
--disable-run-in-source-tree \
--disable-static \
--with-smclient=auto \
--enable-easy-codec-installation \
--enable-vala \
$(use_enable flash vegas-plugin) \
$(use_enable introspection) \
$(use_enable nautilus) \
$(use_enable nsplugin browser-plugins) \
$(use_enable python) \
VALAC=$(type -P true) \
BROWSER_PLUGIN_DIR=/usr/$(get_libdir)/nsbrowser/plugins \
--with-plugins=${plugins}
}

@ -1 +1 @@
Sun, 30 Jun 2013 20:07:02 +0000
Mon, 01 Jul 2013 08:07:05 +0000

@ -1 +1 @@
Sun, 30 Jun 2013 20:07:02 +0000
Mon, 01 Jul 2013 08:07:05 +0000

@ -11,4 +11,4 @@ REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 )
SLOT=0
SRC_URI=http://launchpad.net/glance/folsom/2012.2.4/+download/glance-2012.2.4.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=afbd47efc0f7d6d3ed114e2dce46eed9
_md5_=431c215fac0d353ff08c8ba6b991c6ec

@ -6,9 +6,9 @@ HOMEPAGE=https://launchpad.net/glance
IUSE=ldap mysql postgres +sqlite +swift python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=Apache-2.0
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/jsonschema-1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7 >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7[sqlite] <=dev-python/sqlalchemy-0.7.9[sqlite] ) mysql? ( >=dev-python/sqlalchemy-0.7[mysql] <=dev-python/sqlalchemy-0.7.9[mysql] ) postgres? ( >=dev-python/sqlalchemy-0.7[postgres] <=dev-python/sqlalchemy-0.7.9[postgres] ) ldap? ( dev-python/python-ldap ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/jsonschema-1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7 >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7[sqlite] <dev-python/sqlalchemy-0.8[sqlite] ) mysql? ( >=dev-python/sqlalchemy-0.7[mysql] <dev-python/sqlalchemy-0.8[mysql] ) postgres? ( >=dev-python/sqlalchemy-0.7[postgres] <dev-python/sqlalchemy-0.8[postgres] ) ldap? ( dev-python/python-ldap ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 )
SLOT=0
SRC_URI=http://launchpad.net/glance/grizzly/2013.1.2/+download/glance-2013.1.2.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=51fbe0f9d86dff17f735840f71197e62
_md5_=49d9c05cdd0f6bbe3f406b418a4201e4

@ -4,11 +4,11 @@ DESCRIPTION=A system automation and configuration management software
EAPI=4
HOMEPAGE=http://puppetlabs.com/
IUSE=augeas diff doc emacs ldap minimal rrdtool selinux shadow sqlite3 vim-syntax xemacs test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 test test
KEYWORDS=amd64 ~hppa ppc ~sparc ~x86
KEYWORDS=amd64 hppa ppc ~sparc ~x86
LICENSE=Apache-2.0 GPL-2
RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/facter-1.5.6[ruby_targets_ruby18] augeas? ( dev-ruby/ruby-augeas[ruby_targets_ruby18] ) diff? ( dev-ruby/diff-lcs[ruby_targets_ruby18] ) doc? ( dev-ruby/rdoc[ruby_targets_ruby18] ) ldap? ( dev-ruby/ruby-ldap[ruby_targets_ruby18] ) shadow? ( dev-ruby/ruby-shadow[ruby_targets_ruby18] ) sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby18] ) virtual/ruby-ssl[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/facter-1.5.6[ruby_targets_ruby19] augeas? ( dev-ruby/ruby-augeas[ruby_targets_ruby19] ) diff? ( dev-ruby/diff-lcs[ruby_targets_ruby19] ) doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ldap? ( dev-ruby/ruby-ldap[ruby_targets_ruby19] ) shadow? ( dev-ruby/ruby-shadow[ruby_targets_ruby19] ) sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby19] ) virtual/ruby-ssl[ruby_targets_ruby19] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9[yaml] ) emacs? ( virtual/emacs ) xemacs? ( app-editors/xemacs ) rrdtool? ( >=net-analyzer/rrdtool-1.2.23[ruby] ) selinux? ( sys-libs/libselinux[ruby] sec-policy/selinux-puppet ) >=app-portage/eix-0.18.0 ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] )
REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 )
SLOT=0
SRC_URI=http://www.puppetlabs.com/downloads/puppet/puppet-2.7.22.tar.gz
_eclasses_=elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 63afaaed8aa819fdcb814c7cd39495a2 java-utils-2 52b7cfbf4f7225fcea7e7f18b6d83328 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem 6e366daedf25d7020291916549562bbf ruby-ng 69c01a1b984ed066bc91b4397b002f6a toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xemacs-elisp-common 81f5b5356f3397c277e83736c42256b5
_md5_=9d000d051329728eeef8c05afc627137
_md5_=0123d8a417d160158ef4b1f8561dadf7

@ -3,9 +3,9 @@ DEPEND=app-arch/unzip
DESCRIPTION=German dictionaries for myspell/hunspell
EAPI=4
HOMEPAGE=http://extensions.libreoffice.org/extension-center/german-de-at-frami-dictionaries http://extensions.libreoffice.org/extension-center/german-de-de-frami-dictionaries http://extensions.libreoffice.org/extension-center/german-de-ch-frami-dictionaries
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd
LICENSE=GPL-2 LGPL-2
SLOT=0
SRC_URI=http://extensions.libreoffice.org/extension-center/german-de-at-frami-dictionaries/pscreleasefolder.2011-11-05.7614737245/2012.06.17/dict-de_at-frami_2012-06-17.oxt http://extensions.libreoffice.org/extension-center/german-de-de-frami-dictionaries/releases/2012.06.17/dict-de_de-frami_2012-06-17.oxt http://extensions.libreoffice.org/extension-center/german-de-ch-frami-dictionaries/pscreleasefolder.2011-11-05.5296069116/2012.06.17/dict-de_ch-frami_2012-06-17.oxt
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 myspell-r2 9dad31f330bab288874827d12dcd3496 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5621a4ca6ebec6b1aeecb0293236ad3b
_md5_=1d33b076d9a74aef3fb9ee60d55fbc19

@ -7,8 +7,8 @@ IUSE=+python charmap git terminal python_targets_python3_2
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2+
RDEPEND=>=app-editors/gedit-3.7.1[python?] >=dev-libs/glib-2.32:2 >=dev-libs/libpeas-1.7.0[gtk,python?] >=x11-libs/gtk+-3.4:3 >=x11-libs/gtksourceview-3:3.0 python? ( python_targets_python3_2? ( dev-lang/python:3.2[xml] ) dev-python/python-exec[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=app-editors/gedit-3[introspection,python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-libs/libpeas[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/dbus-python[python_targets_python3_2(-)?,-python_single_target_python3_2(-)] dev-python/pycairo dev-python/pygobject:3[cairo,python_targets_python3_2(-)?,-python_single_target_python3_2(-)] >=x11-libs/gtk+-3.4:3[introspection] >=x11-libs/gtksourceview-3:3.0[introspection] x11-libs/pango[introspection] x11-libs/gdk-pixbuf:2[introspection] ) charmap? ( >=gnome-extra/gucharmap-3:2.90[introspection] ) git? ( >=dev-libs/libgit2-glib-0.0.2 ) terminal? ( x11-libs/vte:2.90[introspection] )
REQUIRED_USE=charmap? ( python ) git? ( python ) terminal? ( python )
REQUIRED_USE=charmap? ( python ) git? ( python ) terminal? ( python ) python? ( )
SLOT=0
SRC_URI=mirror://gnome/sources/gedit-plugins/3.8/gedit-plugins-3.8.3.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=19a5ec2089517b525c3fe86cdb29f0c8
_md5_=b69e4be7c106617419d867fb32d3df88

@ -1,15 +1,15 @@
DEFINED_PHASES=compile install postinst prepare setup
DEPEND=dev-libs/yajl dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pypam[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pyxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] sys-libs/zlib sys-power/iasl ocaml? ( dev-ml/findlib ) hvm? ( media-libs/libsdl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] api? ( dev-libs/libxml2 net-misc/curl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] pygrub? ( python_single_target_python2_6? ( dev-lang/python:2.6[ncurses] ) python_single_target_python2_7? ( dev-lang/python:2.7[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) sys-devel/bin86 sys-devel/dev86 dev-lang/perl app-misc/pax-utils doc? ( app-doc/doxygen dev-tex/latex2html[png,gif] media-gfx/transfig media-gfx/graphviz dev-tex/xcolor dev-texlive/texlive-latexextra virtual/latex-base dev-tex/latexmk dev-texlive/texlive-latex dev-texlive/texlive-pictures dev-texlive/texlive-latexrecommended ) hvm? ( x11-proto/xproto ) virtual/pkgconfig
DEPEND=dev-libs/yajl dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pypam[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] sys-libs/zlib sys-power/iasl ocaml? ( dev-ml/findlib ) hvm? ( media-libs/libsdl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] api? ( dev-libs/libxml2 net-misc/curl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] pygrub? ( python_single_target_python2_6? ( dev-lang/python:2.6[ncurses] ) python_single_target_python2_7? ( dev-lang/python:2.7[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) sys-devel/bin86 sys-devel/dev86 dev-lang/perl app-misc/pax-utils doc? ( app-doc/doxygen dev-tex/latex2html[png,gif] media-gfx/transfig media-gfx/graphviz dev-tex/xcolor dev-texlive/texlive-latexextra virtual/latex-base dev-tex/latexmk dev-texlive/texlive-latex dev-texlive/texlive-pictures dev-texlive/texlive-latexrecommended ) hvm? ( x11-proto/xproto ) virtual/pkgconfig
DESCRIPTION=Xend daemon and tools
EAPI=5
HOMEPAGE=http://xen.org/
IUSE=api custom-cflags debug doc flask hvm qemu ocaml pygrub screen static-libs xend python_targets_python2_6 python_targets_python2_7 python_single_target_python2_6 python_single_target_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=dev-libs/yajl dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pypam[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pyxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] sys-libs/zlib sys-power/iasl ocaml? ( dev-ml/findlib ) hvm? ( media-libs/libsdl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] api? ( dev-libs/libxml2 net-misc/curl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] pygrub? ( python_single_target_python2_6? ( dev-lang/python:2.6[ncurses] ) python_single_target_python2_7? ( dev-lang/python:2.7[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) sys-apps/iproute2 net-misc/bridge-utils ocaml? ( >=dev-lang/ocaml-3.12.0 ) screen? ( app-misc/screen app-admin/logrotate ) virtual/udev
RDEPEND=dev-libs/yajl dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pypam[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] sys-libs/zlib sys-power/iasl ocaml? ( dev-ml/findlib ) hvm? ( media-libs/libsdl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] api? ( dev-libs/libxml2 net-misc/curl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] pygrub? ( python_single_target_python2_6? ( dev-lang/python:2.6[ncurses] ) python_single_target_python2_7? ( dev-lang/python:2.7[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) sys-apps/iproute2 net-misc/bridge-utils ocaml? ( >=dev-lang/ocaml-3.12.0 ) screen? ( app-misc/screen app-admin/logrotate ) virtual/udev
REQUIRED_USE=hvm? ( qemu )
RESTRICT=test
SLOT=0
SRC_URI=http://bits.xensource.com/oss-xen/release/4.2.1/xen-4.2.1.tar.gz http://dev.gentoo.org/~idella4/tarballs/ipxe.tar.gz http://dev.gentoo.org/~idella4/tarballs/seabios-0-20121121.tar.bz2 http://dev.gentoo.org/~idella4//patches/XSA-55patches.tar.gz
_eclasses_=bash-completion-r1 5deec68e4713fd23ce30d4d9ed712908 eutils 63afaaed8aa819fdcb814c7cd39495a2 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28
_md5_=2c647935d88d65c827acca0e9b238f31
_md5_=c8f5c6cc167a693edda56e73de077a10

@ -1,15 +1,15 @@
DEFINED_PHASES=compile install postinst prepare setup
DEPEND=dev-libs/lzo:2 dev-libs/yajl dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pypam[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pyxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] sys-libs/zlib sys-power/iasl dev-ml/findlib hvm? ( media-libs/libsdl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] api? ( dev-libs/libxml2 net-misc/curl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] pygrub? ( python_single_target_python2_6? ( dev-lang/python:2.6[ncurses] ) python_single_target_python2_7? ( dev-lang/python:2.7[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) sys-devel/bin86 sys-devel/dev86 dev-lang/perl app-misc/pax-utils doc? ( app-doc/doxygen dev-tex/latex2html[png,gif] media-gfx/transfig media-gfx/graphviz dev-tex/xcolor dev-texlive/texlive-latexextra virtual/latex-base dev-tex/latexmk dev-texlive/texlive-latex dev-texlive/texlive-pictures dev-texlive/texlive-latexrecommended ) hvm? ( x11-proto/xproto ) virtual/pkgconfig
DEPEND=dev-libs/lzo:2 dev-libs/yajl dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pypam[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] sys-libs/zlib sys-power/iasl dev-ml/findlib hvm? ( media-libs/libsdl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] api? ( dev-libs/libxml2 net-misc/curl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] pygrub? ( python_single_target_python2_6? ( dev-lang/python:2.6[ncurses] ) python_single_target_python2_7? ( dev-lang/python:2.7[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) sys-devel/bin86 sys-devel/dev86 dev-lang/perl app-misc/pax-utils doc? ( app-doc/doxygen dev-tex/latex2html[png,gif] media-gfx/transfig media-gfx/graphviz dev-tex/xcolor dev-texlive/texlive-latexextra virtual/latex-base dev-tex/latexmk dev-texlive/texlive-latex dev-texlive/texlive-pictures dev-texlive/texlive-latexrecommended ) hvm? ( x11-proto/xproto ) virtual/pkgconfig
DESCRIPTION=Xend daemon and tools
EAPI=5
HOMEPAGE=http://xen.org/
IUSE=api custom-cflags debug doc flask hvm qemu ocaml pygrub screen static-libs xend python_targets_python2_6 python_targets_python2_7 python_single_target_python2_6 python_single_target_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=dev-libs/lzo:2 dev-libs/yajl dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pypam[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pyxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] sys-libs/zlib sys-power/iasl dev-ml/findlib hvm? ( media-libs/libsdl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] api? ( dev-libs/libxml2 net-misc/curl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] pygrub? ( python_single_target_python2_6? ( dev-lang/python:2.6[ncurses] ) python_single_target_python2_7? ( dev-lang/python:2.7[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) sys-apps/iproute2 net-misc/bridge-utils ocaml? ( >=dev-lang/ocaml-4 ) screen? ( app-misc/screen app-admin/logrotate ) virtual/udev
RDEPEND=dev-libs/lzo:2 dev-libs/yajl dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pypam[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] sys-libs/zlib sys-power/iasl dev-ml/findlib hvm? ( media-libs/libsdl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] api? ( dev-libs/libxml2 net-misc/curl ) python_single_target_python2_6? ( dev-lang/python:2.6[xml,threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml,threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] pygrub? ( python_single_target_python2_6? ( dev-lang/python:2.6[ncurses] ) python_single_target_python2_7? ( dev-lang/python:2.7[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) sys-apps/iproute2 net-misc/bridge-utils ocaml? ( >=dev-lang/ocaml-4 ) screen? ( app-misc/screen app-admin/logrotate ) virtual/udev
REQUIRED_USE=hvm? ( qemu )
RESTRICT=test
SLOT=0
SRC_URI=http://bits.xensource.com/oss-xen/release/4.2.2/xen-4.2.2.tar.gz http://dev.gentoo.org/~idella4/tarballs/ipxe.tar.gz http://dev.gentoo.org/~idella4/tarballs/seabios-0-20121121.tar.bz2 http://dev.gentoo.org/~idella4//patches/XSA-55patches.tar.gz
_eclasses_=bash-completion-r1 5deec68e4713fd23ce30d4d9ed712908 eutils 63afaaed8aa819fdcb814c7cd39495a2 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28
_md5_=393c40c0a55e33dc3bf6569194760be1
_md5_=2d96b7e317e933871726f48238ae9f65

@ -0,0 +1,13 @@
DEFINED_PHASES=configure install prepare
DEPEND=dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/pango nls? ( sys-devel/gettext ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DESCRIPTION=A modern GTK+ based filemanager for any WM
EAPI=5
HOMEPAGE=http://www.obsession.se/gentoo/
IUSE=nls
KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=GPL-2
RDEPEND=dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/pango
SLOT=0
SRC_URI=mirror://sourceforge/gentoo/gentoo-0.20.1.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 63afaaed8aa819fdcb814c7cd39495a2 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=4e5efa23b812484e0b2a2570ffe27865

@ -4,7 +4,7 @@ DESCRIPTION=LibreOffice, a full office productivity suite.
EAPI=5
HOMEPAGE=http://www.libreoffice.org
IUSE=bluetooth +branding +cups dbus debug eds gnome gstreamer +gtk jemalloc kde mysql odk opengl postgres telepathy test +vba +webdav libreoffice_extensions_nlpsolver libreoffice_extensions_presenter-minimizer libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher elibc_FreeBSD java aqua kde python_targets_python2_7 python_targets_python3_3 python_single_target_python2_7 python_single_target_python3_3
KEYWORDS=amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux
KEYWORDS=amd64 ~arm ppc x86 ~amd64-linux ~x86-linux
LICENSE=|| ( LGPL-3 MPL-1.1 )
PDEPEND=~app-office/libreoffice-l10n-4.0.4.2
RDEPEND=python_single_target_python2_7? ( dev-lang/python:2.7[threads,xml] ) python_single_target_python3_3? ( dev-lang/python:3.3[threads,xml] ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_single_target_python2_7(+)?,python_single_target_python3_3(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libexttextcat-3.2 app-text/liblangtag app-text/libmspub app-text/libwpd:0.9[tools] app-text/libwpg:0.2 >=app-text/libwps-0.2.2 >=app-text/poppler-0.16:=[xpdf-headers(+),cxx] >=dev-cpp/clucene-2.3.3.4-r2 >=dev-cpp/libcmis-0.3.1:0.3 dev-db/unixODBC dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= =dev-libs/liborcus-0.3* >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d >=dev-libs/redland-1.0.14[ssl] media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 media-libs/lcms:2 >=media-libs/libpng-1.4 >=media-libs/libcdr-0.0.5 media-libs/libvisio >=net-misc/curl-7.21.4 net-nds/openldap sci-mathematics/lpsolve virtual/jpeg >=x11-libs/cairo-1.10.0[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender bluetooth? ( net-wireless/bluez ) cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( gnome-extra/evolution-data-server ) gnome? ( gnome-base/gconf:2 ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) libreoffice_extensions_wiki-publisher? ( dev-java/commons-codec:0 dev-java/commons-httpclient:3 dev-java/commons-lang:2.1 dev-java/commons-logging:0 dev-java/tomcat-servlet-api:3.0 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) opengl? ( virtual/glu virtual/opengl ) postgres? ( >=dev-db/postgresql-base-9.0[kerberos] ) telepathy? ( dev-libs/glib:2 >=net-libs/telepathy-glib-0.18.0 >=x11-libs/gtk+-2.24:2 ) webdav? ( net-libs/neon ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !<app-office/openoffice-bin-3.4.0-r1 !app-office/openoffice media-fonts/libertine-ttf media-fonts/liberation-fonts media-fonts/urw-fonts java? ( >=virtual/jre-1.6 ) java? ( >=dev-java/java-config-2.1.9-r1 ) kde? ( >=kde-base/oxygen-icons-4.4:4[aqua=] ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/qtgui-4.7.4:4[accessibility,dbus] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] )
@ -12,4 +12,4 @@ REQUIRED_USE=python_single_target_python2_7? ( python_targets_python2_7 ) python
SLOT=0
SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.7.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-4.0.4.2.tar.xz http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-4.0.4.2.tar.xz http://download.documentfoundation.org/libreoffice/src/4.0.4//libreoffice-4.0.4.2.tar.xz http://download.documentfoundation.org/libreoffice/src/4.0.4//libreoffice-help-4.0.4.2.tar.xz http://download.documentfoundation.org/libreoffice/old/4.0.4.2//libreoffice-4.0.4.2.tar.xz http://download.documentfoundation.org/libreoffice/old/4.0.4.2//libreoffice-help-4.0.4.2.tar.xz http://dev-www.libreoffice.org/src//ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll )
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 5deec68e4713fd23ce30d4d9ed712908 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 52b7cfbf4f7225fcea7e7f18b6d83328 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool b1c8688e60f9580bcb9bb46e08737eb1 mozextension ba6829881080a663d68531424a3dfbc6 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins 7ea51b2f6cbd5b36b9c0163cc3ee03a2 pax-utils 2424f959506320f5196de8f79fa05297 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86
_md5_=d28b5c899aa2f0964b05205a74e10ae8
_md5_=481a4badc5984e4a4b7962b60926c7a9

File diff suppressed because one or more lines are too long

@ -4,10 +4,10 @@ DESCRIPTION=Library parsing the Microsoft Publisher documents
EAPI=5
HOMEPAGE=http://www.freedesktop.org/wiki/Software/libmspub
IUSE=doc static-libs
KEYWORDS=amd64 ~arm ~ppc x86
KEYWORDS=amd64 ~arm ppc x86
LICENSE=LGPL-2.1
RDEPEND=app-text/libwpd:0.9 app-text/libwpg:0.2 dev-libs/icu:= sys-libs/zlib
SLOT=0
SRC_URI=http://dev-www.libreoffice.org/src/libmspub-0.0.6.tar.xz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5d529da030592c020bb08dc16c084acd
_md5_=21bc334d3bb8305215483c094a5ced68

@ -4,10 +4,10 @@ DESCRIPTION=A command-line program that does structural, content-preserving tran
EAPI=5
HOMEPAGE=http://qpdf.sourceforge.net/
IUSE=doc examples static-libs test
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint
LICENSE=Artistic-2
RDEPEND=dev-libs/libpcre sys-libs/zlib >=dev-lang/perl-5.8
SLOT=0/10
SRC_URI=mirror://sourceforge/qpdf/qpdf-4.1.0.tar.gz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5417a0c76834fd814071a526409bdc4e
_md5_=825d21a30958c8f964c935309c4c6c7c

@ -4,10 +4,10 @@ DESCRIPTION=A class for types that can be converted to a hash value
EAPI=5
HOMEPAGE=http://github.com/tibbe/hashable
IUSE=doc hscolour profile test
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
KEYWORDS=~alpha ~amd64 ~ia64 ppc ~ppc64 ~sparc ~x86
LICENSE=BSD
RDEPEND=>=dev-haskell/text-0.11.0.5:=[profile?] >=dev-lang/ghc-6.10.1:=
SLOT=0/1.1.2.5
SRC_URI=mirror://hackage/packages/archive/hashable/1.1.2.5/hashable-1.1.2.5.tar.gz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 ghc-package 2d57c65a8826a1c4234d2de7f1b9f486 haskell-cabal 0fe5ac58a8b877fae07bb258b762852e multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=508b9bb40a98ff7b5af2d050733527d9
_md5_=dbd1c3b0db698fcda71bc14e74aa8391

@ -4,10 +4,10 @@ DESCRIPTION=Framework for running and organising tests, with HUnit and QuickChec
EAPI=5
HOMEPAGE=http://batterseapower.github.com/test-framework/
IUSE=doc hscolour profile
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
KEYWORDS=~alpha ~amd64 ~ia64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
LICENSE=BSD
RDEPEND=>=dev-haskell/ansi-terminal-0.4.0:=[profile?] >=dev-haskell/ansi-wl-pprint-0.5.1:=[profile?] >=dev-haskell/extensible-exceptions-0.1.1:=[profile?] >=dev-haskell/hostname-1.0:=[profile?] >=dev-haskell/random-1.0:=[profile?] >=dev-haskell/regex-posix-0.72:=[profile?] >=dev-haskell/xml-1.3.5:=[profile?] >=dev-lang/ghc-6.12.1:=
SLOT=0/0.8
SRC_URI=mirror://hackage/packages/archive/test-framework/0.8/test-framework-0.8.tar.gz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 ghc-package 2d57c65a8826a1c4234d2de7f1b9f486 haskell-cabal 0fe5ac58a8b877fae07bb258b762852e multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=ed7ef17675a0fc5639d1d43ae37ccf11
_md5_=67dafbb7ac5f8ca8f90310c3974e852d

@ -4,10 +4,10 @@ DESCRIPTION=QuickCheck2 support for the test-framework package.
EAPI=5
HOMEPAGE=http://batterseapower.github.com/test-framework/
IUSE=doc hscolour profile
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
KEYWORDS=~alpha ~amd64 ~ia64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
LICENSE=BSD
RDEPEND=>=dev-haskell/extensible-exceptions-0.1.1:=[profile?] <dev-haskell/extensible-exceptions-0.2.0:=[profile?] >=dev-haskell/quickcheck-2.4:2=[profile?] <dev-haskell/quickcheck-2.7:2=[profile?] >=dev-haskell/random-1:=[profile?] >=dev-haskell/test-framework-0.7.1:=[profile?] >=dev-lang/ghc-6.10.4:=
SLOT=0/0.3.0.1
SRC_URI=mirror://hackage/packages/archive/test-framework-quickcheck2/0.3.0.1/test-framework-quickcheck2-0.3.0.1.tar.gz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 ghc-package 2d57c65a8826a1c4234d2de7f1b9f486 haskell-cabal 0fe5ac58a8b877fae07bb258b762852e multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=1c99a409356f8c6f171f3a18b379a64b
_md5_=3963629a48195093724e20e8d4aad9a2

@ -4,11 +4,11 @@ DESCRIPTION=An object-oriented scripting language
EAPI=2
HOMEPAGE=http://www.ruby-lang.org/
IUSE=+berkdb debug doc examples +gdbm ipv6 rubytests socks5 ssl threads tk xemacs ncurses +readline libedit
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
LICENSE=|| ( Ruby GPL-2 )
PDEPEND=xemacs? ( app-xemacs/ruby-modes )
RDEPEND=berkdb? ( sys-libs/db ) gdbm? ( sys-libs/gdbm ) ssl? ( >=dev-libs/openssl-0.9.8m ) socks5? ( >=net-proxy/dante-1.1.13 ) tk? ( dev-lang/tk[threads=] ) ncurses? ( sys-libs/ncurses ) libedit? ( dev-libs/libedit ) !libedit? ( readline? ( sys-libs/readline ) ) sys-libs/zlib >=app-admin/eselect-ruby-20100603 !<dev-ruby/rdoc-2
SLOT=1.8
SRC_URI=mirror://ruby/1.8/ruby-1.8.7-p374.tar.bz2 http://dev.gentoo.org/~flameeyes/ruby-team/ruby-patches-1.8.7_p374.tar.bz2
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 63afaaed8aa819fdcb814c7cd39495a2 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=8b7dc7a1f2a55600a7fd5353eaa3625f
_md5_=477f7c20125e50f3266927c95f792dca

@ -4,11 +4,11 @@ DESCRIPTION=An object-oriented scripting language
EAPI=4
HOMEPAGE=http://www.ruby-lang.org/
IUSE=berkdb debug doc examples gdbm ipv6 +rdoc rubytests socks5 ssl tk xemacs ncurses +readline +yaml
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd
KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd
LICENSE=|| ( Ruby-BSD BSD-2 )
PDEPEND=>=dev-ruby/rubygems-1.8.10-r1[ruby_targets_ruby19] rdoc? ( >=dev-ruby/rdoc-3.9.4[ruby_targets_ruby19] ) xemacs? ( app-xemacs/ruby-modes )
RDEPEND=berkdb? ( sys-libs/db ) gdbm? ( sys-libs/gdbm ) ssl? ( dev-libs/openssl ) socks5? ( >=net-proxy/dante-1.1.13 ) tk? ( dev-lang/tk[threads] ) ncurses? ( sys-libs/ncurses ) readline? ( sys-libs/readline ) yaml? ( dev-libs/libyaml ) virtual/libffi sys-libs/zlib >=app-admin/eselect-ruby-20100402 !<dev-ruby/rdoc-3.9.4 !<dev-ruby/rubygems-1.8.10-r1
SLOT=1.9
SRC_URI=mirror://ruby/1.9/ruby-1.9.3-p448.tar.bz2 http://dev.gentoo.org/~flameeyes/ruby-team/ruby-patches-1.9.3_p448.tar.bz2
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 63afaaed8aa819fdcb814c7cd39495a2 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=b17ca8d51554ab810b249057d6a65f97
_md5_=07ea10162ff6995981a7918b7ee83f70

@ -4,10 +4,10 @@ DESCRIPTION=Standalone file import filter library for spreadsheet documents
EAPI=5
HOMEPAGE=http://gitorious.org/orcus/pages/Home
IUSE=static-libs
KEYWORDS=amd64 ~arm ~ppc x86
KEYWORDS=amd64 ~arm ppc x86
LICENSE=MIT
RDEPEND=dev-libs/boost:= dev-libs/libzip
SLOT=0
SRC_URI=http://kohei.us/files/orcus/src/liborcus_0.3.0.tar.bz2
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_md5_=5d3fed38757bc2a8652f44ad703f6984
_md5_=30338fbc730b8d761d5d6f76af0386f2

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=dev-libs/openssl:0 sys-libs/zlib !bundled-libs? ( dev-lang/luajit:2[lua52compat] >=dev-libs/yajl-2.0.2 net-libs/http-parser ) virtual/pkgconfig
DESCRIPTION=Takes node.js' architecture and dependencies and fits it in the Lua language
EAPI=5
HOMEPAGE=http://luvit.io/
IUSE=bundled-libs examples
KEYWORDS=~amd64 ~x86
LICENSE=Apache-2.0 bundled-libs? ( BSD MIT )
RDEPEND=dev-libs/openssl:0 sys-libs/zlib !bundled-libs? ( dev-lang/luajit:2[lua52compat] >=dev-libs/yajl-2.0.2 net-libs/http-parser )
RESTRICT=test
SLOT=0
SRC_URI=http://luvit.io/dist/latest/luvit-0.6.1.tar.gz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=8a629a7538b7775a65f785a1a84e8f9c

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=dev-libs/openssl:0 sys-libs/zlib system-libs? ( >=dev-libs/yajl-2.0.2 ) virtual/pkgconfig
DESCRIPTION=Takes node.js' architecture and dependencies and fits it in the Lua language
EAPI=5
HOMEPAGE=http://luvit.io/
IUSE=examples +system-libs
KEYWORDS=~amd64 ~x86
LICENSE=Apache-2.0 MIT !system-libs? ( BSD )
RDEPEND=dev-libs/openssl:0 sys-libs/zlib system-libs? ( >=dev-libs/yajl-2.0.2 )
RESTRICT=test
SLOT=0
SRC_URI=http://dev.gentoo.org/~hasufell/distfiles/luvit-0.6_p20121221.tar.xz
_eclasses_=multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_md5_=c75033917c80539ba3ad09ab8781bc73

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install prepare unpack
DEPEND=dev-libs/openssl:0 sys-libs/zlib system-libs? ( >=dev-libs/yajl-2.0.4 ) virtual/pkgconfig dev-vcs/git
DEPEND=dev-libs/openssl:0 sys-libs/zlib !bundled-libs? ( dev-lang/luajit:2[lua52compat] >=dev-libs/yajl-2.0.4 ) virtual/pkgconfig dev-vcs/git
DESCRIPTION=Takes node.js' architecture and dependencies and fits it in the Lua language
EAPI=5
HOMEPAGE=http://luvit.io/
IUSE=examples +system-libs
LICENSE=Apache-2.0 MIT !system-libs? ( BSD )
RDEPEND=dev-libs/openssl:0 sys-libs/zlib system-libs? ( >=dev-libs/yajl-2.0.4 )
IUSE=bundled-libs examples
LICENSE=Apache-2.0 !bundled-libs? ( BSD MIT )
RDEPEND=dev-libs/openssl:0 sys-libs/zlib !bundled-libs? ( dev-lang/luajit:2[lua52compat] >=dev-libs/yajl-2.0.4 )
RESTRICT=test
SLOT=0
_eclasses_=git-2 e92e09651292b1bef5656592364550f7 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_md5_=5134b8e1ad0d29c4a1ce73f0bf08c587
_md5_=8b41e282bb008a71fe942298b8f8fa4e

@ -4,10 +4,10 @@ DESCRIPTION=A working (require q{Class::Name}) and more
EAPI=4
HOMEPAGE=http://search.cpan.org/dist/Class-Load/
IUSE=test
KEYWORDS=alpha ~amd64 arm ~hppa ia64 ppc ~ppc64 s390 sh sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 )
RDEPEND=virtual/perl-Scalar-List-Utils dev-perl/Data-OptList >=dev-perl/Module-Runtime-0.12.0 >=dev-perl/Module-Implementation-0.40.0 >=dev-perl/Package-Stash-0.320.0 dev-perl/Try-Tiny dev-lang/perl[-build]
SLOT=0
SRC_URI=mirror://cpan/authors/id/D/DR/DROLSKY/Class-Load-0.20.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module ba21eba2562fc2643deeea95fd28665d toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5288d596f392e9ff45b6d3a69c174a7b
_md5_=024fcb2abfcadbc0965e2c069b695c6d

@ -3,10 +3,10 @@ DEPEND=dev-lang/perl[-build]
DESCRIPTION=Perl Proc-Simple - Launch and control background processes
EAPI=4
HOMEPAGE=http://search.cpan.org/dist/Proc-Simple/
KEYWORDS=amd64 ~ppc x86
KEYWORDS=amd64 ppc x86
LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 )
RDEPEND=dev-lang/perl[-build]
SLOT=0
SRC_URI=mirror://cpan/authors/id/M/MS/MSCHILLI/Proc-Simple-1.31.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module ba21eba2562fc2643deeea95fd28665d toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=49b7d748305ae2bc144d971a5d878909
_md5_=e90c03fc80c6351a16840a4fb09682ac

@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://pypi/d/django-appconf/django-appconf-0.6.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=a947aa74ff59770c43dde99003944058
_md5_=ed2164fe91995929a709a6d45ea9eea3

@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=https://github.com/jezdez/django_compressor/archive/1.3.tar.gz -> django-compressor-1.3.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=8e605ea25e140722f29905ca32eabfdd
_md5_=d3b5cdca7acebb68414790b89d89cc96

@ -4,7 +4,7 @@ DESCRIPTION=Parse RSS and Atom feeds in Python
EAPI=5
HOMEPAGE=http://code.google.com/p/feedparser/ http://pypi.python.org/pypi/feedparser
IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy1_9 python_targets_pypy2_0
KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris
KEYWORDS=alpha amd64 ~arm ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris
LICENSE=BSD-2 PSF-2
RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy1_9 python_targets_pypy2_0 )
@ -12,4 +12,4 @@ RESTRICT=test
SLOT=0
SRC_URI=http://feedparser.googlecode.com/files/feedparser-5.1.3.tar.bz2
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ea64a85bdceced7e621638903633095d
_md5_=3993f93705a772ce0357d3b4d9f8fb8d

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND==dev-libs/botan-1.10* >=dev-qt/qtcore-4.8.0:4[ssl] >=dev-qt/qtdeclarative-4.8.0:4 >=dev-qt/qtgui-4.8.0:4 >=dev-qt/qthelp-4.8.0:4[doc?] >=dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4 >=dev-qt/qtsvg-4.8.0:4 virtual/pkgconfig test? ( >=dev-qt/qttest-4.8.0:4 )
DESCRIPTION=Lightweight IDE for C++/QML development centering around Qt
EAPI=5
HOMEPAGE=http://qt-project.org/wiki/Category:Tools::QtCreator
IUSE=debug doc examples test android autotools bazaar clearcase cmake cvs fakevim git madde mercurial perforce qnx subversion valgrind linguas_cs linguas_de linguas_es linguas_fr linguas_it linguas_ja linguas_pl linguas_ru linguas_sl linguas_uk linguas_zh_CN linguas_zh_TW
KEYWORDS=~amd64 ~arm ~ppc ~x86
LICENSE=LGPL-2.1
PDEPEND=autotools? ( sys-devel/autoconf ) bazaar? ( dev-vcs/bzr ) cmake? ( dev-util/cmake ) cvs? ( dev-vcs/cvs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( dev-vcs/subversion ) valgrind? ( dev-util/valgrind )
RDEPEND==dev-libs/botan-1.10* >=dev-qt/qtcore-4.8.0:4[ssl] >=dev-qt/qtdeclarative-4.8.0:4 >=dev-qt/qtgui-4.8.0:4 >=dev-qt/qthelp-4.8.0:4[doc?] >=dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4 >=dev-qt/qtsvg-4.8.0:4 >=sys-devel/gdb-7.2[python] examples? ( >=dev-qt/qtdemo-4.8.0:4 )
SLOT=0
SRC_URI=http://download.qt-project.org/development_releases/qtcreator/2.8/2.8.0-rc/qt-creator-2.8.0-rc-src.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 63afaaed8aa819fdcb814c7cd39495a2 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multilib 892e597faee02a5b94eb02ab512e7622 qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ea50efae2596952de89559cea6750d57

@ -0,0 +1,13 @@
DEFINED_PHASES=compile install
DEPEND=>=dev-lang/perl-5.10 app-arch/dpkg dev-perl/TimeDate virtual/perl-Getopt-Long linguas_de? ( >=app-text/po4a-0.24 ) linguas_es? ( >=app-text/po4a-0.24 ) linguas_fr? ( >=app-text/po4a-0.24 ) test? ( dev-perl/Test-Pod )
DESCRIPTION=Collection of programs that can be used to automate common tasks in debian/rules
EAPI=5
HOMEPAGE=http://packages.qa.debian.org/d/debhelper.html http://joeyh.name/code/debhelper/
IUSE=test linguas_de linguas_es linguas_fr
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux
LICENSE=GPL-2
RDEPEND=>=dev-lang/perl-5.10 app-arch/dpkg dev-perl/TimeDate virtual/perl-Getopt-Long
SLOT=0
SRC_URI=mirror://debian/pool/main/d/debhelper/debhelper_9.20130630.tar.gz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=f74d6f5fa058755ca065bec8c4a4f6c5

@ -4,10 +4,10 @@ DESCRIPTION=joystick testing utilities
EAPI=5
HOMEPAGE=http://sourceforge.net/projects/linuxconsole/ http://atrey.karlin.mff.cuni.cz/~vojtech/input/
IUSE=sdl
KEYWORDS=amd64 ~arm ~ppc x86
KEYWORDS=amd64 ~arm ppc x86
LICENSE=GPL-2
RDEPEND=sdl? ( media-libs/libsdl:0[video] ) !<x11-libs/tslib-1.0-r2
SLOT=0
SRC_URI=mirror://sourceforge/linuxconsole/files/linuxconsoletools-1.4.4.tar.bz2
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=fc8c3bdc23203b99aaf09b1d5bcb59d5
_md5_=cc777e9762b9da96bdef98393ad355fc

@ -9,4 +9,4 @@ RDEPEND=>=x11-libs/gtk+-3:3 >=dev-libs/glib-2.31:2 dev-libs/libxml2:2 !<gnome-ex
SLOT=0
SRC_URI=mirror://gnome/sources/gnome-calculator/3.8/gnome-calculator-3.8.2.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=e663b81f8ed01d64f84d47e2d81399cf
_md5_=12c3c33df7ce18463b8ffb262c9db848

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=dev-libs/glib-2.30:2 >=x11-libs/gtk+-3.7.12:3 >=media-libs/libcanberra-0.30 >=dev-libs/libgweather-3.7.90 >=gnome-base/gnome-desktop-3.7.90 >=x11-libs/libnotify-0.7 || ( dev-lang/vala:0.20 dev-lang/vala:0.18 ) app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=dev-libs/glib-2.30:2 >=x11-libs/gtk+-3.7.12:3 >=media-libs/libcanberra-0.30 >=dev-libs/libgweather-3.7.90:= >=gnome-base/gnome-desktop-3.7.90:= >=x11-libs/libnotify-0.7:= || ( dev-lang/vala:0.20 dev-lang/vala:0.18 ) >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DESCRIPTION=Clocks application for GNOME
EAPI=5
HOMEPAGE=http://live.gnome.org/GnomeClocks
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2+
RDEPEND=>=dev-libs/glib-2.30:2 >=x11-libs/gtk+-3.7.12:3 >=media-libs/libcanberra-0.30 >=dev-libs/libgweather-3.7.90 >=gnome-base/gnome-desktop-3.7.90 >=x11-libs/libnotify-0.7
RDEPEND=>=dev-libs/glib-2.30:2 >=x11-libs/gtk+-3.7.12:3 >=media-libs/libcanberra-0.30 >=dev-libs/libgweather-3.7.90:= >=gnome-base/gnome-desktop-3.7.90:= >=x11-libs/libnotify-0.7:=
SLOT=0
SRC_URI=mirror://gnome/sources/gnome-clocks/3.8/gnome-clocks-3.8.2.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=8fd7e9cfd790b71737851849f642a5fa
_md5_=d5cb5027b6aef9e12a8b7d31c784a7f7

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=dev-libs/folks-0.7.3:=[eds,telepathy] >=dev-libs/glib-2.31.10:2 >=dev-libs/libgee-0.10:0.8 >=gnome-extra/evolution-data-server-3.5.3:=[gnome-online-accounts] >=gnome-base/gnome-desktop-3.0:3= net-libs/gnome-online-accounts >=net-libs/telepathy-glib-0.17.5 x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/libnotify:= >=x11-libs/gtk+-3.4:3 x11-libs/pango v4l? ( >=media-video/cheese-3.5.91:= ) || ( dev-lang/vala:0.20 dev-lang/vala:0.18 ) dev-libs/folks[vala] gnome-base/gnome-desktop[introspection] gnome-extra/evolution-data-server[vala] net-libs/telepathy-glib[vala] x11-libs/libnotify[introspection] >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=dev-libs/folks-0.7.3:=[eds,telepathy] >=dev-libs/glib-2.31.10:2 >=dev-libs/libgee-0.10:0.8 >=gnome-extra/evolution-data-server-3.5.3:=[gnome-online-accounts] >=gnome-base/gnome-desktop-3.0:3= net-libs/gnome-online-accounts >=net-libs/telepathy-glib-0.17.5 x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/libnotify:= >=x11-libs/gtk+-3.7.10:3 x11-libs/pango v4l? ( >=media-video/cheese-3.5.91:= ) || ( dev-lang/vala:0.20[vapigen] dev-lang/vala:0.18[vapigen] ) >=dev-libs/gobject-introspection-0.9.6 dev-libs/folks[vala] gnome-base/gnome-desktop[introspection] gnome-extra/evolution-data-server[vala] net-libs/telepathy-glib[vala] x11-libs/libnotify[introspection] >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DESCRIPTION=GNOME contact management application
EAPI=5
HOMEPAGE=https://live.gnome.org/Design/Apps/Contacts
IUSE=v4l
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=GPL-2+
RDEPEND=>=dev-libs/folks-0.7.3:=[eds,telepathy] >=dev-libs/glib-2.31.10:2 >=dev-libs/libgee-0.10:0.8 >=gnome-extra/evolution-data-server-3.5.3:=[gnome-online-accounts] >=gnome-base/gnome-desktop-3.0:3= net-libs/gnome-online-accounts >=net-libs/telepathy-glib-0.17.5 x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/libnotify:= >=x11-libs/gtk+-3.4:3 x11-libs/pango v4l? ( >=media-video/cheese-3.5.91:= )
RDEPEND=>=dev-libs/folks-0.7.3:=[eds,telepathy] >=dev-libs/glib-2.31.10:2 >=dev-libs/libgee-0.10:0.8 >=gnome-extra/evolution-data-server-3.5.3:=[gnome-online-accounts] >=gnome-base/gnome-desktop-3.0:3= net-libs/gnome-online-accounts >=net-libs/telepathy-glib-0.17.5 x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/libnotify:= >=x11-libs/gtk+-3.7.10:3 x11-libs/pango v4l? ( >=media-video/cheese-3.5.91:= )
SLOT=0
SRC_URI=mirror://gnome/sources/gnome-contacts/3.8/gnome-contacts-3.8.2.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=70d3813bfdbf9b18b982bad91deec49f
_md5_=0aa5c07515586194a655020423c0f815

@ -5,8 +5,8 @@ EAPI=5
HOMEPAGE=http://www.gnome.org/ http://www.hadess.net/search/label/office-runner
KEYWORDS=~amd64 ~x86
LICENSE=GPL-3
RDEPEND=dev-libs/glib:2 >=gnome-base/gnome-settings-daemon-3.0 x11-libs/gtk+:3
RDEPEND=dev-libs/glib:2 >=gnome-base/gnome-settings-daemon-3.0 x11-libs/gtk+:3 >=sys-apps/systemd-190
SLOT=0
SRC_URI=mirror://gnome/sources/office-runner/1.0/office-runner-1.0.1.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=e0115cf7c655e10dbc6a54d02db86857
_md5_=9463cf6143eb8e655d7a15017ed81d65

@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/gdk-pixbuf-2.23[introspection] >=dev-libs/gjs-1.34 >=dev-libs
SLOT=0
SRC_URI=mirror://gnome/sources/sushi/3.8/sushi-3.8.1.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=9383d4910fad9145558d7a1cfa07831c
_md5_=07504ebc5de808d440876794c6664b2f

@ -3,9 +3,9 @@ DEPEND=virtual/pam
DESCRIPTION=pam.d files used by several KDE components
EAPI=5
HOMEPAGE=http://www.kde.org
KEYWORDS=amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd
KEYWORDS=amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd
LICENSE=GPL-2
RDEPEND=virtual/pam
SLOT=0
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=f324d631f44c9b052884054a90f8107d
_md5_=7a7fdb768b5dbf77c6c77c5fe293334d

@ -1,5 +1,5 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.31.10:2 dev-libs/libgusb media-libs/lcms:2 media-libs/libcanberra[gtk3] net-libs/libsoup:2.4 x11-libs/gtk+:3 >=x11-misc/colord-0.1.31 >=x11-libs/colord-gtk-0.1.24 app-text/yelp-tools app-arch/xz-utils >=sys-apps/sed-4
DEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.31.10:2 dev-libs/libgusb media-libs/lcms:2 media-libs/libcanberra[gtk3] net-libs/libsoup:2.4 x11-libs/gtk+:3 >=x11-misc/colord-0.1.31 >=x11-libs/colord-gtk-0.1.24 app-text/docbook-sgml-dtd:4.1 app-text/docbook-sgml-utils app-text/yelp-tools >=dev-util/intltool-0.35 >=sys-devel/gettext-0.17 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DESCRIPTION=Client tools for the ColorHug display colorimeter
EAPI=5
HOMEPAGE=http://www.hughski.com/
@ -9,4 +9,4 @@ RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.31.10:2 dev-libs/libgusb media-libs/lc
SLOT=0
SRC_URI=http://people.freedesktop.org/~hughsient/releases/colorhug-client-0.2.0.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=09fec6e0d67585af048a17e223244439
_md5_=cba3a2201d7575ecc5454148be4c9d9b

@ -7,8 +7,8 @@ IUSE=+exif +flickr map +picasa +python python_targets_python2_6 python_targets_p
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/libpeas-0.7.4:= >=media-gfx/eog-3.5.5 >=x11-libs/gtk+-3.3.8:3 exif? ( >=media-libs/libexif-0.6.16 ) flickr? ( media-gfx/postr ) map? ( media-libs/libchamplain:0.12[gtk] >=media-libs/clutter-1.9.4:1.0 >=media-libs/clutter-gtk-1.1.2:1.0 ) picasa? ( >=dev-libs/libgdata-0.9.1:= ) python? ( python_single_target_python2_6? ( dev-lang/python:2.6 ) python_single_target_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-libs/libpeas:=[gtk,python,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pygobject:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] gnome-base/gsettings-desktop-schemas media-gfx/eog[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] )
REQUIRED_USE=map? ( exif )
REQUIRED_USE=map? ( exif ) python? ( python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) )
SLOT=0
SRC_URI=mirror://gnome/sources/eog-plugins/3.8/eog-plugins-3.8.1.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=ff01974a6f7fdbad50d3d8b8150f2ede
_md5_=4611f8748712b4b8a684e296a0d9af07

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=dev-libs/glib-2.35.1:2 gnome-base/gnome-desktop:3= media-libs/fontconfig:1.0 media-libs/freetype:2 x11-libs/cairo >=x11-libs/gtk+-3.0.3:3 x11-libs/pango >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=dev-libs/glib-2.35.1:2 gnome-base/gnome-desktop:3= media-libs/fontconfig:1.0 media-libs/freetype:2 x11-libs/cairo >=x11-libs/gtk+-3.7.10:3 x11-libs/pango >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DESCRIPTION=Font viewer for GNOME 3
EAPI=5
HOMEPAGE=https://live.gnome.org/GnomeUtils
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux
LICENSE=GPL-2+ LGPL-2.1+
RDEPEND=>=dev-libs/glib-2.35.1:2 gnome-base/gnome-desktop:3= media-libs/fontconfig:1.0 media-libs/freetype:2 x11-libs/cairo >=x11-libs/gtk+-3.0.3:3 x11-libs/pango !<gnome-base/gnome-control-center-2.91 !<gnome-extra/gnome-utils-3.4
RDEPEND=>=dev-libs/glib-2.35.1:2 gnome-base/gnome-desktop:3= media-libs/fontconfig:1.0 media-libs/freetype:2 x11-libs/cairo >=x11-libs/gtk+-3.7.10:3 x11-libs/pango !<gnome-base/gnome-control-center-2.91 !<gnome-extra/gnome-utils-3.4
SLOT=0
SRC_URI=mirror://gnome/sources/gnome-font-viewer/3.8/gnome-font-viewer-3.8.0.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=fe3f2ddc02e7efb0c1f78cac87007feb
_md5_=4410d8e1d45ea023200b439376f496ce

@ -1,12 +1,12 @@
DEFINED_PHASES=install postinst setup
DEPEND=dev-java/sun-jre-bin
DEPEND=dev-java/oracle-jre-bin
DESCRIPTION=ReplicatorG is a simple, open source 3D printing program
EAPI=3
HOMEPAGE=http://replicat.org/start
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=dev-java/sun-jre-bin
RDEPEND=dev-java/oracle-jre-bin
SLOT=0
SRC_URI=http://replicatorg.googlecode.com/files/replicatorg-0037-linux.tgz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=28c9478e13754b9443a58210dfc03a72
_md5_=68a0c2d123e24f8bfcb7a653c57133c4

@ -1,11 +1,11 @@
DEFINED_PHASES=install postinst setup
DEPEND=dev-java/sun-jre-bin
DEPEND=dev-java/oracle-jre-bin
DESCRIPTION=ReplicatorG is a simple, open source 3D printing program
EAPI=3
HOMEPAGE=http://replicat.org/start
LICENSE=GPL-2
RDEPEND=dev-java/sun-jre-bin
RDEPEND=dev-java/oracle-jre-bin
SLOT=0
SRC_URI=http://replicatorg.googlecode.com/files/replicatorg-0040-linux.tgz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=b838ce7504f75252240a8150c9fbfa7f
_md5_=744d7cb55ab44bbf5b90850e3aa3a199

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack
DEPEND=>=dev-libs/glib-2.33:2 >=x11-libs/gdk-pixbuf-2.23.0:2 >=x11-libs/gtk+-3.5.2:3[introspection?] >=dev-libs/totem-pl-parser-2.32.4[introspection?] >=dev-libs/libpeas-1.1.0[gtk] >=x11-themes/gnome-icon-theme-2.16 x11-libs/cairo >=dev-libs/libxml2-2.6:2 >=media-libs/clutter-1.10:1.0 >=media-libs/clutter-gst-1.5.5:2.0 >=media-libs/clutter-gtk-1.0.2:1.0 x11-libs/mx:1.0 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0[X,introspection?,pango] >=media-libs/gst-plugins-bad-1.0.2:1.0 media-libs/gst-plugins-good:1.0 media-plugins/gst-plugins-taglib:1.0 media-plugins/gst-plugins-meta:1.0 x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXxf86vm-1.0.1 gnome-base/gsettings-desktop-schemas x11-themes/gnome-icon-theme-symbolic flash? ( dev-libs/totem-pl-parser[quvi] ) grilo? ( media-libs/grilo:0.2 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) lirc? ( app-misc/lirc ) nautilus? ( >=gnome-base/nautilus-2.91.3 ) nsplugin? ( >=dev-libs/dbus-glib-0.82 >=x11-misc/shared-mime-info-0.22 ) python? ( python_single_target_python2_6? ( dev-lang/python:2.6[threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pyxdg[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/dbus-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=x11-libs/gtk+-2.91.7:3[introspection] ) zeitgeist? ( dev-libs/libzeitgeist ) app-text/docbook-xml-dtd:4.5 app-text/scrollkeeper app-text/yelp-tools >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.40 sys-devel/gettext x11-proto/xextproto x11-proto/xproto virtual/pkgconfig test? ( python? ( dev-python/pylint ) ) app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=dev-libs/glib-2.33:2 >=x11-libs/gdk-pixbuf-2.23.0:2 >=x11-libs/gtk+-3.7.10:3[introspection?] >=dev-libs/totem-pl-parser-2.32.4[introspection?] >=dev-libs/libpeas-1.1.0[gtk] >=x11-themes/gnome-icon-theme-2.16 x11-libs/cairo >=dev-libs/libxml2-2.6:2 >=media-libs/clutter-1.10:1.0 >=media-libs/clutter-gst-1.5.5:2.0 >=media-libs/clutter-gtk-1.0.2:1.0 x11-libs/mx:1.0 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0[X,introspection?,pango] >=media-libs/gst-plugins-bad-1.0.2:1.0 media-libs/gst-plugins-good:1.0 media-plugins/gst-plugins-taglib:1.0 media-plugins/gst-plugins-meta:1.0 x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXxf86vm-1.0.1 gnome-base/gsettings-desktop-schemas x11-themes/gnome-icon-theme-symbolic flash? ( dev-libs/totem-pl-parser[quvi] ) grilo? ( media-libs/grilo:0.2 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) lirc? ( app-misc/lirc ) nautilus? ( >=gnome-base/nautilus-2.91.3 ) nsplugin? ( >=dev-libs/dbus-glib-0.82 >=x11-misc/shared-mime-info-0.22 ) python? ( python_single_target_python2_6? ( dev-lang/python:2.6[threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pyxdg[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/dbus-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=x11-libs/gtk+-2.91.7:3[introspection] ) zeitgeist? ( dev-libs/libzeitgeist ) app-text/docbook-xml-dtd:4.5 app-text/scrollkeeper app-text/yelp-tools >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.40 sys-devel/gettext x11-proto/xextproto x11-proto/xproto virtual/pkgconfig test? ( python? ( dev-python/pylint ) ) app-arch/xz-utils >=sys-apps/sed-4
DESCRIPTION=Media player for GNOME
EAPI=5
HOMEPAGE=http://projects.gnome.org/totem/
IUSE=flash grilo +introspection lirc nautilus nsplugin +python test zeitgeist debug python_targets_python2_6 python_targets_python2_7 python_single_target_python2_6 python_single_target_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
LICENSE=GPL-2+ LGPL-2+
RDEPEND=>=dev-libs/glib-2.33:2 >=x11-libs/gdk-pixbuf-2.23.0:2 >=x11-libs/gtk+-3.5.2:3[introspection?] >=dev-libs/totem-pl-parser-2.32.4[introspection?] >=dev-libs/libpeas-1.1.0[gtk] >=x11-themes/gnome-icon-theme-2.16 x11-libs/cairo >=dev-libs/libxml2-2.6:2 >=media-libs/clutter-1.10:1.0 >=media-libs/clutter-gst-1.5.5:2.0 >=media-libs/clutter-gtk-1.0.2:1.0 x11-libs/mx:1.0 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0[X,introspection?,pango] >=media-libs/gst-plugins-bad-1.0.2:1.0 media-libs/gst-plugins-good:1.0 media-plugins/gst-plugins-taglib:1.0 media-plugins/gst-plugins-meta:1.0 x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXxf86vm-1.0.1 gnome-base/gsettings-desktop-schemas x11-themes/gnome-icon-theme-symbolic flash? ( dev-libs/totem-pl-parser[quvi] ) grilo? ( media-libs/grilo:0.2 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) lirc? ( app-misc/lirc ) nautilus? ( >=gnome-base/nautilus-2.91.3 ) nsplugin? ( >=dev-libs/dbus-glib-0.82 >=x11-misc/shared-mime-info-0.22 ) python? ( python_single_target_python2_6? ( dev-lang/python:2.6[threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pyxdg[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/dbus-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=x11-libs/gtk+-2.91.7:3[introspection] ) zeitgeist? ( dev-libs/libzeitgeist )
RDEPEND=>=dev-libs/glib-2.33:2 >=x11-libs/gdk-pixbuf-2.23.0:2 >=x11-libs/gtk+-3.7.10:3[introspection?] >=dev-libs/totem-pl-parser-2.32.4[introspection?] >=dev-libs/libpeas-1.1.0[gtk] >=x11-themes/gnome-icon-theme-2.16 x11-libs/cairo >=dev-libs/libxml2-2.6:2 >=media-libs/clutter-1.10:1.0 >=media-libs/clutter-gst-1.5.5:2.0 >=media-libs/clutter-gtk-1.0.2:1.0 x11-libs/mx:1.0 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0[X,introspection?,pango] >=media-libs/gst-plugins-bad-1.0.2:1.0 media-libs/gst-plugins-good:1.0 media-plugins/gst-plugins-taglib:1.0 media-plugins/gst-plugins-meta:1.0 x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXxf86vm-1.0.1 gnome-base/gsettings-desktop-schemas x11-themes/gnome-icon-theme-symbolic flash? ( dev-libs/totem-pl-parser[quvi] ) grilo? ( media-libs/grilo:0.2 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) lirc? ( app-misc/lirc ) nautilus? ( >=gnome-base/nautilus-2.91.3 ) nsplugin? ( >=dev-libs/dbus-glib-0.82 >=x11-misc/shared-mime-info-0.22 ) python? ( python_single_target_python2_6? ( dev-lang/python:2.6[threads] ) python_single_target_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/pygobject-2.90.3:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pyxdg[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/dbus-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=x11-libs/gtk+-2.91.7:3[introspection] ) zeitgeist? ( dev-libs/libzeitgeist )
REQUIRED_USE=flash? ( nsplugin ) python? ( introspection python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) ) zeitgeist? ( introspection )
SLOT=0
SRC_URI=mirror://gnome/sources/totem/3.8/totem-3.8.2.tar.xz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=347f4843e93421536648ea871c202098
_md5_=a536aed8a4ab50863067e87663f88474

@ -4,10 +4,10 @@ DESCRIPTION=Shoreline Firewall is an iptables-based firewall for Linux.
EAPI=4
HOMEPAGE=http://www.shorewall.net/
IUSE=doc
KEYWORDS=~alpha amd64 hppa ~ppc ~ppc64 ~sparc ~x86
KEYWORDS=alpha amd64 hppa ppc ppc64 sparc x86
LICENSE=GPL-2
RDEPEND=>=net-firewall/iptables-1.2.4 sys-apps/iproute2[-minimal] dev-lang/perl =net-firewall/shorewall-core-4.5.15
SLOT=0
SRC_URI=http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.15/shorewall-4.5.15.tar.bz2 doc? ( http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.15/shorewall-docs-html-4.5.15.tar.bz2 )
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=2ab0f0e894a6d6a1b1e52b68b83fb791
_md5_=f429206b51a5ff93bbf6496117b93a01

@ -4,10 +4,10 @@ DESCRIPTION=Core libraries of shorewall / shorewall(6)-lite
EAPI=4
HOMEPAGE=http://www.shorewall.net/
IUSE=selinux
KEYWORDS=~alpha amd64 hppa ~ppc ~ppc64 ~sparc ~x86
KEYWORDS=alpha amd64 hppa ppc ppc64 sparc x86
LICENSE=GPL-2
RDEPEND=>=net-firewall/iptables-1.2.4 sys-apps/iproute2[-minimal] dev-lang/perl dev-perl/Digest-SHA1 !<net-firewall/shorewall-4.5.0.1 selinux? ( sec-policy/selinux-shorewall )
SLOT=0
SRC_URI=http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.15/shorewall-core-4.5.15.tar.bz2
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=24580487fcab01d58d4210733f3338d4
_md5_=35389f021af6e2edfbc3bcc10be2706a

@ -3,10 +3,10 @@ DESCRIPTION=An iptables-based firewall whose config is handled by a normal Shore
EAPI=4
HOMEPAGE=http://www.shorewall.net/
IUSE=doc
KEYWORDS=~alpha amd64 hppa ~ppc ~ppc64 ~sparc ~x86
KEYWORDS=alpha amd64 hppa ppc ppc64 sparc x86
LICENSE=GPL-2
RDEPEND=net-firewall/iptables sys-apps/iproute2 =net-firewall/shorewall-core-4.5.15
SLOT=0
SRC_URI=http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.15/shorewall-lite-4.5.15.tar.bz2 doc? ( http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.15/shorewall-docs-html-4.5.15.tar.bz2 )
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=2efe0b1d0b0e997b7de29e488d5941b0
_md5_=b5551c00a630076e052cec65d736f876

@ -3,10 +3,10 @@ DESCRIPTION=Shoreline Firewall with IPv6 support.
EAPI=4
HOMEPAGE=http://www.shorewall.net/
IUSE=doc
KEYWORDS=~alpha amd64 hppa ~ppc ~ppc64 ~sparc ~x86
KEYWORDS=alpha amd64 hppa ppc ppc64 sparc x86
LICENSE=GPL-2
RDEPEND=>=net-firewall/iptables-1.4.0 sys-apps/iproute2 >=net-firewall/shorewall-4.5.15 dev-perl/Socket6
SLOT=0
SRC_URI=http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.15/shorewall6-4.5.15.tar.bz2 doc? ( http://www1.shorewall.net/pub/shorewall6/4.5/shorewall-4.5.15/shorewall-docs-html-4.5.15.tar.bz2 )
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=365883a277353a868b6c79e4d0606eab
_md5_=517c351b61367292f1ed55a3cd14adc9

@ -3,10 +3,10 @@ DESCRIPTION=An iptables-based firewall whose config is handled by a normal Shore
EAPI=4
HOMEPAGE=http://www.shorewall.net/
IUSE=doc
KEYWORDS=~alpha amd64 hppa ~sparc ~x86
KEYWORDS=alpha amd64 hppa sparc x86
LICENSE=GPL-2
RDEPEND=>=net-firewall/iptables-1.4.0 sys-apps/iproute2 =net-firewall/shorewall-core-4.5.15
SLOT=0
SRC_URI=http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.15/shorewall6-lite-4.5.15.tar.bz2 doc? ( http://www1.shorewall.net/pub/shorewall/4.5/shorewall-4.5.15/shorewall-docs-html-4.5.15.tar.bz2 )
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=7757803a5b01d3bdc2a16eab6c491dc2
_md5_=ae68da38ede499fcadbc43ff558747ff

@ -1,5 +1,5 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
DEPEND=>=dev-libs/glib-2.28:2 >=sys-apps/dbus-1.1 >=dev-libs/dbus-glib-0.82 >=net-libs/telepathy-glib-0.19.2[introspection?] dev-libs/libxml2 dev-libs/libxslt dev-db/sqlite:3 introspection? ( >=dev-libs/gobject-introspection-0.9.6 ) || ( dev-lang/python:2.7 dev-lang/python:2.6 dev-lang/python:2.5 ) dev-util/gtk-doc-am >=dev-util/intltool-0.35 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost )
DEPEND=>=dev-libs/glib-2.28:2 >=sys-apps/dbus-1.1 >=dev-libs/dbus-glib-0.82 >=net-libs/telepathy-glib-0.19.2[introspection?] dev-libs/libxml2 dev-libs/libxslt dev-db/sqlite:3 introspection? ( >=dev-libs/gobject-introspection-0.9.6 ) || ( dev-lang/python:2.7 dev-lang/python:2.6 dev-lang/python:2.5 ) >=dev-util/gtk-doc-am-1.10 >=dev-util/intltool-0.35 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost )
DESCRIPTION=Telepathy Logger is a session daemon that should be activated whenever telepathy is being used.
EAPI=5
HOMEPAGE=http://telepathy.freedesktop.org/wiki/Logger
@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/glib-2.28:2 >=sys-apps/dbus-1.1 >=dev-libs/dbus-glib-0.82 >=n
SLOT=0/3
SRC_URI=http://telepathy.freedesktop.org/releases/telepathy-logger/telepathy-logger-0.8.0.tar.bz2
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 7976d3f4d0c0816c67033d3dcd4d9472 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-any-r1 7ed4a8181d62a098eaa6c8eeacf190c9 python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86
_md5_=3b90f90e1e01457df6e3c7b93e490143
_md5_=666497a2df990d3d750890752f5bd50b

@ -0,0 +1,10 @@
DEFINED_PHASES=compile install prepare
DESCRIPTION=A parser for HTTP messages written in C. It parses both requests and responses
EAPI=5
HOMEPAGE=https://github.com/joyent/http-parser
KEYWORDS=~amd64 ~x86
LICENSE=MIT
SLOT=0
SRC_URI=https://github.com/joyent/http-parser/archive/v2.1.tar.gz -> http-parser-2.1.tar.gz
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=e931022a33dd6dc5f5934e43bf395da0

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare setup test
DEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?,python_single_target_python3_3(+)?] test? ( dev-python/nose[coverage(+)] ) python_single_target_python2_6? ( dev-lang/python:2.6 ) python_single_target_python2_7? ( dev-lang/python:2.7 ) python_single_target_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?,python_single_target_python3_3(+)?]
DESCRIPTION=Download videos from YouTube.com (and mores sites...)
EAPI=5
HOMEPAGE=http://rg3.github.com/youtube-dl/
IUSE=offensive test python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3
KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=public-domain
RDEPEND=python_single_target_python2_6? ( dev-lang/python:2.6 ) python_single_target_python2_7? ( dev-lang/python:2.7 ) python_single_target_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?,python_single_target_python3_3(+)?]
REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 )
SLOT=0
SRC_URI=http://youtube-dl.org/downloads/2013.06.34.4/youtube-dl-2013.06.34.4.tar.gz
_eclasses_=bash-completion-r1 5deec68e4713fd23ce30d4d9ed712908 distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=7f911e0e2a2b0ae6d7eeba27ec81b8e8

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save