Sync with portage [Tue Jul 14 08:41:13 MSK 2015].

mhiretskiy
root 9 years ago
parent 966662e1c3
commit b826abf67c

@ -0,0 +1,89 @@
From 49f97664d7fdfc7914245cb26f660cbedd36afa4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= <ballogyor@gmail.com>
Date: Thu, 2 Oct 2014 14:29:01 +0200
Subject: [PATCH] Use Caja GSettings schema optionally
Excludes changes to glib version in configure.ac
This makes Caja dependency optional.
Closes https://github.com/mate-desktop/engrampa/pull/60
---
configure.ac | 2 +-
src/fr-window.c | 34 ++++++++++++++++++++++++----------
2 files changed, 25 insertions(+), 11 deletions(-)
diff --git a/src/fr-window.c b/src/fr-window.c
index f9ceef8..6994066 100644
--- a/src/fr-window.c
+++ b/src/fr-window.c
@@ -638,7 +638,9 @@ fr_window_free_private_data (FrWindow *window)
_g_object_unref (window->priv->settings_ui);
_g_object_unref (window->priv->settings_general);
_g_object_unref (window->priv->settings_dialogs);
- _g_object_unref (window->priv->settings_caja);
+
+ if (window->priv->settings_caja)
+ _g_object_unref (window->priv->settings_caja);
}
@@ -4598,11 +4600,13 @@ static gboolean
is_single_click_policy (FrWindow *window)
{
char *value;
- gboolean result;
+ gboolean result = FALSE;
- value = g_settings_get_string (window->priv->settings_caja, CAJA_CLICK_POLICY);
- result = (value != NULL) && (strncmp (value, "single", 6) == 0);
- g_free (value);
+ if (window->priv->settings_caja) {
+ value = g_settings_get_string (window->priv->settings_caja, CAJA_CLICK_POLICY);
+ result = (value != NULL) && (strncmp (value, "single", 6) == 0);
+ g_free (value);
+ }
return result;
}
@@ -5384,6 +5388,8 @@ fr_window_construct (FrWindow *window)
GtkToolItem *open_recent_tool_item;
GtkWidget *menu_item;
GError *error = NULL;
+ GSettingsSchemaSource *schema_source;
+ GSettingsSchema *caja_schema;
/* data common to all windows. */
@@ -5401,7 +5407,13 @@ fr_window_construct (FrWindow *window)
window->priv->settings_ui = g_settings_new (ENGRAMPA_SCHEMA_UI);
window->priv->settings_general = g_settings_new (ENGRAMPA_SCHEMA_GENERAL);
window->priv->settings_dialogs = g_settings_new (ENGRAMPA_SCHEMA_DIALOGS);
- window->priv->settings_caja = g_settings_new (CAJA_SCHEMA);
+
+ schema_source = g_settings_schema_source_get_default ();
+ caja_schema = g_settings_schema_source_lookup (schema_source, CAJA_SCHEMA, FALSE);
+ if (caja_schema) {
+ window->priv->settings_caja = g_settings_new (CAJA_SCHEMA);
+ g_settings_schema_unref (caja_schema);
+ }
/* Create the application. */
@@ -5994,10 +6006,12 @@ fr_window_construct (FrWindow *window)
"changed::" PREF_LISTING_USE_MIME_ICONS,
G_CALLBACK (pref_use_mime_icons_changed),
window);
- g_signal_connect (window->priv->settings_caja,
- "changed::" CAJA_CLICK_POLICY,
- G_CALLBACK (pref_click_policy_changed),
- window);
+
+ if (window->priv->settings_caja)
+ g_signal_connect (window->priv->settings_caja,
+ "changed::" CAJA_CLICK_POLICY,
+ G_CALLBACK (pref_click_policy_changed),
+ window);
/* Give focus to the list. */

@ -1,2 +1,2 @@
DIST krop-0.4.6.tar.gz 30046 SHA256 31931fa06fbe6ee393f7a5441ca987e2daf5029c5ca5fccfa35877e906932b84 SHA512 537a20fbda0fdd9cf4f013285082c465226cc95dc013f1b6b3d3edd625bc06a35528538bc96dc7d521c5477135fa0a42376f2e687a505e04edd16b24581034aa WHIRLPOOL 94f80ede3be58b34e4cd81d28d1cc9c970c162638ee2a615d2e804a1641c1e372865e850979d99ab72591817ad9115c9faaa537e5a3180c7727427800c32f45e
DIST krop-0.4.7.tar.gz 34559 SHA256 fd44f83437ef6a1cb2933ab94e78385f9d7dd7b271d24549eadea700d93b84af SHA512 b38973b2084d1ac05d71e842137793d3569a1d46668e506e8a58eac4f7bd366db177d9f8af8243ed13cfe6f73885e0998ad91a1ded4c02f6d0d0102809476d10 WHIRLPOOL ecdf833981b922de9acee9ddc1467cfc056b91766ef8f4dcfc4b98b5b63fb55924f9df3d6aa3ac99a82ef86f2f8ef608ce7b2d62c52930d059a53b0121932d52
DIST krop-0.4.8.tar.gz 34948 SHA256 71668fe54820ad11dc47f8caddc56e0d2553975e768bd724f26fa5f5389b0aab SHA512 440a3dff6c13eb83dc9ccbbcf672a297d66d66fbf9508e3c6ceda3b043868102afb1df3401fcf06adbea1baea92444ad0dfa2fd8e74b2d993c9fe4903c9327a1 WHIRLPOOL 65aa1d73dca26d3522d1bdf75501f25340487529057bdbbaeb90472d0d518e6e54a31e2b9f1f08c6037636cd83c4ef128444c519cafae3346c8e80489d7564dd

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/krop/krop-0.4.6.ebuild,v 1.2 2014/10/27 05:46:07 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/krop/krop-0.4.8.ebuild,v 1.1 2015/07/13 22:23:57 mrueg Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
@ -17,8 +17,8 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-python/python-poppler-qt4[${PYTHON_USEDEP}]
dev-python/pyPdf[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
dev-python/pyPdf[${PYTHON_USEDEP}]
dev-python/PyQt4[${PYTHON_USEDEP}]"
src_install() {
distutils-r1_src_install

@ -1 +1,2 @@
DIST jetspeed-2.0-src.tar.gz 31317896 SHA256 c32a336810d934e4a627210e13e751bcd9b4257aaea78410ee1fba0c4a71cac0 SHA512 26dc10670663f9cd1faf25a9a7ad03942acc69e7b3acebf0608a84f055d9dde5e38e6ee6bce917b3efe53fd2242d04286829fd5f793caba4ebf598d899b599e4 WHIRLPOOL 0ae444ae4174ed3a0dea90ff1574c9ccb4b5b0f1389946f06d817c3225c4aa6f4d85c4030b4ac305bfaced7d3b08857b756a3e7d4ccdbf95d604edfd23bf3b27
DIST portlet-api-2.0-sources.jar 124636 SHA256 bdba11e796e1370317e2587523925836edfb59cde438759210718fbe1d72694a SHA512 cf02030850d746b19b85bb3aa204fa7602af47fdda70d5be4c317dea01939abce96915d08186ac876b3081cd8023687e9c4bcef6f4f9a28e8a3456eaa56c8d8f WHIRLPOOL e5892a6dc6407cf1583d6b43c26d7e6a97531ed9cb42e30306638c8acd725e7df09bea744688fa2a3f8a74bd0b189a388cfd1be387fa354184565063f167c457

@ -0,0 +1,40 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/portletapi/portletapi-2.0.ebuild,v 1.1 2015/07/13 17:26:10 monsieurp Exp $
EAPI=5
inherit java-pkg-2 java-pkg-simple
MY_PN="portlet-api"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Portlet API 2.0 developed by the Java Community Process JSR-286"
HOMEPAGE="https://jcp.org/en/jsr/detail?id=286"
SRC_URI="http://mirrors.ibiblio.org/maven2/javax/portlet/${PN}/${PV}/${MY_P}-sources.jar"
LICENSE="Apache-2.0"
SLOT="2.0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
CDEPEND="dev-java/tomcat-servlet-api:3.0"
RDEPEND=">=virtual/jre-1.6
${CDEPEND}"
DEPEND=">=virtual/jdk-1.6
app-arch/unzip
${CDEPEND}"
JAVA_PKG_WANT_SOURCE="1.7"
JAVA_PKG_WANT_TARGET="1.7"
JAVA_SRC_DIR="src"
JAVA_ENCODING="ISO-8859-1"
JAVA_GENTOO_CLASSPATH="tomcat-servlet-api-3.0"
java_prepare() {
mkdir src || die
mv * src
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild,v 1.6 2015/04/08 17:51:55 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild,v 1.7 2015/07/13 18:08:58 zlogene Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/boost/${MY_P}.tar.bz2"
LICENSE="Boost-1.0"
SLOT="0/${PV}" # ${PV} instead ${MAJOR_V} due to bug 486122
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt"
IUSE="context debug doc icu +nls mpi python static-libs +threads tools"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild,v 1.1 2015/07/05 20:06:58 reavertm Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/injeqt/injeqt-1.0.0.ebuild,v 1.2 2015/07/14 00:42:24 reavertm Exp $
EAPI=5
@ -24,6 +24,7 @@ DEPEND="${RDEPEND}
src_configure() {
local mycmakeargs=(
-DDISABLE_EXAMPLES=ON
$(cmake-utils_use_disable test TESTS)
)
cmake-utils_src_configure

@ -0,0 +1,28 @@
libcgroup-internal.h: reorder the header stacking.
`man 3 fts` not only specifies the headers to be included, but
also the order. <fts.h> must be included after <sys/types.h>
and <sys/stats.h>. On glibc and uClibc systems, an incorrect
order does not pose a problem, but on musl this leads to undefine
types such as dev_t and friends.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
diff -Naur libcgroup-0.41.orig/src/libcgroup-internal.h libcgroup-0.41/src/libcgroup-internal.h
--- libcgroup-0.41.orig/src/libcgroup-internal.h 2015-07-13 21:08:26.740965713 -0400
+++ libcgroup-0.41/src/libcgroup-internal.h 2015-07-13 21:09:40.774962164 -0400
@@ -21,12 +21,12 @@
#endif
#include "config.h"
-#include <fts.h>
#include <libcgroup.h>
#include <limits.h>
#include <pthread.h>
-#include <sys/stat.h>
#include <sys/types.h>
+#include <sys/stat.h>
+#include <fts.h>
#include <setjmp.h>
/* Maximum number of mount points/controllers */

@ -0,0 +1,74 @@
Replace INCLUDES with AM_CPPFLAGS in Makefile.am
We replace the deprecated INCLUDES with AM_CPPFLAGS in all
Makefile.am's.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
diff -Naur libcgroup-0.41.orig/src/Makefile.am libcgroup-0.41/src/Makefile.am
--- libcgroup-0.41.orig/src/Makefile.am 2014-01-13 14:05:56.000000000 +0000
+++ libcgroup-0.41/src/Makefile.am 2015-07-13 14:36:38.922428040 +0000
@@ -9,7 +9,7 @@
CLEANFILES = lex.c parse.c parse.h
-INCLUDES = -I$(top_srcdir)/include
+AM_CPPFLAGS = -I$(top_srcdir)/include
lib_LTLIBRARIES = libcgroup.la
libcgroup_la_SOURCES = parse.h parse.y lex.l api.c config.c libcgroup-internal.h libcgroup.map wrapper.c log.c
libcgroup_la_LIBADD = -lpthread
diff -Naur libcgroup-0.41.orig/src/bindings/Makefile.am libcgroup-0.41/src/bindings/Makefile.am
--- libcgroup-0.41.orig/src/bindings/Makefile.am 2014-01-13 14:05:56.000000000 +0000
+++ libcgroup-0.41/src/bindings/Makefile.am 2015-07-13 14:37:12.267428146 +0000
@@ -1,5 +1,5 @@
SUBDIRS = .
-INCLUDES = -I$(top_srcdir)/include
+AM_CPPFLAGS = -I$(top_srcdir)/include
lib_LTLIBRARIES = _libcgroup.la
_libcgroup_la_SOURCES = libcgroup.c
@@ -11,5 +11,5 @@
libcgroup.c: libcgroup.p $(top_srcdir)/include/libcgroup.h
cp libcgroup.p libcgroup.i
- $(CC) $(INCLUDES) -DSWIG -E $(top_srcdir)/include/libcgroup.h >> libcgroup.i
+ $(CC) $(CPPFLAGS) -DSWIG -E $(top_srcdir)/include/libcgroup.h >> libcgroup.i
$(SWIG) -python -o libcgroup.c libcgroup.i
diff -Naur libcgroup-0.41.orig/src/daemon/Makefile.am libcgroup-0.41/src/daemon/Makefile.am
--- libcgroup-0.41.orig/src/daemon/Makefile.am 2014-01-13 14:05:56.000000000 +0000
+++ libcgroup-0.41/src/daemon/Makefile.am 2015-07-13 14:36:55.781428093 +0000
@@ -1,4 +1,4 @@
-INCLUDES = -I $(top_srcdir)/include
+AM_CPPFLAGS = -I $(top_srcdir)/include
if WITH_DAEMON
diff -Naur libcgroup-0.41.orig/src/pam/Makefile.am libcgroup-0.41/src/pam/Makefile.am
--- libcgroup-0.41.orig/src/pam/Makefile.am 2014-01-13 14:05:56.000000000 +0000
+++ libcgroup-0.41/src/pam/Makefile.am 2015-07-13 14:36:28.768428007 +0000
@@ -1,4 +1,4 @@
-INCLUDES = -I $(top_srcdir)/include
+AM_CPPFLAGS = -I $(top_srcdir)/include
if WITH_PAM
diff -Naur libcgroup-0.41.orig/src/tools/Makefile.am libcgroup-0.41/src/tools/Makefile.am
--- libcgroup-0.41.orig/src/tools/Makefile.am 2014-01-13 14:05:56.000000000 +0000
+++ libcgroup-0.41/src/tools/Makefile.am 2015-07-13 14:36:19.098427976 +0000
@@ -1,4 +1,4 @@
-INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/include
+AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/include
LDADD = $(top_builddir)/src/.libs/libcgroup.la
if WITH_TOOLS
diff -Naur libcgroup-0.41.orig/tests/Makefile.am libcgroup-0.41/tests/Makefile.am
--- libcgroup-0.41.orig/tests/Makefile.am 2014-01-13 14:05:56.000000000 +0000
+++ libcgroup-0.41/tests/Makefile.am 2015-07-13 14:37:23.146428181 +0000
@@ -1,6 +1,6 @@
SUBDIRS = tools
-INCLUDES = -I$(top_srcdir)/include
+AM_CPPFLAGS = -I$(top_srcdir)/include
LDADD = $(top_builddir)/src/.libs/libcgroup.la
# compile the tests, but do not install them

@ -1,12 +1,10 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/libcgroup-0.41-r1.ebuild,v 1.1 2015/07/12 17:03:40 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/libcgroup-0.41-r1.ebuild,v 1.2 2015/07/14 01:11:23 blueness Exp $
EAPI="5"
AUTOTOOLS_AUTORECONF=1
inherit eutils linux-info pam autotools-utils
inherit autotools eutils flag-o-matic linux-info pam
DESCRIPTION="Tools and libraries to configure and manage kernel control groups"
HOMEPAGE="http://libcg.sourceforge.net/"
@ -15,7 +13,7 @@ SRC_URI="mirror://sourceforge/project/libcg/${PN}/v${PV}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="+daemon pam static-libs +tools"
IUSE="+daemon elibc_musl pam static-libs +tools"
RDEPEND="pam? ( virtual/pam )"
@ -23,6 +21,7 @@ DEPEND="
${RDEPEND}
sys-devel/bison
sys-devel/flex
elibc_musl? ( sys-libs/fts-standalone )
"
REQUIRED_USE="daemon? ( tools )"
@ -37,6 +36,8 @@ pkg_setup() {
src_prepare() {
epatch "${FILESDIR}"/${P}-replace_DECLS.patch
epatch "${FILESDIR}"/${P}-replace_INLCUDES.patch
epatch "${FILESDIR}"/${P}-reorder-headers.patch
# Change rules file location
sed -e 's:/etc/cgrules.conf:/etc/cgroup/cgrules.conf:' \
@ -45,7 +46,7 @@ src_prepare() {
-i src/pam/Makefile.am || die "sed failed"
sed -e 's#/var/run#/run#g' -i configure.in || die "sed failed"
autotools-utils_src_prepare
eautoreconf
}
src_configure() {
@ -55,13 +56,12 @@ src_configure() {
my_conf=" --enable-pam-module-dir=$(getpam_mod_dir) "
fi
local myeconfargs=(
$(use_enable daemon)
$(use_enable pam)
$(use_enable tools)
use elibc_musl && append-ldflags "-lfts"
econf \
$(use_enable daemon) \
$(use_enable pam) \
$(use_enable tools) \
${my_conf}
)
autotools-utils_src_configure
}
src_test() {
@ -72,7 +72,6 @@ src_test() {
}
src_install() {
autotools-utils_src_install
prune_libtool_files --all
insinto /etc/cgroup

@ -1,2 +1,3 @@
DIST async-112.17.00.tar.gz 82486 SHA256 2fa90908a87d4c12d9691a91da48b4c2e5484f770b24362618d97f111baae993 SHA512 3778f28f8ce88e32e72198ca0fd66a4727a12975f1ef6b6ed0ed09a06838d3ffc9b0004801d88b37194d428c61960be8ce369f1ccf14a6c7e556858b81aebfa5 WHIRLPOOL ec148889b63fcd3622581b2c3885e3b40f20f8d478c062810009454ae14ba82f546976d746b1388e017a43486ffc7c577c9b155b493bdac7f41c680fb5d4db43
DIST async-112.24.tar.gz 82542 SHA256 ecc4ca939ab098e689332921b110dbaacd06d9f8d8bf697023dfff3ca37dc1e9 SHA512 985e70117c057d4117ef64acdbf6bf4ac8b08c0910b2bacd879ad2646a1b730d7071bdfca4b6fc71a3995a629833cc1b092bc0f7176d34f477081a6827bd02ef WHIRLPOOL a450fc78c9ea4bdf85612ca871a34ce0682d8d7b535cb7cc52cb93407ae1130d563a6566fb2e5c8350e073e2555b5df57c99ae4d1d4afcabcb0d32d7b969f36e
DIST async-112.35.00.tar.gz 88263 SHA256 95228894bba807f1c3537530b8008d9c91a58708936d1f5c2101561b16125d85 SHA512 585585eee879d5f2f67ca2dbac520bc417deed2f867a870fa8d2d05da943b269f440983f983353f45c408998c8b5535c5a3b81ed0035d673bd656c416f96bf0b WHIRLPOOL 9dc8f92f65431b25fc7e322be2be4cb85473b55ec4ca8e2b5ee5f7b1dd0d4e6050cc78fe8017ff351b5bfb849f3d686e9fdd4c277ffe9c2adfbc90972fdf9aab

@ -0,0 +1,39 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async/async-112.35.00.ebuild,v 1.1 2015/07/13 18:27:13 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="examples"
RDEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/async_unix-${PV}:=
>=dev-ml/async_extra-${PV}:=
dev-ml/camlp4:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.0.2 dev-ml/core_bench dev-ml/pa_ounit )"
S="${WORKDIR}/${MY_P}"
src_install() {
oasis_src_install
if use examples ; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}

@ -1,2 +1,3 @@
DIST async_extra-112.17.00.tar.gz 157687 SHA256 97782934e98808e1e667c00f90ef08b6a55b6a462c86a2afefb0ee12189cecd8 SHA512 338a3ed19cd17c16739737c8854a40195912dfdccfb370aa39ec6d2c516f33a69ddb01115fe3616261f17578796a404330b3c6f99f8493b7969c5e3b1c67d397 WHIRLPOOL 8617d6dbb34c75051e5ab67c72f5a8545084ea3c7e3326e59ade777a644b8a37b0a9f20c5f2908a37e2047ac197c88b009c6a25ea4261a065df491263ef6a99a
DIST async_extra-112.24.tar.gz 161501 SHA256 51f6f67a9ad56fe5dcf09faeeca6ec2fea53a7a975a72bc80504b90841212e28 SHA512 9ac13275a3b004ce87f2858634e06e2e8ff0a6a014023af25571fbf3de8c18a5396c42df0c3df647be094d348f2a6fa911004d9e6a877827ce87c2f8fa16305d WHIRLPOOL ce5e7581d4ed320e35465b11da5978bdf335ab04bb72aac5e3416e66db01cf2f8cfdad79f2b4906de681cb270523c5c6625718bed2a836d38f2f4e84487273b2
DIST async_extra-112.35.00.tar.gz 145974 SHA256 2bb3683c6a8f9100f5fa09edcbd885a9253973f33a7ad6344fed10cd2aa5733c SHA512 25fc649d4272631068f4d19c472f13ed81645b321d1b80b498bdc7acd1070af8b0c4ddad08fba09b836b093d985cdd52e39ee672b949ff7085c66ee7599e6144 WHIRLPOOL f2cfa6ef0dfe64ee6f8fd5091b85cbc9918c46db54c8031575166c6c7d40e5e66f9cb3236db676a8426b2dc605a9e23f5495f681641105d783f7653fa9c22d8c

@ -0,0 +1,38 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_extra/async_extra-112.35.00.ebuild,v 1.1 2015/07/13 18:25:46 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (extra)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/pa_ounit-109.18.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/core-${PV}:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/async_unix-${PV}:=
dev-ml/custom_printf:=
dev-ml/herelib:=
dev-ml/pa_test:=
dev-ml/camlp4:=
dev-ml/async_rpc_kernel:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -1,2 +1,3 @@
DIST async_kernel-112.17.00.tar.gz 133837 SHA256 eaa99169345096e111a69beb229bdb1b0bc04c72db50837a1630a5852afe1464 SHA512 268a742fad491597635a53b4208730350f07e2b65cd8a6adaa17e9d862b3eefaed4a3badcb4c03cae2462882173d848d472dd1bdd9c0b041fe55814a28098b03 WHIRLPOOL fecc39757b0402cca04fb007ea9a8f6004cc350770a72f17b1ed2ab42a2ecd30fe38217c92924bef591958fd516c1896191a8c393b59f09844cc28536d8769bd
DIST async_kernel-112.24.tar.gz 135816 SHA256 95caf4249b55c5a6b38da56e314845e9ea9a0876eedd4cf0ddcb6c8dd660c6a0 SHA512 cf3bfc29147f37c03d5b9af55f6c71256cdc54b26c186303dd95675c541733b54fff5a816f57c682a9ec4f1e1d107ba8bbc92f7202a64de768eeb03c76eb4b3b WHIRLPOOL f452328b17a68e31f69cbaf1af6492788e98cffc3ccff79c81b78983694d197011d4d6d674b98f2b248bbcf6171c787cfeb5bfecf68b4ebd301ebf437e584a4b
DIST async_kernel-112.35.00.tar.gz 142997 SHA256 6bb859c7ca8b6d6766d4cb4ff40ecc91ecf70ae4224c95a455e5edffd244f448 SHA512 f4b726bb801f2e698c9184a109bbc3b5921adfe2c44d9d219de0049b4623985ec9e5bb3fe8928a9d6c34ca30ff5b0c13bb4681f271c16305e82c476af9c99919 WHIRLPOOL ae06b260f13755d97eca5681fc3a3d86af1660d552ac349c3373ac630583f1e3120c77884cf040b237e566b65dac2b6df1562095d1d6891b2db7f86453e3f42d

@ -0,0 +1,33 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_kernel/async_kernel-112.35.00.ebuild,v 1.1 2015/07/13 18:19:03 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (core)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/core-109.35.00:=
>=dev-ml/herelib-109.35.00:=
dev-ml/pa_test:=
dev-ml/camlp4:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -0,0 +1 @@
DIST async_rpc_kernel-112.35.00.tar.gz 79058 SHA256 1e24cb9aa3e6719a11bb24c3171ce256c029c20f7b5081ea8da5719693a4b542 SHA512 bb89e91e0ae66f9bb5d20144525fbda31b50e0cd65de91770b4757d999261a5960958c67061faccc079042602c89526cfdec99e3ed636e16f854128744835f3a WHIRLPOOL d4fe90f3e3da60908734bdc8515f311a1270fad87b89ec32fafa8612e66709156cc1ab7b37506d0a84d4b407c7947c7b98ee1b3caa772466f3be666a85702cd3

@ -0,0 +1,29 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_rpc_kernel/async_rpc_kernel-112.35.00.ebuild,v 1.1 2015/07/13 18:24:58 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Platform-independent core of Async RPC library"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND="dev-ml/camlp4:=
dev-ml/async_kernel:=
dev-ml/bin-prot:=
dev-ml/comparelib:=
dev-ml/core_kernel:=
dev-ml/custom_printf:=
dev-ml/fieldslib:=
dev-ml/pa_ounit:=
dev-ml/sexplib:="
RDEPEND="${DEPEND}"
DOCS=( "CHANGES.md" )

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
</pkgmetadata>

@ -1,2 +1,3 @@
DIST async_unix-112.17.00.tar.gz 158831 SHA256 45ef956f6d16190c50c78a6475b31289d6101f0c6bc67926fcd1d900eac373cb SHA512 b4c17418b2eb56c5ba7a56ec455c18656616f6dfc6d2b6b62e6b34dcd0670e5954d302c1568a8de72c55925e6b9699fe1865f5be4b6210b9091d81f03c9e0527 WHIRLPOOL ecbe09529171a991e09d08a76c8c4546ef3bd0ca4bac2eda243b38426e135c0a08c208e9ddd2676ecbbff2229f5130d963a9b9939ace4f2319cb830145969767
DIST async_unix-112.24.tar.gz 159597 SHA256 d490b1dc42f0987a131fa9695b55f215ad90cdaffbfac35b7f9f88f3834337ab SHA512 a6f7e2ce9e9c0e7d467b3cda1886f40f2580e7aa047bf0b772a9faf538f1398562123bf656563651d4feda983fdaa35592d2255deddc7d1a24b6dabc01c9bacf WHIRLPOOL 7503b29e307574eb9fd14d131311886c06f3d3744171533dcbe84fb5ca756613faccfa823e51523bfd1da478704e49e7cae1d0b9c329e6f365c62ec0a1d7c21d
DIST async_unix-112.35.00.tar.gz 161466 SHA256 111e38994b46a4b5ec141ef23fa556275a75c4c91c7ca576efeefdc301b303c4 SHA512 56e7d1a56f5c28ed4e1e23da6193dfc0481cf44960c7daf6b548980281113ca62be0e560502f7f006200bba59f2efff0d4066582a2872e8063fa64be0ce360c9 WHIRLPOOL 13fa515f7d554070de2d1aca654ae245961c85ad7b074c9aca9c8ec0998e2e04b3458e601d8726ea7e62201152d5f2bdefd63144bad8298f399e6021dc58d969

@ -0,0 +1,36 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_unix/async_unix-112.35.00.ebuild,v 1.1 2015/07/13 18:20:31 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (unix)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/herelib-109.15.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/core-${PV}:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/fieldslib-109.20.00:=
dev-ml/pa_test:=
dev-ml/camlp4:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -1,2 +1,3 @@
DIST bin_prot-112.17.00.tar.gz 94952 SHA256 cd09c9eb5c347dea2f58cc0986ff87f5f575b5b6a8365d0ec97391c7d90f5395 SHA512 e2e9b24e4fd7169024adb00c76ad6580c8fef9985e1447f94d89b374b46e79d51c4849412991a81b711d08f48b076d33a296a86aacb045bac46fcb4d2a9fcd8b WHIRLPOOL fb707a65a661cb665310163824778942d831ad003453647a4f5dea72a895faa74b2ec7e362940ca45065a9a3f7cb9bf11913474161c47e59f80b650683c5a1db
DIST bin_prot-112.24.tar.gz 95085 SHA256 dc0c978a825c7c123990af3317637c218f61079e6f35dc878260651084f1adb4 SHA512 4495349db1ad8a09a404c354415afc3c8f719ba8bd0e792aedef60c92b2f2222d91dba1cbf5d117cbd08ac14674d6cd1733667cab6f16a5cd738eca6d2ec4ef1 WHIRLPOOL c825db972508d404188ced258cb6d96d6c86140b4e12697586b3cdbd1997b4651ef1bb452edb92f44fec31afb17df952891a1fa4d475d33f8147cc131bf63eae
DIST bin_prot-112.35.00.tar.gz 97483 SHA256 e97034e9548fa669decc0d386f1b52952a645d0f70297389b60e78ddef35bbbf SHA512 7958e315fd16528bedcdee541b6c7cdc2e088eb79eec5fda676fa72d3b57ddd495f203ad9d27cddf50b5aa3d98b00737b217ae6932d21617ce82ec7a1c4ada8c WHIRLPOOL 509fc7d0fffc9d3ecceb71c389c3f630407897daf75e8fa19c229a43bb23813a767bc1018f873f79a57bc4564740d630f061a40fd459ee11a67fabdfc744197a

@ -0,0 +1,28 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/bin-prot-112.35.00.ebuild,v 1.1 2015/07/13 18:16:56 aballier Exp $
EAPI=5
OASIS_BUILD_TESTS=1
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="A binary protocol generator"
HOMEPAGE="http://ocaml.janestreet.com/?q=node/13"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="doc"
RDEPEND=">=dev-ml/type-conv-109.28.00:=
dev-ml/camlp4:="
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.2 )"
DOCS=( "README.md" "CHANGES.md" )
S="${WORKDIR}/${MY_P}"

@ -1,3 +1,4 @@
DIST core-112.17.00.tar.gz 755485 SHA256 61879c6401a1fd3ebda308584d7e8650fd8f9d745677cba5eb5a5fc16dd9c4a4 SHA512 6964c0310efec64cdfc17c5d77f562dda0280b4fba8eff9c9b8b1697d011f981263fec3748f0a3820b0b8e13690440eff08e52084e090f35593dd37761479258 WHIRLPOOL af290471b327f3434ac4b0e2fd9fae23eae0af984bc179993cacb8af46e0b51cf8fefaa00a1257df2055e37763eb9815a35ad4ea037579283f2fda1ce7c58ca1
DIST core-112.24.01.tar.gz 742585 SHA256 be5d53ebd4fd04ef23ebf9b3b2840c7aeced6bc4cc6cd3f5e89f71c9949000f4 SHA512 7672783da5aedfedf11d369ea58f7d32eecca0e99f17257bf2acf23d3f7517b3c86b53a3fa230c212fff211a489a98c47d248ed9ac4997784d2534848f8e2ce6 WHIRLPOOL 8f127eaf9891fb8ea60b49b3224e96b3afdfb8d80fb6ed929139bbb3b46f1e7af2d9b42b690cbb6fcf4648f41b149c3c431336ff7e15553c71616c766d93fbe0
DIST core-112.24.tar.gz 742439 SHA256 4e272f9f74e93dedf1a752a445b081fc971185d5322d365f151798c68595d13a SHA512 637400740a1152e4ba5986c820da4b128a5930a0b3d13158b1016fd32f9babec93f633af029e55ad258370833d6697437a59ec1c9fabd90ab1269a38f8197345 WHIRLPOOL 33cd226623c9df729abd614984ea819048c96396e757536cde8b8f4a190768f3f074790f6c5230d5df05a5e33f21b3b0c8e8a4c6a85acd8645716875c2d2138d
DIST core-112.35.00.tar.gz 755795 SHA256 d321c52b0e1e8e05e52a765590585d573b3bf8bd40c1a2eb423184a0954fa00b SHA512 4ea1d324ddebcb5a5faf6c5c82bd4d712e11b368b6c547f37b9d35201d35f20f38745a7e0676503abf8dbe38e9be34597795a0b92421d8dea268b09e421d0891 WHIRLPOOL 5f81044d44b9963d92751d3cfdce8e36c7269d291f3cc507afe3518e29cfbd7a476ee26b96ceeddc54b412bdd30a85f4d044faaa24563ff65f22e25cdd9e183f

@ -0,0 +1,41 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core/core-112.35.00.ebuild,v 1.1 2015/07/13 18:13:33 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit eutils oasis
MY_P=${P/_/\~}
DESCRIPTION="Jane Street's alternative to the standard library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core_kernel-109.35.00:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/variantslib-109.15.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/herelib-109.35.00:=
>=dev-ml/pipebang-109.15.00:=
dev-ml/custom_printf:=
dev-ml/pa_bench:=
dev-ml/pa_test:=
dev-ml/enumerate:=
dev-ml/camlp4:=
dev-ml/pa_structural_sexp:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.2 )"
DOCS=( "README.md" )

@ -1 +1,2 @@
DIST core_bench-112.17.00.tar.gz 78211 SHA256 d1f4789203964199d7b0623962e2dc44d1c582457b51f53145944fa31e468906 SHA512 fec5cb3e48a2067e5d395809bfa49ee1ecb923641092d0da040642f3ff364864ea307b23b407f5f5288b8fdc0fc5f406d4228403376d669af021a01410bf1ada WHIRLPOOL 03987a4833f5b85b34cc53ca5e2ca744988ca6c2a1ee7553c641227cfc5f683f3b0a7b84e8a40f18c286aa8c167981945235e0bd06969de914f4be3dfad7cb8b
DIST core_bench-112.35.00.tar.gz 78192 SHA256 c2e925078412e9859458c539324d137f0aede17bf1b485961a4019609b733535 SHA512 b0ce326c6d5a5e8e44cb05b147e07cf02efbc60a18f1f6e740d1bd58e01dd373f868c42599e7818d5c3c54899b6d429b1155d79f8009833a01f173fe69c7aafc WHIRLPOOL a45e28e72d515c7240c25431471dc78cab69c6059ed6253823c85a90b03a91e62b3ef5f4cf30631a35b791d9bc3ca73307d5a60f0bbae0c2bfa464af2875fcbd

@ -0,0 +1,29 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_bench/core_bench-112.35.00.ebuild,v 1.1 2015/07/13 18:15:22 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Micro-benchmarking library for OCaml"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
dev-ml/sexplib:=
dev-ml/textutils:=
dev-ml/pa_ounit:=
dev-ml/core:=
dev-ml/fieldslib:=
dev-ml/comparelib:=
dev-ml/camlp4:=
"
DEPEND="${RDEPEND}"
DOCS=( README.md )

@ -1,2 +1,3 @@
DIST core_extended-112.17.00.tar.gz 285815 SHA256 a60d2f2654a7d5b70b92059800addf1d593d2ac4bfea823143ff507a9615dde6 SHA512 8636ed21bf5377cc0e0aa036f988a34c3094a091ab6361e2d5d74ca0f75187bdcc19499b8323ee30969df950a2de1df4172e9f1e2bb2d6846c7d15fbcb830f5f WHIRLPOOL 16890fd8ff34fa60ba2888b72b0d6cdd7179347a959efa3483185bc77917a41048b5eeceb28373e876603166eec7e033755e3f7fb4e1c1b409967efc78ed9277
DIST core_extended-112.24.tar.gz 284025 SHA256 f87b0661b6c2cfb545ec61d1cb2ab1b9c4967b6ac14e651de41d3a6fb7f0f1e3 SHA512 0ed8cbbaf3dfc9045cf1c8e39f81cbc7a18532fa7da01409330df13c7cee24c2b595ed7f08f398dbf68975b8bcb27db28fc16e39981fc1908b26be5926a12ef1 WHIRLPOOL 46c984e482b7f6ca7ce2084549be8562fab6e2a8143cbf7e12c9c5b2a9a821a20ebb0002b879b3bf93812409ac9e30d817055b54c4052c0b5973e437fce52358
DIST core_extended-112.35.00.tar.gz 315031 SHA256 a14a23fab5674952518eeb9d42f69a02b97fc396e74cb2e2fe519cdad5cd9d7e SHA512 265b18fde3bd322113e75d4d733ad1ef3bb0123f6e53d057dd6075f75802914376f79e36bdd78579e2884a579154d7d142fe743de7870b86cf4e830e5189adc2 WHIRLPOOL 7f71d1e82e22aded600dfad0489ba9a6bedc609604840df9f48beabd80db04d61b6e246398c87ab6fc565a17be6e7ea488a88dba140d582cd8696a400d2b482c

@ -0,0 +1,37 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_extended/core_extended-112.35.00.ebuild,v 1.1 2015/07/13 18:14:13 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Jane Street's alternative to the standard library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/custom_printf-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/textutils-109.35.00:=
dev-ml/pa_test:=
dev-ml/re2:=
dev-ml/pa_bench:=
dev-ml/camlp4:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.0 )"

@ -1,3 +1,4 @@
DIST core_kernel-112.06.02.tar.gz 452217 SHA256 edb53c71dac1744e4d79c98bb4defc9703b22bc6ed3db6f5efc527ec91febac8 SHA512 36bddbebe943fea14f7e40c55939ee2004aa1b8d28efdea89c29808af5940553c2ea252e21a9c2a6bbb5c7210e24c3d320f67737ac988e6844d1cc4a4d6eeb87 WHIRLPOOL b75d7d165c43af0a8024275583b0dc9d40ce43528f36b9a3896fad5df131afa31b066d6cd78416f84468af60950c2cd7f0713c57a7b11afc6fc559376e5f5545
DIST core_kernel-112.17.00.tar.gz 458291 SHA256 18aa416e917e84c368f25ecb2e5e11c92e411310476db5ea67fd3352d5ef469c SHA512 6f586dec373d57ff9bc04be1fbaf265c4740a12dffd99ca3909a23056874f402e19ec61f30879f247c44715ccdbbfb1cc8d496256fd512ba78909b956a2ee1a7 WHIRLPOOL 940522269f21380fbd8b3c14151427ce82301f74df16f5499584d85d31dc96e9f6f7f3563a2471c598d0aa601e8678b3a33cdcc524c18c776b0571990162dffb
DIST core_kernel-112.24.tar.gz 498860 SHA256 93e1f21e35ade98a2bfbe45ba76eef4a8ad3fed97cdc0769f96e0fcc86d6a761 SHA512 2cc54e580dbcdfba76cdaca76531b1d161d85c686b7cae296cb0ef424f8b01da3af19e0b54ea29954dd2fd96ee797360a40a213a11869b11f28891271756cbd3 WHIRLPOOL 964db4c0760835083a1204655be3b7982813b0e2aa59b02a4142e65bc6568737d1b57d2a8cacb0ab33376e3464630cba8b55dcda08ba680142b16961d668fbec
DIST core_kernel-112.35.00.tar.gz 513245 SHA256 792303cb06fa580c2c0fa25589e19be8f08714850db86d0077b1712bfe0ef662 SHA512 abdc16bb9eea9af7e322e190a0d229f95bb99fdc6f721f485663e59ba16f15cab5a2d2507721e53e71351051268b3f3fe487fc9e1579564020a81d79a1aeb175 WHIRLPOOL 2e7bc43fe1087380f0ae0b5efbce620ecd4e6160d124db14767be65183904b63fb19a9cf13c144e6745a11f1e8694ee1fc9084bcefd7cc36838de118681b8d35

@ -0,0 +1,42 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_kernel/core_kernel-112.35.00.ebuild,v 1.1 2015/07/13 18:12:46 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="System-independent part of Core"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/bin-prot-112.17.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/herelib-109.35.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/variantslib-109.15.00:=
dev-ml/pa_test:=
dev-ml/enumerate:=
dev-ml/pa_bench:=
>=dev-ml/typerep-111.17:=
dev-ml/camlp4:=
!dev-ml/zero
"
DEPEND="${RDEPEND}
test? (
dev-ml/pa_ounit
>=dev-ml/core-109.60.00
)"
DOCS=( "README.md" )

@ -0,0 +1 @@
DIST core_profiler-112.35.00.tar.gz 102445 SHA256 f5aea31c1026a6175ecfa5f1681f8da4eb5be037942331feed7a59e9de66accb SHA512 3b04853e9edfa57b147e4d9e264d369fc53c657f04e9ec63778f7eff04493ce19998bb9e35c9330c9202eaf7c16907334e6cc29f536bb5ce424b7d20ad8a0157 WHIRLPOOL 595418b50dca93b51eb85e82ddfa19d26554162276a1f64e4b57276b9121398f940c4885d1f8257bac995eaec2d685226a13fe2db6735404fc2187466bc2dfaa

@ -0,0 +1,33 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_profiler/core_profiler-112.35.00.ebuild,v 1.1 2015/07/13 18:48:04 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit eutils oasis
MY_P=${P/_/\~}
DESCRIPTION="Jane Street's profiling library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
dev-ml/core:=
dev-ml/core_extended:=
dev-ml/core_bench:=
dev-ml/textutils:=
dev-ml/pa_test:=
dev-ml/pa_bench:=
dev-ml/pa_ounit:=
dev-ml/re2:=
"
DEPEND="${RDEPEND}"
DOCS=( "README.md" )

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
</pkgmetadata>

@ -1,2 +1,3 @@
DIST herelib-109.35.00.tar.gz 44436 SHA256 183853f7e6f88be0884672d5acdc1f8d6aa3c3204d85b6f9b0b984700e0fe079 SHA512 473de2701a2f83d831bb8a0af4aa4bae86f5b6dd30503eaef6715bce5f22b13cefc2f5e333650ea04780d07edad925fbfe13325909da50a28397a9fe4d115fa4 WHIRLPOOL eca71daae788e5ee2cd66a6e25cb3f6d1b956a208459c36026c13ce65788fbdc912cda4457df0d98dfa516c17fbab7fe2fe11fe358df280a935c8abfb4daaafa
DIST herelib-109.35.02.tar.gz 47650 SHA256 7f8394169cb63f6d41e91c9affa1b8ec240d5f6e9dfeda3fbb611df521d4b05a SHA512 2ab68fb4ed5acce2dd0cbbac658743713d6534ae7f215dd8e34f97b0ef94883ffaf68462651473f8f6a0ef95dbf26c21857bf261291c3accab01d094008c4838 WHIRLPOOL ebed805ba8eff3c410368f929845c24b288bea91cce5b89bec6f031b72cac91091666773d44468009716c937a26c175f81be7726239deb0e0e4d662feccf338a
DIST herelib-112.35.00.tar.gz 49201 SHA256 7a75969aa27d3ec3d6ec20b93d2c5f459d5aca1021b4fa7f0e0d355be5a5390f SHA512 3b7fe743327e93526858004f90f102e5eb98cc493f22acea3d82e51bf99307679017389680456a143fb6fa9dce0a30bfd69abf90e5f0ea1367ec9c9c0726150f WHIRLPOOL cf9e90dd50a438fd0d01a8fb1fbed0a013284c755a5b01a1220d25d2188b76158b447135a18bcc4236d995d1ef22bbe5b43c9d058c20169bb434c8186b7832f9

@ -0,0 +1,25 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/herelib/herelib-112.35.00.ebuild,v 1.1 2015/07/13 18:29:40 aballier Exp $
EAPI="5"
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Syntax extension for inserting the current location"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
>=dev-lang/ocaml-4.00.0:=
dev-ml/camlp4:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -0,0 +1 @@
DIST incremental-112.35.00.tar.gz 129690 SHA256 4d2d962f99d8d0e7fb5d02e0165be0c3a7cf361ea0e17231a525310f2a277918 SHA512 a181e6e90e8d490722342a7c81d93cdc48d2aa38aecb346334cd726ef5d413fabc324a0b86f4e3adbeda6123f5789595d424a01f93872da791019e9c7561ca1e WHIRLPOOL ceccd1ee76f6369330c2a465bebc3cac9f831e840627eda5fcbe6708f123a1dbcf5da437b83eb6bc049d50aad2aedff58c130f48c7be5f68290d0e7b327a9ff1

@ -0,0 +1,28 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/incremental/incremental-112.35.00.ebuild,v 1.1 2015/07/13 18:34:05 aballier Exp $
EAPI="5"
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Library for incremental computations"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
dev-ml/core:=
dev-ml/fieldslib:=
dev-ml/pa_ounit:=
dev-ml/pa_test:=
dev-ml/sexplib:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
</pkgmetadata>

@ -0,0 +1 @@
DIST pa_structural_sexp-112.35.00.tar.gz 51683 SHA256 8425bcdd59afd2d1efb96521b5719ce8308c3ee7fb8cd94981d5eac203430721 SHA512 1ae56cbfdbd0badd3d0c4dd6a50fce46656ea41f28db7d1cb653f8549eda06eb402251f6b31974abd9c1a292a73203c267755d8eb4cd01575cf3e19a3eaf61de WHIRLPOOL e016d2608a1511531343f430eebef6170a2e17f23d993d6105a1706fe3fa62d500d1b39943ace352b0c168d64a32059c48a0d83ac67255f1519e2e8052840be2

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
</pkgmetadata>

@ -0,0 +1,23 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_structural_sexp/pa_structural_sexp-112.35.00.ebuild,v 1.1 2015/07/13 18:00:15 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Quotation expanders to simplify building s-expressions from ocaml values"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND="dev-ml/camlp4:=
dev-ml/type-conv:=
dev-ml/sexplib:="
RDEPEND="${DEPEND}"
DOCS=( "README.md" )

@ -2,3 +2,4 @@ DIST re2-109.55.02.tar.gz 470378 SHA256 08f3370009575277b49b7d40af0fc5e4487e0b39
DIST re2-109.55.04.tar.gz 470154 SHA256 5c41f42909833686e865deefcdf9c73da8dffdda342b16d700d7e762687694dd SHA512 7ff1dd90017c53fa514aada01802e145f20e674d738c4f236a01296bd7ebe331ed34d52f1e57e6b8ce6b1c172cb74e09ea2a0b4a2932f2b7aed97710da444b75 WHIRLPOOL e6b29b5a9ea358d6b0d369ec01205df7a329c69772429fee8994003c5299bd6f52aa879d1632a7eb538714521372f37eb9e52929a8e4a1129c12a72ba5265e62
DIST re2-111.08.00.tar.gz 480459 SHA256 d84a04efd3344f15ff854b593449a49ed2017e6e206da4352789ca38149b6933 SHA512 fa23336ced21b632ddade387fe5fda45494ad414264d3826f18517804e7ef8509b43a63e9223773addfd3aec68e10c9877e125bf85f39adfd70a8131cc4b00e7 WHIRLPOOL 2d42b2e0449507a9d8171d094a4cb8a7a94fd555428857f691130b912107c067dd4a8c685b843555fc81f28f2f407dfc4e9a0b62ff44fbdf56b726d78444343f
DIST re2-112.06.00.tar.gz 483809 SHA256 a538765872363fcb67f12b95c07455a0afd68f5ae9008b59bb85a996d97cc752 SHA512 ad121d894c39b014bdd540b07b1e03de7024ddb58306b752018dfebb2302282562c36664410e968c57affa6bf063783a8a171bf1664cded4cf835df90c4aaf39 WHIRLPOOL 89906deff18a904bbe8125a6d0a99322bf7bb9125880a4031f12eb060f08f13f4d393b415996ef4bec82972d9de4f9444d90066ff15cdad823053e8b341fdfdc
DIST re2-112.35.00.tar.gz 488157 SHA256 a47e578231730270a41fd63012b9e354f531507383b03d1a30fa1540967e6fef SHA512 127a2f75363899940f3e771c4e7f1983529ae6d0f92dd05bdd936bf5dc7b221eb0b833abbe8f03f84ee3863666ca5df9e292a6629d2e2db345d75d5bf2af3a8d WHIRLPOOL 21203f892073114807320ff95593fb53569cbe6ea649e91ec25ac917e5a7c0394c47d9ffded3e0f95f3df168fc64da83c524604309d16efa964213ec8dbaa06f

@ -0,0 +1,32 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/re2/re2-112.35.00.ebuild,v 1.1 2015/07/13 18:31:25 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="OCaml bindings for RE2"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-ml/type-conv-112:=
dev-ml/core:=
dev-ml/bin-prot:=
dev-ml/sexplib:=
dev-ml/comparelib:=
dev-ml/pa_test:=
dev-libs/re2:=
dev-ml/camlp4:="
RDEPEND="${DEPEND}"
DOCS=( "README.txt" )
S="${WORKDIR}/${MY_P}"

@ -0,0 +1,27 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/CGI-Fast/CGI-Fast-2.100.0.ebuild,v 1.1 2015/07/13 20:10:07 dilfridge Exp $
EAPI=5
MODULE_AUTHOR=LEEJO
MODULE_VERSION=2.10
inherit perl-module
DESCRIPTION="CGI Interface for Fast CGI"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE=""
RDEPEND="
>=dev-perl/CGI-4
virtual/perl-Carp
>=dev-perl/FCGI-0.670.0
virtual/perl-if
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
"
SRC_TEST="do parallel"

@ -0,0 +1 @@
DIST CGI-Fast-2.10.tar.gz 8627 SHA256 98263afcc9f5d88c7cbbd39651c5431b434c1c815fe284962d887ed7be3a1dd3 SHA512 55d05c742bf49045f917aa4a4efdab3e5ce2251ca61de0e7db0a586d8a592784989bc74fa43a3c6430a920f38b2aa818887e96c3e24c701d531dae94b247da2c WHIRLPOOL 5821043926fa707490819a7149e3c085ebf49314242dbd80393d46a400d21461245b46b5bb908390c0d1a6401a156e312193eb0652eaef08386f8fa94a1e2ead

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>perl</herd>
</pkgmetadata>

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PerlIO-Layers/PerlIO-Layers-0.10.0.ebuild,v 1.5 2014/07/30 17:00:57 zlogene Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PerlIO-Layers/PerlIO-Layers-0.10.0.ebuild,v 1.6 2015/07/13 20:30:58 dilfridge Exp $
EAPI=5
@ -11,10 +11,25 @@ inherit perl-module
DESCRIPTION="Querying your filehandle's capabilities"
LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="amd64 arm ppc x86 ~amd64-linux ~x86-linux"
IUSE=""
IUSE="test"
RDEPEND="dev-perl/List-MoreUtils"
DEPEND="${RDEPEND}"
# needs List::Util
RDEPEND="
virtual/perl-Carp
>=virtual/perl-Exporter-5.570.0
dev-perl/List-MoreUtils
virtual/perl-Scalar-List-Utils
virtual/perl-XSLoader
"
DEPEND="${RDEPEND}
>=dev-perl/Module-Build-0.360.100
test? (
virtual/perl-Data-Dumper
virtual/perl-File-Temp
>=virtual/perl-Test-Simple-0.820.0
)
"
SRC_TEST="do parallel"

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PerlIO-Layers/PerlIO-Layers-0.11.0.ebuild,v 1.1 2014/07/30 17:02:44 zlogene Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PerlIO-Layers/PerlIO-Layers-0.11.0.ebuild,v 1.2 2015/07/13 20:30:58 dilfridge Exp $
EAPI=5
@ -11,10 +11,24 @@ inherit perl-module
DESCRIPTION="Querying your filehandle's capabilities"
LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
IUSE="test"
RDEPEND="dev-perl/List-MoreUtils"
DEPEND="${RDEPEND}"
# needs List::Util
RDEPEND="
virtual/perl-Carp
>=virtual/perl-Exporter-5.570.0
virtual/perl-Scalar-List-Utils
virtual/perl-XSLoader
"
DEPEND="${RDEPEND}
>=dev-perl/Module-Build-0.360.100
test? (
virtual/perl-Data-Dumper
virtual/perl-File-Spec
>=virtual/perl-Test-Simple-0.820.0
)
"
SRC_TEST="do parallel"

@ -1,2 +1,3 @@
DIST pycups-1.9.68.tar.bz2 56383 SHA256 44346cbd9d6d1785e5cb5d76b661aff2039e920283bd6af251b72a1e668237c4 SHA512 63776b79ef9f24f7a98e71fbaa4a08bc9a31b1b20a8414368095706d02fa17b428544414822b3330ef68b38f812aa90eca01a3a5c0d632ff839f1068280ed103 WHIRLPOOL 456e587504b20e6d1e7c1d683f68cf12f15a7392224320eea165f161c6ed08e8deb07797cda027e3445d16ebc6f73ee523e7daaf2908ff2bb64458fdcf8f1350
DIST pycups-1.9.72.tar.bz2 52687 SHA256 7f635cb95149e2fab6693ee0261a4491f3f9521549652a9fdcc9654978037ca7 SHA512 db8b06378bf398073e34c89d62aa64cc8e56e93553346484c2e5dd67d046a3aa2f44020b68a7d479203fb2eeba005f8860ad4cebf72f8d7aa9aa15952a36d816 WHIRLPOOL 03b2f6d12e366961745234e9105337d18e543c31b5f80eb77641dbf01e9d1ca60e988a4ad793dccbee39daca725afe32ff9c1a265eec0773a5275add8a47b104
DIST pycups-1.9.73.tar.bz2 52732 SHA256 c381be011889ca6f728598578c89c8ac9f7ab1e95b614474df9f2fa831ae5335 SHA512 ee893d64f1645b71805ac358c4a3cc594f6285f04272ff0558aa60cbc90fafdbac30b623ffcc3a6b739218d9fd7a6a6e1d8cb186a5582f2cc30a518ed4dde810 WHIRLPOOL e19ccc7ab6a2e8f9364b5428eeddf365e9e6d34c2b94ae767543f5f3f81de3f6ac539ea6ba58c13cf34f639e7ba9a0ba04c53c7e030647c63085090ae185b3ca

@ -0,0 +1,51 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/pycups-1.9.73.ebuild,v 1.1 2015/07/13 22:26:20 mrueg Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
inherit distutils-r1
DESCRIPTION="Python bindings for the CUPS API"
HOMEPAGE="http://cyberelk.net/tim/data/pycups/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
SLOT="0"
IUSE="doc examples"
RDEPEND="
net-print/cups
"
DEPEND="${RDEPEND}"
# epydoc kinda sucks and supports python2 only (it's dead too),
# and since we're dealing with a binary module we need exact version
# match. therefore, docbuilding *requires* any python2 being enabled.
DEPEND="${RDEPEND}
doc? ( dev-python/epydoc[$(python_gen_usedep 'python2*')] )
"
REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )"
python_compile_all() {
if use doc; then
# we can't use Makefile since it relies on hardcoded paths
epydoc -o html --html cups || die "doc build failed"
fi
}
python_compile() {
python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
distutils-r1_python_compile
}
python_install_all() {
use doc && local HTML_DOCS=( html/ )
use examples && local EXAMPLES=( examples/ )
distutils-r1_python_install_all
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtmultimedia/qtmultimedia-5.4.2.ebuild,v 1.1 2015/06/17 15:21:33 pesa Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtmultimedia/qtmultimedia-5.4.2-r1.ebuild,v 1.1 2015/07/14 00:10:43 pesa Exp $
EAPI=5
inherit qt5-build
@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
fi
IUSE="alsa +gstreamer openal +opengl pulseaudio qml widgets"
IUSE="alsa +gstreamer openal opengl pulseaudio qml widgets"
RDEPEND="
>=dev-qt/qtcore-${PV}:5
@ -34,10 +34,14 @@ RDEPEND="
)
"
DEPEND="${RDEPEND}
x11-proto/videoproto
gstreamer? ( x11-proto/videoproto )
"
src_prepare() {
# do not rely on qtbase configuration
sed -i -e 's/contains(QT_CONFIG, \(alsa\|pulseaudio\))://' \
qtmultimedia.pro || die
qt_use_compile_test alsa
qt_use_compile_test gstreamer
qt_use_compile_test openal
@ -47,7 +51,8 @@ src_prepare() {
src/multimediawidgets/multimediawidgets.pro
qt_use_disable_mod qml quick \
src/src.pro
src/src.pro \
src/plugins/plugins.pro
qt_use_disable_mod widgets widgets \
src/src.pro \

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtquick1/qtquick1-5.4.2.ebuild,v 1.1 2015/06/17 15:22:22 pesa Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtquick1/qtquick1-5.4.2.ebuild,v 1.2 2015/07/14 00:19:14 pesa Exp $
EAPI=5
inherit qt5-build
@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
fi
IUSE="designer +opengl webkit xml"
IUSE="designer opengl webkit xml"
# see bug 542698 for pinned dev-qt/designer dependency
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-3.0.1-r3.ebuild,v 1.1 2015/07/12 02:31:07 prometheanfire Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-3.0.1-r4.ebuild,v 1.1 2015/07/14 04:43:42 prometheanfire Exp $
EAPI=5
USE_RUBY="ruby19 ruby20 ruby21 ruby22"
@ -32,7 +32,9 @@ DEPEND+=" test? ( ${CDEPEND} )"
src_prepare() {
sed -i 's/\-Werror\ //g' "vendor/leatherman/cmake/cflags.cmake" || die
# Remove the code that installs facter.rb to the wrong directory.
sed -i -e '/RUBY_VENDORDIR/d' lib/CMakeLists.txt || die
sed -i '/RUBY_VENDORDIR/d' lib/CMakeLists.txt || die
# make it support multilib
sed -i 's/\ lib)/\ lib${LIB_SUFFIX})/g' lib/CMakeLists.txt || die
}
src_configure() {

@ -1,3 +1,2 @@
DIST protected_attributes-1.0.8.tar.gz 21600 SHA256 b6b26c552b6e7e45a479961ff31bf628c793621bb933d57ddbedd3b24d477959 SHA512 bf09e97347949362a5ca7b3532fa133b44ae0555e3b5bd676978a769d2b29dc4dad47cb5e48daa6b71b8120b41b33ff2466b6b81e1d97a8af17018c518c837cc WHIRLPOOL f9fcbfa85bd595bda30ab800a9f4b6d382ed73b60ffe655418d09dc6590b5c5328673202115cbd02dc2791c9c39370d4bdfd2d6cfd7381e5a561ee3e93b7daae
DIST protected_attributes-1.0.9.tar.gz 22212 SHA256 e22ce3bbf9a6edea7c468518fb86aafefb4137f937f62552fe2d56c89fc2e19e SHA512 ed630460df14ea290d9146448908067e0f418568fa31f1f7dbc014954738ca8ee0ff70992c8d77eab9af446a2e1a91e24acb7585d9030a4ab6cae6ede8ee8a4a WHIRLPOOL 7af9a3c1c2c93c0b17443b7fbcbedbd1baa7c54c7541a692353195d3ea457ac530f31f2446835918c2ee0512aa585b3d574a913a9eebd1a39f24c5a988ac3d8c
DIST protected_attributes-1.1.0.tar.gz 22853 SHA256 258b5738e025f6d1823fb58225b9d51225ad7357830338b10b728f70ac3aedc6 SHA512 88506f702a5084ba090204e4284e62824b8935c7288f5c09049d3af9614563fad407d1f9bf19612fb22432b975c3491cb5dbd90ef1fd05843ed8ab641218f39f WHIRLPOOL 07a91baa724627cc8de0577f703453abdedb62b98ed07d6a08fe1173be09fc912b03fd23a7cc4120f133fa242712546f4068bfb7633fc5ca1793ac6554e1b681
DIST protected_attributes-1.1.1.tar.gz 23227 SHA256 bb946ebc575a8f9286ba689b641f6f397a79ea308c8008a1a30ee50c6c3b7bbc SHA512 94b21cfc5bbb16ad704e627a89d091d81e5a4c468052de3e6ad80292dab057408b4e6b230e68ef2382a089985faef790568851747e684710ecc5ad4ff6c3f0d3 WHIRLPOOL c5571d93a27301854bf27505ff98dc146a4f91fbb64f5d5ca36588239b535d6ca47f3971242ae2444e496151abd13239560cec2e17296c757549c826d911ba06

@ -1,39 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/protected_attributes-1.0.8.ebuild,v 1.2 2015/03/11 16:54:30 ago Exp $
EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"
RUBY_FAKEGEM_TASK_TEST="test"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
inherit ruby-fakegem
DESCRIPTION="Protect attributes from mass-assignment in ActiveRecord models"
HOMEPAGE="https://github.com/rails/protected_attributes"
SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SLOT="1"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
IUSE="test"
ruby_add_rdepend "
=dev-ruby/activemodel-4* >=dev-ruby/activemodel-4.0.1
"
ruby_add_bdepend "test? (
dev-ruby/bundler
=dev-ruby/actionpack-4*
=dev-ruby/activerecord-4*
dev-ruby/mocha
dev-ruby/sqlite3
)"
all_ruby_prepare() {
sed -i -e '/github/ s:^:#:' Gemfile || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/protected_attributes-1.1.0.ebuild,v 1.1 2015/06/23 04:57:37 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/protected_attributes-1.1.1.ebuild,v 1.1 2015/07/14 04:44:41 graaff Exp $
EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v 1.6 2015/03/03 07:40:06 dlan Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v 1.7 2015/07/13 18:08:12 zlogene Exp $
EAPI="5"
@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
LICENSE="Boost-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="examples python test"
RDEPEND="python? ( ${PYTHON_DEPS} )

@ -1,3 +1,3 @@
DIST jenkins-bin-1.609.1.war 68908995 SHA256 7e150cc9dd3d9089d82fecbf5b1d0ffa5cc33782637338c418c324715e329bd5 SHA512 909496a0b3757c8187cf9bad6374ea4faf57979eafcd91d9793d57bcc3bfc7e821755fbc321a104b14acc2ddbd319c30e40cc52fb0456eeea4ad2f23d9d6ae1c WHIRLPOOL 951f2307d439c22b202082614b16df201b61ca0478eb2666aaba9a1140a6323eee3193dc38586c222424ea1d63431e8aee228523714837a5889f1703620ca932
DIST jenkins-bin-1.617.war 63124132 SHA256 8d6e30c338a54d3eeb6deea6614dae8fba9e1a2a2d9bc7ce3c61604140f3aa3e SHA512 b5a0fce396eacffee181f0331f6157c60072f16994bb689e090dd6d9697708807444bf4a198e5fb828508bd63db37081e3b5935b121339de99681535e9d25c89 WHIRLPOOL 4b8761b16086543756869c47fced4ed07de80e25938904e822a525bc20893909c1d5a0750a7ff2e1a00f577515d1eac1d8152d165d13654b901fee4846653dd5
DIST jenkins-bin-1.618.war 63261204 SHA256 86cb65bb3c8980d61336bdf1b10af1fefd2e1d9fca678ff4efc054c1b498a7ee SHA512 52dc6fe38dd3875c86505df99eb610a6ba93106a9914216c72342e359eabdcb8f554970dab81506afdb98c6ce52eaa7dcacc81e13eee3d562c41c4434e9c7d20 WHIRLPOOL 4fe982f1c7aedce43377f26aabb691ad93b67318f067854c99cc619672e867b9e77c3c6624e030d0f756d8f1297912d895ba459c608043e5fb7a8fb9455df84f
DIST jenkins-bin-1.620.war 63264175 SHA256 94f71bb1f08e73262ff40b412303b03558ba21ca106251d1ed1f77791f6ab728 SHA512 056d81a9a5cce862d37578ec5fbba3ba31a6987ce133d6421b2ed930b3d877fc5d022d32e7ed8cc1be794938ae559cd9bb5abb2890353b16e9e32634733c8605 WHIRLPOOL 731e612d52e3aa0d6ca9c250ec98e06047adc00b23c7b27adc80df7e136e782c61185d8d4b2d53e3442154255b2e7b25f1577538daa39d76c9682c31d95da608

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/jenkins-bin/jenkins-bin-1.617.ebuild,v 1.1 2015/06/10 10:24:42 mrueg Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/jenkins-bin/jenkins-bin-1.620.ebuild,v 1.1 2015/07/13 16:02:36 mrueg Exp $
EAPI=5

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/nm-applet-1.0.2.ebuild,v 1.3 2015/05/17 15:55:48 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/nm-applet-1.0.2.ebuild,v 1.5 2015/07/13 20:28:51 pacho Exp $
EAPI=5
GCONF_DEBUG="no"
@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
LICENSE="GPL-2+"
SLOT="0"
IUSE="bluetooth +introspection modemmanager"
KEYWORDS="~alpha amd64 ~arm ~sparc x86"
KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~sparc x86"
RDEPEND="
app-crypt/libsecret
@ -34,7 +34,6 @@ RDEPEND="
introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
modemmanager? ( >=net-misc/modemmanager-0.7.990 )
virtual/freedesktop-icon-theme
virtual/notification-daemon
virtual/libgudev:=
"
DEPEND="${RDEPEND}
@ -42,6 +41,8 @@ DEPEND="${RDEPEND}
>=dev-util/intltool-0.40
"
PDEPEND="virtual/notification-daemon" #546134
src_configure() {
gnome2_src_configure \
--disable-more-warnings \

@ -1 +1 @@
Mon, 13 Jul 2015 16:06:56 +0000
Tue, 14 Jul 2015 05:06:55 +0000

@ -1 +1 @@
Mon, 13 Jul 2015 16:06:56 +0000
Tue, 14 Jul 2015 05:06:55 +0000

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/python-poppler-qt4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyPdf[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
DESCRIPTION=A tool to crop PDF files
EAPI=5
HOMEPAGE=http://arminstraub.com/software/krop
IUSE=python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=GPL-3
RDEPEND=dev-python/python-poppler-qt4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyPdf[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
RDEPEND=dev-python/python-poppler-qt4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyPdf[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/PyQt4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_7 )
SLOT=0
SRC_URI=http://arminstraub.com/downloads/krop/krop-0.4.6.tar.gz
SRC_URI=http://arminstraub.com/downloads/krop/krop-0.4.8.tar.gz
_eclasses_=distutils-r1 8fd6db5e1c80bd7c6d640bce0413569e eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 62927b3db3a589b0806255f3a002d5d3 multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 23846c6ba39f6655e2027001eeed8e81 python-utils-r1 ae9becb5d45344c01939c3f57df0d3fd toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=6836fe9bf280e5b8af98e079d892cc0d
_md5_=e4efa34adafb01edb588ec2ead9d5efd

@ -0,0 +1,13 @@
DEFINED_PHASES=compile install preinst prepare setup
DEPEND=>=virtual/jdk-1.6 app-arch/unzip dev-java/tomcat-servlet-api:3.0 >=dev-java/java-config-2.2.0
DESCRIPTION=Portlet API 2.0 developed by the Java Community Process JSR-286
EAPI=5
HOMEPAGE=https://jcp.org/en/jsr/detail?id=286
IUSE=elibc_FreeBSD elibc_FreeBSD
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
LICENSE=Apache-2.0
RDEPEND=>=virtual/jre-1.6 dev-java/tomcat-servlet-api:3.0 >=dev-java/java-config-2.2.0
SLOT=2.0
SRC_URI=http://mirrors.ibiblio.org/maven2/javax/portlet/portletapi/2.0/portlet-api-2.0-sources.jar
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de java-pkg-2 1889f7787714c5f7e3b5bb1c2be07c1f java-pkg-simple 28dc6c3e6fa8ed51b88360dfd5fee53e java-utils-2 8cdf065211fa6d6687bdc3f3ebe12efc multilib 62927b3db3a589b0806255f3a002d5d3 toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=c2ca34d04b1ab1cb0a18a1167d1b84d8

@ -4,7 +4,7 @@ DESCRIPTION=Boost Libraries for C++
EAPI=5
HOMEPAGE=http://www.boost.org/
IUSE=context debug doc icu +nls mpi python static-libs +threads tools python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt
KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt
LICENSE=Boost-1.0
RDEPEND=abi_x86_32? ( !app-emulation/emul-linux-x86-cpplibs[-abi_x86_32(-)] ) icu? ( >=dev-libs/icu-3.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !icu? ( virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mpi? ( virtual/mpi[cxx,threads] ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !app-admin/eselect-boost
REQUIRED_USE=mpi? ( threads ) python? ( || ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) )
@ -12,4 +12,4 @@ RESTRICT=test
SLOT=0/1.56.0
SRC_URI=mirror://sourceforge/boost/boost_1_56_0.tar.bz2
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic c9602887773166fe300444712fc7ff98 multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 62927b3db3a589b0806255f3a002d5d3 multilib-build e733e978b7fa70607cc221fd9c070db6 multilib-minimal 13dd976916c35a1e2c8d170e840c7018 multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 23846c6ba39f6655e2027001eeed8e81 python-utils-r1 ae9becb5d45344c01939c3f57df0d3fd toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=684002501bb102d38ded9b6969a4cfe2
_md5_=1ed175bf0487ea1292451285c25b28bf

@ -10,4 +10,4 @@ RDEPEND=>=dev-qt/qtcore-5.4.2:5
SLOT=0
SRC_URI=https://github.com/vogel/injeqt/archive/1.0.0.tar.gz -> injeqt-1.0.0.tar.gz
_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic c9602887773166fe300444712fc7ff98 multilib 62927b3db3a589b0806255f3a002d5d3 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=e99c1d13aef3520234c1f1f1c536f99b
_md5_=8570c9cb41aea08c68d3ec6e5b11da10

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare setup test
DEPEND=pam? ( virtual/pam ) sys-devel/bison sys-devel/flex !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.14.1:1.14 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DEFINED_PHASES=configure install postinst prepare setup test
DEPEND=pam? ( virtual/pam ) sys-devel/bison sys-devel/flex elibc_musl? ( sys-libs/fts-standalone ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.14.1:1.14 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=Tools and libraries to configure and manage kernel control groups
EAPI=5
HOMEPAGE=http://libcg.sourceforge.net/
IUSE=+daemon pam static-libs +tools
IUSE=+daemon elibc_musl pam static-libs +tools
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
LICENSE=LGPL-2.1
RDEPEND=pam? ( virtual/pam )
REQUIRED_USE=daemon? ( tools )
SLOT=0
SRC_URI=mirror://sourceforge/project/libcg/libcgroup/v0.41/libcgroup-0.41.tar.bz2
_eclasses_=autotools a9597abac7226d89ad9d010abeef6cfb autotools-utils dbce0f7913bd240fdf0ef428149855c0 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic c9602887773166fe300444712fc7ff98 libtool 52d0e17251d04645ffaa61bfdd858944 linux-info 8cbc678e083c23e4ad546ca6509cf304 multilib 62927b3db3a589b0806255f3a002d5d3 pam aa1ebb3ab720ea04dbbdd6eaaf9554ed toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=0e6056a0a30106e683224d1bf886f2ba
_eclasses_=autotools a9597abac7226d89ad9d010abeef6cfb eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic c9602887773166fe300444712fc7ff98 libtool 52d0e17251d04645ffaa61bfdd858944 linux-info 8cbc678e083c23e4ad546ca6509cf304 multilib 62927b3db3a589b0806255f3a002d5d3 pam aa1ebb3ab720ea04dbbdd6eaaf9554ed toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=f04cd22bd172d2e39576183fc3b4b15d

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-lang/ocaml-4.00.0:= >=dev-ml/async_kernel-112.35.00:= >=dev-ml/async_unix-112.35.00:= >=dev-ml/async_extra-112.35.00:= dev-ml/camlp4:= test? ( >=dev-ml/ounit-1.0.2 dev-ml/core_bench dev-ml/pa_ounit ) >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Jane Street Capital's asynchronous execution library
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=examples +ocamlopt debug doc test
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-lang/ocaml-4.00.0:= >=dev-ml/async_kernel-112.35.00:= >=dev-ml/async_unix-112.35.00:= >=dev-ml/async_extra-112.35.00:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/async-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=b13144d728f62ef83f39f311323f741f

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-lang/ocaml-4.00.0:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/pa_ounit-109.18.00:= >=dev-ml/pipebang-109.15.00:= >=dev-ml/core-112.35.00:= >=dev-ml/async_kernel-112.35.00:= >=dev-ml/async_unix-112.35.00:= dev-ml/custom_printf:= dev-ml/herelib:= dev-ml/pa_test:= dev-ml/camlp4:= dev-ml/async_rpc_kernel:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Jane Street Capital's asynchronous execution library (extra)
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug doc
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-lang/ocaml-4.00.0:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/pa_ounit-109.18.00:= >=dev-ml/pipebang-109.15.00:= >=dev-ml/core-112.35.00:= >=dev-ml/async_kernel-112.35.00:= >=dev-ml/async_unix-112.35.00:= dev-ml/custom_printf:= dev-ml/herelib:= dev-ml/pa_test:= dev-ml/camlp4:= dev-ml/async_rpc_kernel:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/async_extra-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=9b5c021213ac846a64cd20c3b35918b1

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-lang/ocaml-4.00.0:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/core-109.35.00:= >=dev-ml/herelib-109.35.00:= dev-ml/pa_test:= dev-ml/camlp4:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Jane Street Capital's asynchronous execution library (core)
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug doc
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-lang/ocaml-4.00.0:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/core-109.35.00:= >=dev-ml/herelib-109.35.00:= dev-ml/pa_test:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/async_kernel-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=1e63c09b6e956783bafe9748558c3b47

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-ml/camlp4:= dev-ml/async_kernel:= dev-ml/bin-prot:= dev-ml/comparelib:= dev-ml/core_kernel:= dev-ml/custom_printf:= dev-ml/fieldslib:= dev-ml/pa_ounit:= dev-ml/sexplib:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Platform-independent core of Async RPC library
EAPI=5
HOMEPAGE=http://bitbucket.org/yminsky/ocaml-core/wiki/Home
IUSE=+ocamlopt debug
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=dev-ml/camlp4:= dev-ml/async_kernel:= dev-ml/bin-prot:= dev-ml/comparelib:= dev-ml/core_kernel:= dev-ml/custom_printf:= dev-ml/fieldslib:= dev-ml/pa_ounit:= dev-ml/sexplib:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/async_rpc_kernel-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=0a6bcea41d14413a968585ef23dcd8b5

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-lang/ocaml-4.00.0:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/comparelib-109.27.00:= >=dev-ml/herelib-109.15.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/pipebang-109.15.00:= >=dev-ml/core-112.35.00:= >=dev-ml/async_kernel-112.35.00:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/fieldslib-109.20.00:= dev-ml/pa_test:= dev-ml/camlp4:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Jane Street Capital's asynchronous execution library (unix)
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug doc
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-lang/ocaml-4.00.0:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/comparelib-109.27.00:= >=dev-ml/herelib-109.15.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/pipebang-109.15.00:= >=dev-ml/core-112.35.00:= >=dev-ml/async_kernel-112.35.00:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/fieldslib-109.20.00:= dev-ml/pa_test:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/async_unix-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=eaedae908226c03ef34dd3ce029426cf

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-ml/type-conv-109.28.00:= dev-ml/camlp4:= test? ( >=dev-ml/ounit-1.1.2 ) >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=A binary protocol generator
EAPI=5
HOMEPAGE=http://ocaml.janestreet.com/?q=node/13
IUSE=doc +ocamlopt debug doc test
KEYWORDS=~amd64
LICENSE=LGPL-2.1-with-linking-exception
RDEPEND=>=dev-ml/type-conv-109.28.00:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/bin_prot-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=8e67b29cb7dac24c7701c855bcbb7aef

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-ml/core_kernel-109.35.00:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/variantslib-109.15.00:= >=dev-ml/comparelib-109.27.00:= >=dev-ml/herelib-109.35.00:= >=dev-ml/pipebang-109.15.00:= dev-ml/custom_printf:= dev-ml/pa_bench:= dev-ml/pa_test:= dev-ml/enumerate:= dev-ml/camlp4:= dev-ml/pa_structural_sexp:= test? ( >=dev-ml/ounit-1.1.2 ) >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Jane Street's alternative to the standard library
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug doc test
KEYWORDS=~amd64
LICENSE=LGPL-2.1-with-linking-exception
RDEPEND=>=dev-ml/core_kernel-109.35.00:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/variantslib-109.15.00:= >=dev-ml/comparelib-109.27.00:= >=dev-ml/herelib-109.35.00:= >=dev-ml/pipebang-109.15.00:= dev-ml/custom_printf:= dev-ml/pa_bench:= dev-ml/pa_test:= dev-ml/enumerate:= dev-ml/camlp4:= dev-ml/pa_structural_sexp:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/core-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=8b53172133758e6e4ecc586b75aa6425

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-ml/sexplib:= dev-ml/textutils:= dev-ml/pa_ounit:= dev-ml/core:= dev-ml/fieldslib:= dev-ml/comparelib:= dev-ml/camlp4:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Micro-benchmarking library for OCaml
EAPI=5
HOMEPAGE=https://ocaml.janestreet.com/
IUSE=+ocamlopt debug
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=dev-ml/sexplib:= dev-ml/textutils:= dev-ml/pa_ounit:= dev-ml/core:= dev-ml/fieldslib:= dev-ml/comparelib:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/core_bench-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=aea00973fadcc54b8d512beeeb868e48

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-ml/core-112.35.00:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/comparelib-109.27.00:= >=dev-ml/custom_printf-109.27.00:= >=dev-ml/pipebang-109.15.00:= >=dev-ml/textutils-109.35.00:= dev-ml/pa_test:= dev-ml/re2:= dev-ml/pa_bench:= dev-ml/camlp4:= test? ( >=dev-ml/ounit-1.1.0 ) >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Jane Street's alternative to the standard library
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug doc test
KEYWORDS=~amd64
LICENSE=LGPL-2.1-with-linking-exception
RDEPEND=>=dev-ml/core-112.35.00:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/bin-prot-109.15.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/comparelib-109.27.00:= >=dev-ml/custom_printf-109.27.00:= >=dev-ml/pipebang-109.15.00:= >=dev-ml/textutils-109.35.00:= dev-ml/pa_test:= dev-ml/re2:= dev-ml/pa_bench:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/core_extended-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=4379a2609cd0a8d39d495bb626cb2eb3

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-ml/bin-prot-112.17.00:= >=dev-ml/comparelib-109.27.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/herelib-109.35.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/pipebang-109.15.00:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/variantslib-109.15.00:= dev-ml/pa_test:= dev-ml/enumerate:= dev-ml/pa_bench:= >=dev-ml/typerep-111.17:= dev-ml/camlp4:= !dev-ml/zero test? ( dev-ml/pa_ounit >=dev-ml/core-109.60.00 ) >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=System-independent part of Core
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug doc test
KEYWORDS=~amd64
LICENSE=LGPL-2.1-with-linking-exception
RDEPEND=>=dev-ml/bin-prot-112.17.00:= >=dev-ml/comparelib-109.27.00:= >=dev-ml/fieldslib-109.20.00:= >=dev-ml/herelib-109.35.00:= >=dev-ml/pa_ounit-109.27.00:= >=dev-ml/pipebang-109.15.00:= >=dev-ml/sexplib-109.20.00:= >=dev-ml/variantslib-109.15.00:= dev-ml/pa_test:= dev-ml/enumerate:= dev-ml/pa_bench:= >=dev-ml/typerep-111.17:= dev-ml/camlp4:= !dev-ml/zero >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/core_kernel-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=a1dfad5a237a6c00ea7b2bc04a5bc28b

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-ml/core:= dev-ml/core_extended:= dev-ml/core_bench:= dev-ml/textutils:= dev-ml/pa_test:= dev-ml/pa_bench:= dev-ml/pa_ounit:= dev-ml/re2:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Jane Street's profiling library
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug doc test
KEYWORDS=~amd64
LICENSE=LGPL-2.1-with-linking-exception
RDEPEND=dev-ml/core:= dev-ml/core_extended:= dev-ml/core_bench:= dev-ml/textutils:= dev-ml/pa_test:= dev-ml/pa_bench:= dev-ml/pa_ounit:= dev-ml/re2:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/core_profiler-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=2e9bd5041f3386430244be76c8fad8ee

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-lang/ocaml-4.00.0:= dev-ml/camlp4:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Syntax extension for inserting the current location
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-lang/ocaml-4.00.0:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/herelib-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=76305e49738ff5be7e00c955005c6d4e

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-ml/core:= dev-ml/fieldslib:= dev-ml/pa_ounit:= dev-ml/pa_test:= dev-ml/sexplib:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Library for incremental computations
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=dev-ml/core:= dev-ml/fieldslib:= dev-ml/pa_ounit:= dev-ml/pa_test:= dev-ml/sexplib:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/incremental-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=8a0fa2dcdd7608142240483095a297d3

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-ml/camlp4:= dev-ml/type-conv:= dev-ml/sexplib:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=Quotation expanders to simplify building s-expressions from ocaml values
EAPI=5
HOMEPAGE=http://bitbucket.org/yminsky/ocaml-core/wiki/Home
IUSE=+ocamlopt debug
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=dev-ml/camlp4:= dev-ml/type-conv:= dev-ml/sexplib:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/pa_structural_sexp-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=2487427bc02432444be7950a61d9fb57

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-ml/type-conv-112:= dev-ml/core:= dev-ml/bin-prot:= dev-ml/sexplib:= dev-ml/comparelib:= dev-ml/pa_test:= dev-libs/re2:= dev-ml/camlp4:= >=dev-ml/findlib-1.0.4-r1 >=dev-lang/ocaml-3.12:=[ocamlopt?]
DESCRIPTION=OCaml bindings for RE2
EAPI=5
HOMEPAGE=http://www.janestreet.com/ocaml
IUSE=+ocamlopt debug doc
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=>=dev-ml/type-conv-112:= dev-ml/core:= dev-ml/bin-prot:= dev-ml/sexplib:= dev-ml/comparelib:= dev-ml/pa_test:= dev-libs/re2:= dev-ml/camlp4:= >=dev-lang/ocaml-3.12:=[ocamlopt?]
SLOT=0/112.35.00
SRC_URI=http://ocaml.janestreet.com/ocaml-core/112.35/files/re2-112.35.00.tar.gz
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 62927b3db3a589b0806255f3a002d5d3 oasis 45027e91f880d9142eec842f0cca0088 toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=4c8849f5f572d0ed4a02e43647de8de9

@ -0,0 +1,12 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=>=dev-perl/CGI-4 virtual/perl-Carp >=dev-perl/FCGI-0.670.0 virtual/perl-if virtual/perl-ExtUtils-MakeMaker dev-lang/perl:=[-build(-)]
DESCRIPTION=CGI Interface for Fast CGI
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/CGI-Fast/
KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=>=dev-perl/CGI-4 virtual/perl-Carp >=dev-perl/FCGI-0.670.0 virtual/perl-if dev-lang/perl:=[-build(-)]
SLOT=0
SRC_URI=mirror://cpan/authors/id/L/LE/LEEJO/CGI-Fast-2.10.tar.gz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de multilib 62927b3db3a589b0806255f3a002d5d3 multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module 9ff260c452d420630500e700913be8d8 toolchain-funcs 42408102d713fbad60ca21349865edb4 unpacker f300a7ca9131b1024a79762e8edd3c52
_md5_=4cc0454e400e519e37c339a82da450e3

@ -1,12 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-perl/List-MoreUtils dev-lang/perl:=[-build(-)]
DEPEND=virtual/perl-Carp >=virtual/perl-Exporter-5.570.0 dev-perl/List-MoreUtils virtual/perl-Scalar-List-Utils virtual/perl-XSLoader >=dev-perl/Module-Build-0.360.100 test? ( virtual/perl-Data-Dumper virtual/perl-File-Temp >=virtual/perl-Test-Simple-0.820.0 ) dev-lang/perl:=[-build(-)]
DESCRIPTION=Querying your filehandle's capabilities
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/PerlIO-Layers/
IUSE=test
KEYWORDS=amd64 arm ppc x86 ~amd64-linux ~x86-linux
LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 )
RDEPEND=dev-perl/List-MoreUtils dev-lang/perl:=[-build(-)]
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=virtual/perl-Carp >=virtual/perl-Exporter-5.570.0 dev-perl/List-MoreUtils virtual/perl-Scalar-List-Utils virtual/perl-XSLoader dev-lang/perl:=[-build(-)]
SLOT=0
SRC_URI=mirror://cpan/authors/id/L/LE/LEONT/PerlIO-Layers-0.010.tar.gz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de multilib 62927b3db3a589b0806255f3a002d5d3 multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module 9ff260c452d420630500e700913be8d8 toolchain-funcs 42408102d713fbad60ca21349865edb4 unpacker f300a7ca9131b1024a79762e8edd3c52
_md5_=5ccc4680142ec9067d8ec32edfd78e76
_md5_=431874e105f5dea41ff7bf97f80f9a78

@ -1,12 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-perl/List-MoreUtils dev-lang/perl:=[-build(-)]
DEPEND=virtual/perl-Carp >=virtual/perl-Exporter-5.570.0 virtual/perl-Scalar-List-Utils virtual/perl-XSLoader >=dev-perl/Module-Build-0.360.100 test? ( virtual/perl-Data-Dumper virtual/perl-File-Spec >=virtual/perl-Test-Simple-0.820.0 ) dev-lang/perl:=[-build(-)]
DESCRIPTION=Querying your filehandle's capabilities
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/PerlIO-Layers/
IUSE=test
KEYWORDS=~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux
LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 )
RDEPEND=dev-perl/List-MoreUtils dev-lang/perl:=[-build(-)]
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=virtual/perl-Carp >=virtual/perl-Exporter-5.570.0 virtual/perl-Scalar-List-Utils virtual/perl-XSLoader dev-lang/perl:=[-build(-)]
SLOT=0
SRC_URI=mirror://cpan/authors/id/L/LE/LEONT/PerlIO-Layers-0.011.tar.gz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de multilib 62927b3db3a589b0806255f3a002d5d3 multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module 9ff260c452d420630500e700913be8d8 toolchain-funcs 42408102d713fbad60ca21349865edb4 unpacker f300a7ca9131b1024a79762e8edd3c52
_md5_=aaa8e26d3b74f6c62ad1dc9651c04a84
_md5_=851016eabc5bbe180633958b80a0c27e

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=net-print/cups doc? ( dev-python/epydoc[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)]
DESCRIPTION=Python bindings for the CUPS API
EAPI=5
HOMEPAGE=http://cyberelk.net/tim/data/pycups/
IUSE=doc examples python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86
LICENSE=GPL-2
RDEPEND=net-print/cups python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)]
REQUIRED_USE=doc? ( || ( python_targets_python2_7 ) ) || ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy )
SLOT=0
SRC_URI=mirror://pypi/p/pycups/pycups-1.9.73.tar.bz2
_eclasses_=distutils-r1 8fd6db5e1c80bd7c6d640bce0413569e eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 62927b3db3a589b0806255f3a002d5d3 multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 23846c6ba39f6655e2027001eeed8e81 python-utils-r1 ae9becb5d45344c01939c3f57df0d3fd toolchain-funcs 42408102d713fbad60ca21349865edb4
_md5_=52150d1e5f8a462e80a9ad9e27801c7a

@ -1,9 +1,9 @@
DEFINED_PHASES=compile configure install postinst postrm prepare test unpack
DEPEND=>=dev-qt/qtcore-5.4.2:5 >=dev-qt/qtgui-5.4.2:5 >=dev-qt/qtnetwork-5.4.2:5 alsa? ( media-libs/alsa-lib ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( >=dev-qt/qtdeclarative-5.4.2:5 openal? ( media-libs/openal ) ) widgets? ( >=dev-qt/qtwidgets-5.4.2:5 opengl? ( >=dev-qt/qtopengl-5.4.2:5 ) ) x11-proto/videoproto test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( >=dev-qt/qttest-5.4.2:5 )
DEPEND=>=dev-qt/qtcore-5.4.2:5 >=dev-qt/qtgui-5.4.2:5 >=dev-qt/qtnetwork-5.4.2:5 alsa? ( media-libs/alsa-lib ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( >=dev-qt/qtdeclarative-5.4.2:5 openal? ( media-libs/openal ) ) widgets? ( >=dev-qt/qtwidgets-5.4.2:5 opengl? ( >=dev-qt/qtopengl-5.4.2:5 ) ) gstreamer? ( x11-proto/videoproto ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( >=dev-qt/qttest-5.4.2:5 )
DESCRIPTION=The Multimedia module for the Qt5 framework
EAPI=5
HOMEPAGE=https://www.qt.io/
IUSE=alsa +gstreamer openal +opengl pulseaudio qml widgets test debug test
IUSE=alsa +gstreamer openal opengl pulseaudio qml widgets test debug test
KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86
LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3
RDEPEND=>=dev-qt/qtcore-5.4.2:5 >=dev-qt/qtgui-5.4.2:5 >=dev-qt/qtnetwork-5.4.2:5 alsa? ( media-libs/alsa-lib ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( >=dev-qt/qtdeclarative-5.4.2:5 openal? ( media-libs/openal ) ) widgets? ( >=dev-qt/qtwidgets-5.4.2:5 opengl? ( >=dev-qt/qtopengl-5.4.2:5 ) ) dev-qt/qtchooser
@ -11,4 +11,4 @@ RESTRICT=test
SLOT=5
SRC_URI=http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtmultimedia-opensource-src-5.4.2.tar.xz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic c9602887773166fe300444712fc7ff98 multilib 62927b3db3a589b0806255f3a002d5d3 qt5-build a6644bdd0f4c09576fc95ae7fdf1c649 toolchain-funcs 42408102d713fbad60ca21349865edb4 virtualx 73cfc129b4b9ba23aed1abb10c825d86
_md5_=f6ce4f8f1abb0f650de45a5282d7a413
_md5_=7d511c121f03152188ba4d7e9bdcf4c3

@ -3,7 +3,7 @@ DEPEND=>=dev-qt/qtcore-5.4.2:5 >=dev-qt/qtgui-5.4.2:5 >=dev-qt/qtnetwork-5.4.2:5
DESCRIPTION=Legacy declarative UI module for the Qt5 framework
EAPI=5
HOMEPAGE=https://www.qt.io/
IUSE=designer +opengl webkit xml test debug test
IUSE=designer opengl webkit xml test debug test
KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86
LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3
RDEPEND=>=dev-qt/qtcore-5.4.2:5 >=dev-qt/qtgui-5.4.2:5 >=dev-qt/qtnetwork-5.4.2:5 >=dev-qt/qtscript-5.4.2:5 >=dev-qt/qtsql-5.4.2:5 >=dev-qt/qtwidgets-5.4.2:5 designer? ( ~dev-qt/designer-5.4.2 >=dev-qt/qtdeclarative-5.4.2:5 ) opengl? ( >=dev-qt/qtopengl-5.4.2:5 ) webkit? ( >=dev-qt/qtwebkit-5.4.2:5 ) xml? ( >=dev-qt/qtxmlpatterns-5.4.2:5 ) dev-qt/qtchooser
@ -11,4 +11,4 @@ RESTRICT=test
SLOT=5
SRC_URI=http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtquick1-opensource-src-5.4.2.tar.xz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic c9602887773166fe300444712fc7ff98 multilib 62927b3db3a589b0806255f3a002d5d3 qt5-build a6644bdd0f4c09576fc95ae7fdf1c649 toolchain-funcs 42408102d713fbad60ca21349865edb4 virtualx 73cfc129b4b9ba23aed1abb10c825d86
_md5_=34994e54015fe044173d841fd0bbe6cf
_md5_=b9e44c3954775a9d1041dbbb2a176611

@ -11,4 +11,4 @@ REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ru
SLOT=0
SRC_URI=https://downloads.puppetlabs.com/facter/facter-3.0.1.tar.gz
_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic c9602887773166fe300444712fc7ff98 java-utils-2 8cdf065211fa6d6687bdc3f3ebe12efc multilib 62927b3db3a589b0806255f3a002d5d3 ruby-ng a1c75617b3482d513ad41d1aea8dbf8f ruby-utils a74e21a353442acf697b6c82e7df6df8 toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=b0ce5bc276c9fdf44e0a62183901c30d
_md5_=f1bec80f8e386d487c88ec0019f324be

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare setup test unpack
DEPEND=test? ( ruby_targets_ruby19? ( =dev-ruby/activemodel-4*[ruby_targets_ruby19] >=dev-ruby/activemodel-4.0.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( =dev-ruby/activemodel-4*[ruby_targets_ruby20] >=dev-ruby/activemodel-4.0.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( =dev-ruby/activemodel-4*[ruby_targets_ruby21] >=dev-ruby/activemodel-4.0.1[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/bundler[ruby_targets_ruby19] =dev-ruby/actionpack-4*[ruby_targets_ruby19] =dev-ruby/activerecord-4*[ruby_targets_ruby19] dev-ruby/mocha[ruby_targets_ruby19] dev-ruby/sqlite3[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/bundler[ruby_targets_ruby20] =dev-ruby/actionpack-4*[ruby_targets_ruby20] =dev-ruby/activerecord-4*[ruby_targets_ruby20] dev-ruby/mocha[ruby_targets_ruby20] dev-ruby/sqlite3[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/bundler[ruby_targets_ruby21] =dev-ruby/actionpack-4*[ruby_targets_ruby21] =dev-ruby/activerecord-4*[ruby_targets_ruby21] dev-ruby/mocha[ruby_targets_ruby21] dev-ruby/sqlite3[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) )
DESCRIPTION=Protect attributes from mass-assignment in ActiveRecord models
EAPI=5
HOMEPAGE=https://github.com/rails/protected_attributes
IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test test
KEYWORDS=~amd64 ~x86
LICENSE=MIT
RDEPEND=ruby_targets_ruby19? ( =dev-ruby/activemodel-4*[ruby_targets_ruby19] >=dev-ruby/activemodel-4.0.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( =dev-ruby/activemodel-4*[ruby_targets_ruby20] >=dev-ruby/activemodel-4.0.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( =dev-ruby/activemodel-4*[ruby_targets_ruby21] >=dev-ruby/activemodel-4.0.1[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] )
REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 )
SLOT=1
SRC_URI=https://github.com/rails/protected_attributes/archive/v1.0.8.tar.gz -> protected_attributes-1.0.8.tar.gz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de java-utils-2 8cdf065211fa6d6687bdc3f3ebe12efc multilib 62927b3db3a589b0806255f3a002d5d3 ruby-fakegem 59aa129a3b9dc9e6225a0622860d2f54 ruby-ng a1c75617b3482d513ad41d1aea8dbf8f ruby-utils a74e21a353442acf697b6c82e7df6df8 toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=f21d9c14e99f4fb43159915d31def110

@ -9,6 +9,6 @@ LICENSE=MIT
RDEPEND=ruby_targets_ruby19? ( =dev-ruby/activemodel-4*:*[ruby_targets_ruby19] >=dev-ruby/activemodel-4.0.1:*[ruby_targets_ruby19] ) ruby_targets_ruby20? ( =dev-ruby/activemodel-4*:*[ruby_targets_ruby20] >=dev-ruby/activemodel-4.0.1:*[ruby_targets_ruby20] ) ruby_targets_ruby21? ( =dev-ruby/activemodel-4*:*[ruby_targets_ruby21] >=dev-ruby/activemodel-4.0.1:*[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] )
REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 )
SLOT=1
SRC_URI=https://github.com/rails/protected_attributes/archive/v1.1.0.tar.gz -> protected_attributes-1.1.0.tar.gz
SRC_URI=https://github.com/rails/protected_attributes/archive/v1.1.1.tar.gz -> protected_attributes-1.1.1.tar.gz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de java-utils-2 8cdf065211fa6d6687bdc3f3ebe12efc multilib 62927b3db3a589b0806255f3a002d5d3 ruby-fakegem 59aa129a3b9dc9e6225a0622860d2f54 ruby-ng a1c75617b3482d513ad41d1aea8dbf8f ruby-utils a74e21a353442acf697b6c82e7df6df8 toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=8c0eb012532db83869513c23c6fe0c3f
_md5_=59210713bfa293870877ab0cdbd37736

@ -4,7 +4,7 @@ DESCRIPTION=A system for large project software construction, which is simple to
EAPI=5
HOMEPAGE=http://www.boost.org/doc/tools/build/index.html
IUSE=examples python test python_targets_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=Boost-1.0
RDEPEND=python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] ) !<dev-libs/boost-1.34.0 !<=dev-util/boost-build-1.35.0-r1
REQUIRED_USE=python? ( python_targets_python2_7 ) test? ( python_targets_python2_7 )
@ -12,4 +12,4 @@ RESTRICT=test
SLOT=0
SRC_URI=mirror://sourceforge/boost/boost_1_56_0.tar.bz2
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic c9602887773166fe300444712fc7ff98 multilib 62927b3db3a589b0806255f3a002d5d3 python-single-r1 351da1aa73960a282591217fb57c1bb8 python-utils-r1 ae9becb5d45344c01939c3f57df0d3fd toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=462abe4a1f04d88c8d8bcd6d6c30860d
_md5_=9bbc156608134c6a92a86dba8782f22b

@ -8,6 +8,6 @@ LICENSE=MIT
RDEPEND=media-fonts/dejavu media-libs/freetype !dev-util/jenkins-bin:lts >=virtual/jre-1.7.0
RESTRICT=mirror
SLOT=0
SRC_URI=http://mirrors.jenkins-ci.org/war/1.617/jenkins.war -> jenkins-bin-1.617.war
SRC_URI=http://mirrors.jenkins-ci.org/war/1.620/jenkins.war -> jenkins-bin-1.620.war
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de multilib 62927b3db3a589b0806255f3a002d5d3 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 42408102d713fbad60ca21349865edb4 user f54e098dd38ba1c0847a13e685b87747
_md5_=e45ce4050b4ebe566f2106d67daba64d
_md5_=93f75f3d3be857b3944bdb304e59d1e1

@ -1,13 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=app-crypt/libsecret >=dev-libs/glib-2.32:2 >=dev-libs/dbus-glib-0.88 >=sys-apps/dbus-1.4.1 >=sys-auth/polkit-0.96-r1 >=x11-libs/gtk+-3.4:3[introspection?] >=x11-libs/libnotify-0.7.0 app-text/iso-codes >=net-misc/networkmanager-1.0.0[introspection?] net-misc/mobile-broadband-provider-info bluetooth? ( >=net-wireless/gnome-bluetooth-2.27.6:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) modemmanager? ( >=net-misc/modemmanager-0.7.990 ) virtual/freedesktop-icon-theme virtual/notification-daemon virtual/libgudev:= virtual/pkgconfig >=dev-util/intltool-0.40 app-arch/xz-utils >=sys-apps/sed-4
DEPEND=app-crypt/libsecret >=dev-libs/glib-2.32:2 >=dev-libs/dbus-glib-0.88 >=sys-apps/dbus-1.4.1 >=sys-auth/polkit-0.96-r1 >=x11-libs/gtk+-3.4:3[introspection?] >=x11-libs/libnotify-0.7.0 app-text/iso-codes >=net-misc/networkmanager-1.0.0[introspection?] net-misc/mobile-broadband-provider-info bluetooth? ( >=net-wireless/gnome-bluetooth-2.27.6:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) modemmanager? ( >=net-misc/modemmanager-0.7.990 ) virtual/freedesktop-icon-theme virtual/libgudev:= virtual/pkgconfig >=dev-util/intltool-0.40 app-arch/xz-utils >=sys-apps/sed-4
DESCRIPTION=GNOME applet for NetworkManager
EAPI=5
HOMEPAGE=https://wiki.gnome.org/Projects/NetworkManager
IUSE=bluetooth +introspection modemmanager
KEYWORDS=~alpha amd64 ~arm ~sparc x86
KEYWORDS=~alpha amd64 ~arm ~ppc ~ppc64 ~sparc x86
LICENSE=GPL-2+
RDEPEND=app-crypt/libsecret >=dev-libs/glib-2.32:2 >=dev-libs/dbus-glib-0.88 >=sys-apps/dbus-1.4.1 >=sys-auth/polkit-0.96-r1 >=x11-libs/gtk+-3.4:3[introspection?] >=x11-libs/libnotify-0.7.0 app-text/iso-codes >=net-misc/networkmanager-1.0.0[introspection?] net-misc/mobile-broadband-provider-info bluetooth? ( >=net-wireless/gnome-bluetooth-2.27.6:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) modemmanager? ( >=net-misc/modemmanager-0.7.990 ) virtual/freedesktop-icon-theme virtual/notification-daemon virtual/libgudev:=
PDEPEND=virtual/notification-daemon
RDEPEND=app-crypt/libsecret >=dev-libs/glib-2.32:2 >=dev-libs/dbus-glib-0.88 >=sys-apps/dbus-1.4.1 >=sys-auth/polkit-0.96-r1 >=x11-libs/gtk+-3.4:3[introspection?] >=x11-libs/libnotify-0.7.0 app-text/iso-codes >=net-misc/networkmanager-1.0.0[introspection?] net-misc/mobile-broadband-provider-info bluetooth? ( >=net-wireless/gnome-bluetooth-2.27.6:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) modemmanager? ( >=net-misc/modemmanager-0.7.990 ) virtual/freedesktop-icon-theme virtual/libgudev:=
SLOT=0
SRC_URI=mirror://gnome/sources/network-manager-applet/1.0/network-manager-applet-1.0.2.tar.xz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 45882dc8beda2ffd09ad51fb3f22b669 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 62927b3db3a589b0806255f3a002d5d3 toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=3f9424e20006029dc04d417170ae18e6
_md5_=80728903b2772c6e0b39f7194c4a0cb1

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install postinst preinst prepare setup test
DEPEND=dev-libs/libdaemon dev-libs/expat >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] gdbm? ( >=sys-libs/gdbm-1.10-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qt4? ( dev-qt/qtcore:4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk? ( x11-libs/gtk+:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk3? ( x11-libs/gtk+:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( >=sys-apps/dbus-1.6.18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kernel_linux? ( sys-libs/libcap ) introspection? ( dev-libs/gobject-introspection:= ) mono? ( dev-lang/mono gtk? ( dev-dotnet/gtk-sharp ) ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[gdbm] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] gtk? ( dev-python/pygtk ) dbus? ( dev-python/dbus-python ) ) bookmarks? ( dev-python/twisted-core dev-python/twisted-web ) dev-util/intltool >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] doc? ( app-doc/doxygen ) !<sys-devel/gettext-0.18.1.1-r3 =sys-devel/automake-1.11* >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig
DESCRIPTION=System which facilitates service discovery on a local network
EAPI=5
HOMEPAGE=http://avahi.org/
IUSE=autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono nls python qt4 selinux test utils abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 python_targets_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux
LICENSE=LGPL-2.1
RDEPEND=dev-libs/libdaemon dev-libs/expat >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] gdbm? ( >=sys-libs/gdbm-1.10-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qt4? ( dev-qt/qtcore:4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk? ( x11-libs/gtk+:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk3? ( x11-libs/gtk+:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( >=sys-apps/dbus-1.6.18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kernel_linux? ( sys-libs/libcap ) introspection? ( dev-libs/gobject-introspection:= ) mono? ( dev-lang/mono gtk? ( dev-dotnet/gtk-sharp ) ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[gdbm] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] gtk? ( dev-python/pygtk ) dbus? ( dev-python/dbus-python ) ) bookmarks? ( dev-python/twisted-core dev-python/twisted-web ) howl-compat? ( !net-misc/howl ) mdnsresponder-compat? ( !net-misc/mDNSResponder ) selinux? ( sec-policy/selinux-avahi )
REQUIRED_USE=utils? ( || ( gtk gtk3 ) ) python? ( dbus gdbm ) mono? ( dbus ) howl-compat? ( dbus ) mdnsresponder-compat? ( dbus )
SLOT=0
SRC_URI=http://avahi.org/download/avahi-0.6.31.tar.gz
_eclasses_=autotools a9597abac7226d89ad9d010abeef6cfb eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic c9602887773166fe300444712fc7ff98 libtool 52d0e17251d04645ffaa61bfdd858944 mono-env 59ca1177366cc9e14521d3501e9bb281 multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 62927b3db3a589b0806255f3a002d5d3 multilib-build e733e978b7fa70607cc221fd9c070db6 multilib-minimal 13dd976916c35a1e2c8d170e840c7018 python-r1 23846c6ba39f6655e2027001eeed8e81 python-utils-r1 ae9becb5d45344c01939c3f57df0d3fd systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 42408102d713fbad60ca21349865edb4 user f54e098dd38ba1c0847a13e685b87747
_md5_=9e7fe2ecdc8d8566a64db67011bcae58

@ -1,5 +1,5 @@
DEFINED_PHASES=compile configure install prepare setup test
DEPEND=>=dev-libs/libtasn1-3.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/nettle-2.7[gmp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-devel/autogen crywrap? ( net-dns/libidn ) dane? ( >=net-dns/unbound-1.4.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) guile? ( >=dev-scheme/guile-1.8:*[networking] ) nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.20.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) >=sys-devel/automake-1.11.6 >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] doc? ( dev-util/gtk-doc ) nls? ( sys-devel/gettext ) test? ( app-misc/datefudge ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.14.1:1.14 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DEPEND=>=dev-libs/libtasn1-3.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/nettle-2.7[gmp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-devel/autogen crywrap? ( net-dns/libidn ) dane? ( >=net-dns/unbound-1.4.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) guile? ( >=dev-scheme/guile-1.8:*[networking] ) nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.20.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) >=sys-devel/automake-1.11.6 >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] doc? ( sys-apps/texinfo dev-util/gtk-doc ) nls? ( sys-devel/gettext ) test? ( app-misc/datefudge ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.14.1:1.14 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=A TLS 1.2 and SSL 3.0 implementation for the GNU project
EAPI=5
HOMEPAGE=http://www.gnutls.org/
@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/libtasn1-3.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,ab
SLOT=0
SRC_URI=mirror://gnupg/gnutls/v3.3/gnutls-3.3.16.tar.xz
_eclasses_=autotools a9597abac7226d89ad9d010abeef6cfb eutils 9fb270e417e0e83d64ca52586c4a79de libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 62927b3db3a589b0806255f3a002d5d3 multilib-build e733e978b7fa70607cc221fd9c070db6 multilib-minimal 13dd976916c35a1e2c8d170e840c7018 toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=bb8b097c80f76228c97a3f23dfdec2bf
_md5_=bca8541b7b44f34fb5d5a315010026bb

@ -1,5 +1,5 @@
DEFINED_PHASES=compile configure install prepare setup test
DEPEND=>=dev-libs/libtasn1-3.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/nettle-3.1[gmp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] tools? ( sys-devel/autogen ) crywrap? ( net-dns/libidn ) dane? ( >=net-dns/unbound-1.4.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) guile? ( >=dev-scheme/guile-1.8:*[networking] ) nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.23.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) >=sys-devel/automake-1.11.6 >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] doc? ( dev-util/gtk-doc ) nls? ( sys-devel/gettext ) test? ( app-misc/datefudge ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.14.1:1.14 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DEPEND=>=dev-libs/libtasn1-3.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/nettle-3.1[gmp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gmp-5.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] tools? ( sys-devel/autogen ) crywrap? ( net-dns/libidn ) dane? ( >=net-dns/unbound-1.4.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) guile? ( >=dev-scheme/guile-1.8:*[networking] ) nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.23.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) >=sys-devel/automake-1.11.6 >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] doc? ( sys-apps/texinfo dev-util/gtk-doc ) nls? ( sys-devel/gettext ) test? ( app-misc/datefudge ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.14.1:1.14 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=A TLS 1.2 and SSL 3.0 implementation for the GNU project
EAPI=5
HOMEPAGE=http://www.gnutls.org/
@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/libtasn1-3.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,ab
SLOT=0/30
SRC_URI=mirror://gnupg/gnutls/v3.4/gnutls-3.4.3.tar.xz
_eclasses_=autotools a9597abac7226d89ad9d010abeef6cfb eutils 9fb270e417e0e83d64ca52586c4a79de libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 62927b3db3a589b0806255f3a002d5d3 multilib-build e733e978b7fa70607cc221fd9c070db6 multilib-minimal 13dd976916c35a1e2c8d170e840c7018 toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=8b7c7f77bf8dadb3dd5d9ac8434b592c
_md5_=c346aed0c3d1a8e99c8c91560b457ecf

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=dev-libs/libgdata-0.15.2:0=[gnome] >=dev-libs/glib-2.35.1:2 >=net-libs/gnome-online-accounts-3.13.3 >=media-libs/grilo-0.2.6:0.2 >=net-libs/libgfbgraph-0.2.2:0.2 >=net-libs/libzapojit-0.0.2 >=app-misc/tracker-1:0= virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DESCRIPTION=Crawls through your online content
EAPI=5
HOMEPAGE=https://wiki.gnome.org/Projects/GnomeOnlineMiners
KEYWORDS=amd64 x86
LICENSE=GPL-2+
RDEPEND=>=dev-libs/libgdata-0.15.2:0=[gnome] >=dev-libs/glib-2.35.1:2 >=net-libs/gnome-online-accounts-3.13.3 >=media-libs/grilo-0.2.6:0.2 >=net-libs/libgfbgraph-0.2.2:0.2 >=net-libs/libzapojit-0.0.2 >=app-misc/tracker-1:0=
SLOT=0
SRC_URI=mirror://gnome/sources/gnome-online-miners/3.14/gnome-online-miners-3.14.1.tar.xz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 45882dc8beda2ffd09ad51fb3f22b669 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 62927b3db3a589b0806255f3a002d5d3 toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=6a66f2889e4d80b6590a0bff29c2ba3c

@ -1,12 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack
DEPEND=>=app-misc/tracker-1:0= >=dev-libs/glib-2.35.1:2 >=dev-libs/libgdata-0.15.2:0=[gnome] >=media-libs/grilo-0.2.6:0.2 >=net-libs/gnome-online-accounts-3.13.3 >=net-libs/libgfbgraph-0.2.2:0.2 >=net-libs/libzapojit-0.0.2 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DEPEND=>=app-misc/tracker-1:0= >=dev-libs/glib-2.35.1:2 >=dev-libs/libgdata-0.15.2:0=[gnome] >=media-libs/grilo-0.2.6:0.2 >=net-libs/gnome-online-accounts-3.13.3 >=net-libs/libgfbgraph-0.2.2:0.2 >=net-libs/libzapojit-0.0.2 flickr? ( media-plugins/grilo-plugins[flickr] ) virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
DESCRIPTION=Crawls through your online content
EAPI=5
HOMEPAGE=https://wiki.gnome.org/Projects/GnomeOnlineMiners
IUSE=flickr
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2+
RDEPEND=>=app-misc/tracker-1:0= >=dev-libs/glib-2.35.1:2 >=dev-libs/libgdata-0.15.2:0=[gnome] >=media-libs/grilo-0.2.6:0.2 >=net-libs/gnome-online-accounts-3.13.3 >=net-libs/libgfbgraph-0.2.2:0.2 >=net-libs/libzapojit-0.0.2
RDEPEND=>=app-misc/tracker-1:0= >=dev-libs/glib-2.35.1:2 >=dev-libs/libgdata-0.15.2:0=[gnome] >=media-libs/grilo-0.2.6:0.2 >=net-libs/gnome-online-accounts-3.13.3 >=net-libs/libgfbgraph-0.2.2:0.2 >=net-libs/libzapojit-0.0.2 flickr? ( media-plugins/grilo-plugins[flickr] )
SLOT=0
SRC_URI=mirror://gnome/sources/gnome-online-miners/3.14/gnome-online-miners-3.14.2.tar.xz
SRC_URI=mirror://gnome/sources/gnome-online-miners/3.14/gnome-online-miners-3.14.3.tar.xz
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 45882dc8beda2ffd09ad51fb3f22b669 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 62927b3db3a589b0806255f3a002d5d3 toolchain-funcs 42408102d713fbad60ca21349865edb4 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=f528fd9b5524861a1f8a630c8fcb53cb
_md5_=a20c37d8d4225a6cbd9e802edf7ab8d9

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

Loading…
Cancel
Save