Sync with portage [Wed Mar 15 18:35:00 MSK 2017].

This commit is contained in:
root 2017-03-15 18:35:01 +03:00
parent 1eb8f887f8
commit 9496ac7c0d
82 changed files with 570 additions and 232 deletions

View file

@ -1 +1,2 @@
DIST gnome-autoar-0.1.1.tar.xz 292536 SHA256 f65cb810b562dc038ced739fbf59739fd5df1a8e848636e21f363ded9f349ac9 SHA512 59606cc7e3150d457b343f99bf30732bc9ea4bb7368133bba771a17d3253f23c8c60a35f4d686569fc2a9d4b4ab1e095b0f8cd7053493e1951e9d193a60c1e31 WHIRLPOOL 4cfc478c9956490cab5b48133585384e1282abf677290c94c93d59eba26ed4a5438d36622cfb73163d28a6692c990fb224782adbe9c9948814d3b83abb3ffcae
DIST gnome-autoar-0.2.1.tar.xz 295316 SHA256 f642935e9213663c114988403fba26c02e79a644b33cb0e4da0d4aec570fb1fb SHA512 c41961a97e04f23407b8929e1a66bb2643b39079c3ea8f21cd00647354d9e0ba1ef91e2f7da976f9f76a74d761e63ac6acfd9ef148ea0b1dc8069dd504df826c WHIRLPOOL 164011d7472c8bcb8e8e3ba534a2b6b8693b5da91186bbe3bb7facc07b368111c414adbdd02c9cdd83d76a31455d423b610d2bbc60dc314e0ce84724df762af4

View file

@ -0,0 +1,43 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
VALA_USE_DEPEND="vapigen"
inherit gnome2 vala
DESCRIPTION="Automatic archives creating and extracting library"
HOMEPAGE="https://git.gnome.org/browse/gnome-autoar"
LICENSE="LGPL-2+ GPL-2+"
SLOT="0"
IUSE="gtk +introspection vala"
REQUIRED_USE="vala? ( introspection )"
KEYWORDS="~alpha ~amd64 ~x86"
RDEPEND="
>=app-arch/libarchive-3.2.0
>=dev-libs/glib-2.35.6:2
gtk? ( >=x11-libs/gtk+-3.2:3 )
introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
"
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-am-1.14
gnome-base/gnome-common
virtual/pkgconfig
vala? ( $(vala_depend) )
"
src_prepare() {
use vala && vala_src_prepare
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure \
--disable-static \
$(use_enable introspection) \
$(use_enable vala) \
$(use_enable gtk)
}

View file

@ -15,7 +15,7 @@ SRC_URI="https://www.jetico.com/linux/BCWipe-${MY_PV}.tar.gz
LICENSE="bestcrypt"
SLOT="0"
IUSE="doc"
KEYWORDS="amd64 ~arm ~ppc x86"
KEYWORDS="amd64 ~arm ppc x86"
DEPEND=""
RDEPEND=""

View file

@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/mcrypt/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86 ~x86-macos"
KEYWORDS="amd64 ppc sparc x86 ~x86-macos"
IUSE="nls"
DEPEND=">=dev-libs/libmcrypt-2.5.8

View file

@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/trousers/${PN}/${P}.tar.gz"
LICENSE="CPL-1.0"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~m68k ~s390 ~sh x86"
KEYWORDS="amd64 ~arm arm64 ~m68k ~s390 ~sh x86"
IUSE="libressl nls pkcs11 debug"
COMMON_DEPEND="

View file

@ -0,0 +1,29 @@
From 2e1bd073426b42a7e207314f1cef1402509ce12a Mon Sep 17 00:00:00 2001
From: "Jan Alexander Steffens (heftig)" <jan.steffens@gmail.com>
Date: Mon, 6 Mar 2017 06:28:32 +0100
Subject: tests: Fix setting properties on i686
Without the cast, an integer literal will have to wrong size for a
64-bit integer parameter.
https://bugzilla.gnome.org/show_bug.cgi?id=779641
---
gdata/tests/general.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gdata/tests/general.c b/gdata/tests/general.c
index 6b41f25..75232de 100644
--- a/gdata/tests/general.c
+++ b/gdata/tests/general.c
@@ -1309,7 +1309,7 @@ test_query_properties (void)
g_assert_##cmptype (gdata_query_get_##name_underscores (query), ==, new_val); \
\
notification_received = FALSE; \
- g_object_set (query, name_hyphens, new_val2, NULL); \
+ g_object_set (query, name_hyphens, (val_type) new_val2, NULL); \
g_assert (notification_received == TRUE); \
\
g_assert_##cmptype (gdata_query_get_##name_underscores (query), ==, new_val2); \
--
cgit v0.12

View file

@ -0,0 +1,204 @@
From 106937d394fe3b8edbfb506273ae429d7ded2c2c Mon Sep 17 00:00:00 2001
From: Philip Withnall <philip.withnall@collabora.co.uk>
Date: Tue, 20 Sep 2016 17:04:33 -0700
Subject: core: Assert that all downloads, uploads and queries are HTTPS
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
All callers should be using HTTPS already — for peace of mind, lets
assert thats the case.
---
gdata/gdata-download-stream.c | 7 ++++---
gdata/gdata-service.c | 4 +++-
gdata/gdata-upload-stream.c | 10 ++++++++--
gdata/tests/general.c | 6 +++---
gdata/tests/streams.c | 26 ++++++++++++++++++++------
5 files changed, 38 insertions(+), 15 deletions(-)
diff --git a/gdata/gdata-download-stream.c b/gdata/gdata-download-stream.c
index 67a3514..7613fd2 100644
--- a/gdata/gdata-download-stream.c
+++ b/gdata/gdata-download-stream.c
@@ -233,7 +233,7 @@ gdata_download_stream_class_init (GDataDownloadStreamClass *klass)
/**
* GDataDownloadStream:download-uri:
*
- * The URI of the file to download.
+ * The URI of the file to download. This must be HTTPS.
*
* Since: 0.5.0
**/
@@ -355,9 +355,10 @@ gdata_download_stream_constructor (GType type, guint n_construct_params, GObject
priv->cancellable = g_cancellable_new ();
priv->network_cancellable_id = g_cancellable_connect (priv->cancellable, (GCallback) cancellable_cancel_cb, priv->network_cancellable, NULL);
- /* Build the message */
+ /* Build the message. The URI must be HTTPS. */
_uri = soup_uri_new (priv->download_uri);
soup_uri_set_port (_uri, _gdata_service_get_https_port ());
+ g_assert_cmpstr (soup_uri_get_scheme (_uri), ==, SOUP_URI_SCHEME_HTTPS);
priv->message = soup_message_new_from_uri (SOUP_METHOD_GET, _uri);
soup_uri_free (_uri);
@@ -928,7 +929,7 @@ reset_network_thread (GDataDownloadStream *self)
* gdata_download_stream_new:
* @service: a #GDataService
* @domain: (allow-none): the #GDataAuthorizationDomain to authorize the download, or %NULL
- * @download_uri: the URI to download
+ * @download_uri: the URI to download; this must be HTTPS
* @cancellable: (allow-none): a #GCancellable for the entire download stream, or %NULL
*
* Creates a new #GDataDownloadStream, allowing a file to be downloaded from a GData service using standard #GInputStream API.
diff --git a/gdata/gdata-service.c b/gdata/gdata-service.c
index 2433339..9db75ba 100644
--- a/gdata/gdata-service.c
+++ b/gdata/gdata-service.c
@@ -581,9 +581,11 @@ _gdata_service_build_message (GDataService *self, GDataAuthorizationDomain *doma
GDataServiceClass *klass;
SoupURI *_uri;
- /* Create the message. Allow changing the HTTPS port just for testing. */
+ /* Create the message. Allow changing the HTTPS port just for testing,
+ * but require that the URI is always HTTPS for privacy. */
_uri = soup_uri_new (uri);
soup_uri_set_port (_uri, _gdata_service_get_https_port ());
+ g_assert_cmpstr (soup_uri_get_scheme (_uri), ==, SOUP_URI_SCHEME_HTTPS);
message = soup_message_new_from_uri (method, _uri);
soup_uri_free (_uri);
diff --git a/gdata/gdata-upload-stream.c b/gdata/gdata-upload-stream.c
index bb52ac8..c8340be 100644
--- a/gdata/gdata-upload-stream.c
+++ b/gdata/gdata-upload-stream.c
@@ -307,7 +307,7 @@ gdata_upload_stream_class_init (GDataUploadStreamClass *klass)
/**
* GDataUploadStream:upload-uri:
*
- * The URI to upload the data and metadata to.
+ * The URI to upload the data and metadata to. This must be HTTPS.
*
* Since: 0.5.0
**/
@@ -428,11 +428,17 @@ gdata_upload_stream_constructed (GObject *object)
{
GDataUploadStreamPrivate *priv;
GDataServiceClass *service_klass;
+ SoupURI *uri = NULL;
/* Chain up to the parent class */
G_OBJECT_CLASS (gdata_upload_stream_parent_class)->constructed (object);
priv = GDATA_UPLOAD_STREAM (object)->priv;
+ /* The upload URI must be HTTPS. */
+ uri = soup_uri_new (priv->upload_uri);
+ g_assert_cmpstr (soup_uri_get_scheme (uri), ==, SOUP_URI_SCHEME_HTTPS);
+ soup_uri_free (uri);
+
/* Create a #GCancellable for the entire upload operation if one wasn't specified for #GDataUploadStream:cancellable during construction */
if (priv->cancellable == NULL)
priv->cancellable = g_cancellable_new ();
@@ -1300,7 +1306,7 @@ create_network_thread (GDataUploadStream *self, GError **error)
* @service: a #GDataService
* @domain: (allow-none): the #GDataAuthorizationDomain to authorize the upload, or %NULL
* @method: the HTTP method to use
- * @upload_uri: the URI to upload
+ * @upload_uri: the URI to upload, which must be HTTPS
* @entry: (allow-none): the entry to upload as metadata, or %NULL
* @slug: the file's slug (filename)
* @content_type: the content type of the file being uploaded
diff --git a/gdata/tests/general.c b/gdata/tests/general.c
index 070d34c..2420629 100644
--- a/gdata/tests/general.c
+++ b/gdata/tests/general.c
@@ -1425,7 +1425,7 @@ test_service_network_error (void)
service = g_object_new (GDATA_TYPE_SERVICE, NULL);
/* Try a query which should always fail due to errors resolving the hostname */
- g_assert (gdata_service_query (service, NULL, "http://thisshouldnotexist.invalid", NULL, GDATA_TYPE_ENTRY,
+ g_assert (gdata_service_query (service, NULL, "https://thisshouldnotexist.invalid", NULL, GDATA_TYPE_ENTRY,
NULL, NULL, NULL, &error) == NULL);
g_assert_error (error, GDATA_SERVICE_ERROR, GDATA_SERVICE_ERROR_NETWORK_ERROR);
g_clear_error (&error);
@@ -1434,11 +1434,11 @@ test_service_network_error (void)
* Filed as bgo#632354. */
#if 0
/* Try one with a bad proxy set */
- proxy_uri = soup_uri_new ("http://thisshouldalsonotexist.invalid/proxy");
+ proxy_uri = soup_uri_new ("https://thisshouldalsonotexist.invalid/proxy");
gdata_service_set_proxy_uri (service, proxy_uri);
soup_uri_free (proxy_uri);
- g_assert (gdata_service_query (service, "http://google.com", NULL, GDATA_TYPE_ENTRY, NULL, NULL, NULL, &error) == NULL);
+ g_assert (gdata_service_query (service, "https://google.com", NULL, GDATA_TYPE_ENTRY, NULL, NULL, NULL, &error) == NULL);
g_assert_error (error, GDATA_SERVICE_ERROR, GDATA_SERVICE_ERROR_PROXY_ERROR);
g_clear_error (&error);
#endif
diff --git a/gdata/tests/streams.c b/gdata/tests/streams.c
index 91b35c6..1de8e50 100644
--- a/gdata/tests/streams.c
+++ b/gdata/tests/streams.c
@@ -161,6 +161,7 @@ create_server (SoupServerCallback callback, gpointer user_data, GMainLoop **main
GMainContext *context;
SoupServer *server;
#ifdef HAVE_LIBSOUP_2_47_3
+ gchar *cert_path = NULL, *key_path = NULL;
GError *error = NULL;
#else /* if !HAVE_LIBSOUP_2_47_3 */
union {
@@ -178,12 +179,21 @@ create_server (SoupServerCallback callback, gpointer user_data, GMainLoop **main
#ifdef HAVE_LIBSOUP_2_47_3
server = soup_server_new (NULL, NULL);
+ cert_path = g_test_build_filename (G_TEST_DIST, "cert.pem", NULL);
+ key_path = g_test_build_filename (G_TEST_DIST, "key.pem", NULL);
+
+ soup_server_set_ssl_cert_file (server, cert_path, key_path, &error);
+ g_assert_no_error (error);
+
+ g_free (key_path);
+ g_free (cert_path);
+
soup_server_add_handler (server, NULL, callback, user_data, NULL);
g_main_context_push_thread_default (context);
soup_server_listen_local (server, 0 /* random port */,
- 0 /* no options */, &error);
+ SOUP_SERVER_LISTEN_HTTPS, &error);
g_assert_no_error (error);
g_main_context_pop_thread_default (context);
@@ -216,20 +226,24 @@ build_server_uri (SoupServer *server)
{
#ifdef HAVE_LIBSOUP_2_47_3
GSList *uris; /* owned */
+ GSList *l; /* unowned */
gchar *retval = NULL; /* owned */
uris = soup_server_get_uris (server);
- if (uris == NULL) {
- return NULL;
- }
- retval = soup_uri_to_string (uris->data, FALSE);
+ for (l = uris; l != NULL && retval == NULL; l = l->next) {
+ if (soup_uri_get_scheme (l->data) == SOUP_URI_SCHEME_HTTPS) {
+ retval = soup_uri_to_string (l->data, FALSE);
+ }
+ }
g_slist_free_full (uris, (GDestroyNotify) soup_uri_free);
+ g_assert (retval != NULL);
+
return retval;
#else /* if !HAVE_LIBSOUP_2_47_3 */
- return g_strdup_printf ("http://%s:%u/",
+ return g_strdup_printf ("https://%s:%u/",
soup_address_get_physical (soup_socket_get_local_address (soup_server_get_listener (server))),
soup_server_get_port (server));
#endif /* !HAVE_LIBSOUP_2_47_3 */
--
cgit v0.12

View file

@ -29,7 +29,7 @@ RDEPEND="
>=net-libs/libsoup-2.42.0:2.4[introspection?]
>=x11-libs/gdk-pixbuf-2.14:2
crypt? ( app-crypt/gcr:= )
gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:=[introspection?] )
gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= )
introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
"
DEPEND="${RDEPEND}
@ -41,6 +41,13 @@ DEPEND="${RDEPEND}
"
src_prepare() {
# https://bugzilla.gnome.org/show_bug.cgi?id=780081 - remove with 0.17.8
if use test && ! has_version '>=net-libs/libsoup-2.55.90:2.4'; then
eapply -R "${FILESDIR}/${PV}"-streams-https-tests.patch
fi
# x86 test fix from upstream git post-0.17.7
eapply "${FILESDIR}/${PV}"-fix-x86-tests.patch
use vala && vala_src_prepare
gnome2_src_prepare
}

View file

@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/${PN}/releases/${P}.tbz"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~arm"
IUSE="+ocamlopt test"
RDEPEND="

View file

@ -11,7 +11,7 @@ SRC_URI="https://github.com/mjambon/cppo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SLOT="0/${PV}"
LICENSE="BSD"
KEYWORDS="amd64 ppc x86"
KEYWORDS="amd64 ~arm ppc x86"
IUSE="examples"

View file

@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/jsonm/releases/${P}.tbz"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~arm"
IUSE=""
RDEPEND=">=dev-ml/uutf-1.0.0:=

View file

@ -19,7 +19,7 @@ DEPEND="${RDEPEND}
SLOT="0/${PV}"
LICENSE="MIT"
KEYWORDS="~amd64 ~ppc ~x86"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
src_compile() {
emake depend

View file

@ -12,7 +12,7 @@ SRC_URI="https://github.com/rdicosmo/parmap/archive/${MY_PV}.tar.gz -> ${P}.tar.
LICENSE="LGPL-2-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="+ocamlopt"
RDEPEND=">=dev-lang/ocaml-4.03:=[ocamlopt?]"

View file

@ -11,7 +11,7 @@ SRC_URI="https://github.com/dbuenzli/topkg/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~arm"
IUSE=""
RDEPEND="dev-ml/result:=

View file

@ -11,7 +11,7 @@ SRC_URI="https://github.com/ocaml/uchar/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~arm"
IUSE="+ocamlopt"
RDEPEND=">=dev-lang/ocaml-4.03:="

View file

@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/uutf/releases/${P}.tbz"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~arm"
IUSE="doc utftrip +ocamlopt test"
RDEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="check that a library is available"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~x86"
KEYWORDS="~alpha amd64 arm ~hppa ppc ~x86"
IUSE="test"
RDEPEND="

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="check that a library is available"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86"
IUSE="test"
RDEPEND="

View file

@ -1,4 +1,4 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@ -10,6 +10,6 @@ inherit perl-module
DESCRIPTION="uses File::Copy to recursively copy dirs"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
SRC_TEST="do"

View file

@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Install shared files"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
KEYWORDS="~alpha amd64 arm ~hppa ppc ~ppc64 ~sparc ~x86"
IUSE="test"
PERL_RM_FILES=( "Build.PL" ) # Using MBTiny is stupid this high up

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Install shared files"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~x86"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86"
IUSE=""
RDEPEND="

View file

@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="unified IO operations"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc x86"
KEYWORDS="~alpha amd64 arm ~hppa ppc ~sparc x86"
IUSE=""
# needs Scalar::Util

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Capture STDOUT and STDERR from Perl code, subprocesses or XS"
SLOT="0"
KEYWORDS="~alpha amd64 hppa ~mips ppc ppc64 x86 ~x86-linux"
KEYWORDS="~alpha amd64 arm hppa ~mips ppc ppc64 x86 ~x86-linux"
IUSE="test"
RDEPEND="

View file

@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="C Language Support for Inline"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
KEYWORDS="~alpha ~amd64 arm ~hppa ppc ~sparc ~x86"
IUSE="test"
DIST_TEST="do" # parallelism thwarted by race conditions

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Perl Module Compilation"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 arm ppc ~x86"
IUSE=""
RDEPEND="

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -14,7 +14,7 @@ DESCRIPTION="Perl Data Language for scientific computing"
LICENSE="|| ( Artistic GPL-1+ ) public-domain PerlDL"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 arm ppc ~x86"
IUSE="+badval doc fortran gd gsl hdf netpbm pdl2 pgplot threads"

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Acmeist PEG Parser Framework"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
KEYWORDS="~alpha ~amd64 arm ppc ~sparc ~x86"
IUSE="test"
RDEPEND="

View file

@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Acmeist PEG Parser Framework"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~x86"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86"
IUSE="test"
RDEPEND="

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -9,7 +9,7 @@ inherit perl-module
DESCRIPTION="Perl YAML Serialization using XS and libyaml"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~x86"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86"
IUSE=""
RDEPEND=""

View file

@ -9,7 +9,7 @@ inherit perl-module
DESCRIPTION="Perl YAML Serialization using XS and libyaml"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc ~x86"
KEYWORDS="~alpha amd64 arm ~hppa ppc ~sparc ~x86"
IUSE=""
RDEPEND=""

View file

@ -1,2 +1,3 @@
DIST evolution-data-server-3.20.6.tar.xz 5069584 SHA256 c9280149477cc0c75c20214814cfc54f0e5827c40080dadbbe4b4188479913aa SHA512 0526e64c407bd569b8fb45faeb902cdc15e46e5020c4187d76102f8e0b3173fdd0a742383cfed8de0351dd719c2ad33b39c7d4cd656312d07526ae8b85198dbc WHIRLPOOL e229d245ae79c6ecc2910bc6f110314e568d6afc546157af4e2a98be85e67ac1615f4085f3a4df2a94e658881ef6aa1c6d336b4ae3211bd0a85b2a81eef64f91
DIST evolution-data-server-3.22.4.tar.xz 5559372 SHA256 0c9c64f209bfd50dbace342ab3b673bcea74ad5fe01a7bc87c1a98d997349cb8 SHA512 38773c4ac65e69b02fd6d5abb0db843f038c383391e1c1006e54bda518f89741b6637f480d70e3cd79b31a812190d55ceec5c8b187d62d9ce582b0d6c362850c WHIRLPOOL d7808803328fcdcaab60934f7b674c599c04242bf6edd751cdc32de99b672a5f6d91b0f48bd42596c66400c09a73e26340b443216118667bfa58ca0fd5cb7cb8
DIST evolution-data-server-3.22.6.tar.xz 5566420 SHA256 0a69b9d2c03f7a6f68abbd7c7f8c76d333aca9e6102e796d88daed3284e91ca6 SHA512 b3b2efce558fe1f11d4fe6a6f4c7ef875ef5e5498e23a37d5a32e90731aded0199b3c8c5adbc09e083b33875b62ce6e084f0184a162dbdd05b0141a40a1f5a94 WHIRLPOOL 1be4378e756855eeb06b406c4823e59598db2cf9aee829bb28a1c6ee259f2cdb346eab6f46c5f7a6c554c77b5ee0547b0fa62dd883ac98e9060dfe6895a934b8

View file

@ -0,0 +1,128 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GNOME2_LA_PUNT="yes"
PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
VALA_USE_DEPEND="vapigen"
inherit db-use flag-o-matic gnome2 python-any-r1 systemd vala virtualx
DESCRIPTION="Evolution groupware backend"
HOMEPAGE="https://wiki.gnome.org/Apps/Evolution"
# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+".
LICENSE="|| ( LGPL-2 LGPL-3 ) BSD Sleepycat"
SLOT="0/59" # subslot = libcamel-1.2 soname version
IUSE="api-doc-extras berkdb +gnome-online-accounts +gtk google +introspection ipv6 ldap kerberos vala +weather"
REQUIRED_USE="vala? ( introspection )"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
# sys-libs/db is only required for migrating from <3.13 versions
# gdata-0.15.1 is required for google tasks
# gdata-0.17.7 soft required for new gdata_feed_get_next_page_token API to handle more than 100 google tasks
# berkdb needed only for migrating old calendar data, bug #519512
RDEPEND="
>=app-crypt/gcr-3.4
>=app-crypt/libsecret-0.5[crypt]
>=dev-db/sqlite-3.7.17:=
>=dev-libs/glib-2.46:2
>=dev-libs/libgdata-0.10:=
>=dev-libs/libical-0.43:=
>=dev-libs/libxml2-2
>=dev-libs/nspr-4.4:=
>=dev-libs/nss-3.9:=
>=net-libs/libsoup-2.42:2.4
dev-libs/icu:=
sys-libs/zlib:=
virtual/libiconv
berkdb? ( >=sys-libs/db-4:= )
gtk? (
>=app-crypt/gcr-3.4[gtk]
>=x11-libs/gtk+-3.10:3
)
google? (
>=dev-libs/json-glib-1.0.4
>=dev-libs/libgdata-0.17.7:=
>=net-libs/webkit-gtk-2.11.91:4
)
gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= )
introspection? ( >=dev-libs/gobject-introspection-0.9.12:= )
kerberos? ( virtual/krb5:= )
ldap? ( >=net-nds/openldap-2:= )
weather? ( >=dev-libs/libgweather-3.10:2= )
"
DEPEND="${RDEPEND}
${PYTHON_DEPS}
dev-util/gdbus-codegen
dev-util/gperf
>=dev-util/gtk-doc-am-1.14
>=dev-util/intltool-0.35.5
>=gnome-base/gnome-common-2
>=sys-devel/gettext-0.17
virtual/pkgconfig
vala? ( $(vala_depend) )
"
# Some tests fail due to missings locales.
# Also, dbus tests are flacky, bugs #397975 #501834
# It looks like a nightmare to disable those for now.
RESTRICT="test"
pkg_setup() {
python-any-r1_pkg_setup
}
src_prepare() {
use vala && vala_src_prepare
gnome2_src_prepare
}
src_configure() {
# /usr/include/db.h is always db-1 on FreeBSD
# so include the right dir in CPPFLAGS
use berkdb && append-cppflags "-I$(db_includedir)"
# phonenumber does not exist in tree
gnome2_src_configure \
$(use_enable api-doc-extras gtk-doc) \
$(use_with api-doc-extras private-docs) \
$(usex berkdb --with-libdb="${EPREFIX}"/usr --with-libdb=no) \
$(use_enable gnome-online-accounts goa) \
$(use_enable gtk) \
$(use_enable google google-auth) \
$(use_enable google) \
$(use_enable introspection) \
$(use_enable ipv6) \
$(use_with kerberos krb5 "${EPREFIX}"/usr) \
$(use_with kerberos krb5-libs "${EPREFIX}"/usr/$(get_libdir)) \
$(use_with ldap openldap) \
$(use_enable vala vala-bindings) \
$(use_enable weather) \
--enable-largefile \
--enable-smime \
--with-systemduserunitdir="$(systemd_get_userunitdir)" \
--without-phonenumber \
--disable-examples \
--disable-uoa
}
src_test() {
unset ORBIT_SOCKETDIR
unset SESSION_MANAGER
virtx emake check
}
src_install() {
gnome2_src_install
if use ldap; then
insinto /etc/openldap/schema
doins "${FILESDIR}"/calentry.schema
dosym /usr/share/${PN}/evolutionperson.schema /etc/openldap/schema/evolutionperson.schema
fi
}

View file

@ -1,5 +1,3 @@
DIST evolution-ews-3.20.5.tar.xz 712400 SHA256 dec65397f7c7e5ac591335e3b5c0fe5f8e8ff7c624d6555d08edf74933d7e424 SHA512 1f4b850d1c7da861e727fecd4f8d7b4935b680ff72052335ace84b9518686457aaac879e0ae61fa0256e75b570770e61ae260cacdb771066dea20d80a599f175 WHIRLPOOL 4c1a36bcce66faf63549706822adc84eb44dc837f0a86f9c87588ed3257a89c1f240e94638bdff943156dc0cdaa18bbabc5f70cc6293222072d25682585dcb5f
DIST evolution-ews-3.22.1.tar.xz 714064 SHA256 678daee5933f4dfb000bb23f134523c2b10e5894c461ccf7fabfcf5af99feff8 SHA512 199632c3eaa094a999e5bbd0c5c0bd068c3d5baeb39efb785d87238809eaee331dc4420e2829aeffd89d7bb4dc951cbd05666a62a31dbc155133c83255d74c42 WHIRLPOOL deb15adea2df4959613d60dcd20dff9e9d0943615518ae88cb1d05d43a21730f2c2912a608d255a7343afcb520b266fb762ab3568c85c0b3e64b92dffaf0b0a4
DIST evolution-ews-3.22.2.tar.xz 714656 SHA256 8d8a258b4de9adbb79c4286625a7fede5c44378f4ef83ee09ff9dc766093363b SHA512 a652c7e54286a01d6068f81c0e52605bc93089bfd9cd7c95993ddee63a2df1ad4f388c7efef86f554eb1687eaf5dcc3eb647b91b1c9625206c8658ed9e648992 WHIRLPOOL 7b143bc5a02169fd8d0bb067a56ce0db3d1ef15a8503f98eb8a45905da5bf37193af5f6d04a8bb1ba5c2d19d1ad85efb5454307bf941be64deb1ac98654b32df
DIST evolution-ews-3.22.3.tar.xz 714744 SHA256 177f4112a4ceb14578ca5821f95b672e724d601024ac84500b40836d680733cc SHA512 48bb2afbfdb4dd91efd49c455b0d8cc46196741272d4105eef22a23d0b730eaf1e88dcbe0db1feeabacb1551946047515e6557a28b41029ac678c17682962627 WHIRLPOOL ca5a1798da23e3a596b87ea9b3538a25648afb832c305c9463c5d5ac43f9fb070701577b4c89dc11291733aabfb22c50c7d430ca52a4706d0f73b205cffc9503
DIST evolution-ews-3.22.4.tar.xz 714968 SHA256 d78e81cbc5873d248a0f030651c937a31c1cb1badc4ca28da702eeebb509c3c4 SHA512 c445a7c969cb7c52f13fa9f1cd3ce8fa51b1356393b808b4db6b14029575d66ada225227615907409d4124bda9106765f47cecd5769cdfdbf66640fd2695225a WHIRLPOOL 1701d3e4be35fd1c3c4127474dda5f9a54ef6f2c0aacf0601a7398ecd5ff8f67f20c538cbe53239e213a090e61c64b3ff78e7c9439e60af92cb4372b9cbc9d3f
DIST evolution-ews-3.22.6.tar.xz 715320 SHA256 eddc94d9a7f759a20dc35a8635318a425f8687bb3af5b72b94c996101c8fb0e5 SHA512 6b93faa67a6f546142b023086bf54ac34d6c7c4320ee136f58cc0ea5a018811af2080d5945c4dc68c89555a35a4194b2f92bd839b2142ae63690e94ed895b40e WHIRLPOOL b242c15acbeefc7f6010d106a7e6b9d5dd3d3bab94069cca95a2d722403dbe284ed633b818120f3a47d2d9056e2cfa160ac0984f71c24fc271debbe93aeb319d

View file

@ -1,39 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GNOME2_LA_PUNT="yes"
inherit gnome2
DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web Services"
HOMEPAGE="https://wiki.gnome.org/Apps/Evolution"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="
dev-db/sqlite:3=
>=dev-libs/glib-2.40:2
dev-libs/libical:0=
>=dev-libs/libxml2-2
>=gnome-extra/evolution-data-server-${PV}:0=
>=mail-client/evolution-${PV}:2.0
>=net-libs/libsoup-2.42:2.4
>=x11-libs/gtk+-3:3
"
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-am-1.9
>=dev-util/intltool-0.35.5
virtual/pkgconfig
test? ( net-libs/uhttpmock )
"
src_configure() {
# We don't have libmspack, needing internal lzx
gnome2_src_configure \
--with-internal-lzx \
$(use_enable test tests)
}

View file

@ -1,39 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GNOME2_LA_PUNT="yes"
inherit gnome2
DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web Services"
HOMEPAGE="https://wiki.gnome.org/Apps/Evolution"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="
dev-db/sqlite:3=
>=dev-libs/glib-2.40:2
dev-libs/libical:0=
>=dev-libs/libxml2-2
>=gnome-extra/evolution-data-server-${PV}:0=
>=mail-client/evolution-${PV}:2.0
>=net-libs/libsoup-2.42:2.4
>=x11-libs/gtk+-3:3
"
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-am-1.9
>=dev-util/intltool-0.35.5
virtual/pkgconfig
test? ( net-libs/uhttpmock )
"
src_configure() {
# We don't have libmspack, needing internal lzx
gnome2_src_configure \
--with-internal-lzx \
$(use_enable test tests)
}

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -18,6 +18,7 @@ RDEPEND="
dev-db/sqlite:3=
>=dev-libs/glib-2.40:2
dev-libs/libical:0=
>=dev-libs/libmspack-0.4
>=dev-libs/libxml2-2
>=gnome-extra/evolution-data-server-${PV}:0=
>=mail-client/evolution-${PV}:2.0
@ -32,8 +33,6 @@ DEPEND="${RDEPEND}
"
src_configure() {
# We don't have libmspack, needing internal lzx
gnome2_src_configure \
--with-internal-lzx \
$(use_enable test tests)
}

View file

@ -1,3 +1,3 @@
DIST evolution-3.20.5.tar.xz 12133872 SHA256 2e13551ce0996963506f0bdde5e01c3b8aa0622849a272ff12877cd595baeb6e SHA512 4b974ac5d8f3918a8012192634e8d131b1f6af0ed40a32181eb9500bc43b8bf4cf29a6fc7e49620638ada8f2456117e263e6162f21c0e1deef81861789a97906 WHIRLPOOL 1ed38bd2b9de97ad50bb832e03b76bf94131e65f0cf05c555d9e62d0e908467382b7e879d8eeb9513a6a09396da77eb2b2ac3a0dd3b97c6f2cde373dd65222ae
DIST evolution-3.22.3.tar.xz 12269980 SHA256 a7328b0f225e41654643514eefafb02e6819660fd989ec1e8feab4f17e93dc00 SHA512 33d31d8c7dff30e026280fddc599085c1f9d0624e9c3ed95d9815787a48aebefc198b1bb2cb4bab75d283120c72275144ba4f158e8d82a6055c60dcd02b6addc WHIRLPOOL 2e89b65d40f97597e7554fffe235b9477b6529b5eba73fbcb61b53bfd72515ca32c52f55585431ad4b122d14d5be29ea863536ba045dcbbfeb72a181e88301ac
DIST evolution-3.22.4.tar.xz 12272488 SHA256 522209f022a468c9031fd393fe4ba6c655dedfa06dd6ae59d2d693d1485c690a SHA512 dd73a11d4d7903be6a99bf0d937f5a217a26f0dffb9dc0cea2ca81142d5783c42f889a8b913d565678e9f55b7f2f2a1d42f06c30e3cb004926c19f44dae3b70f WHIRLPOOL 6aadef7a735cd351abbcdaacd086641b656ac7d94d78ab278ef0270725f487a5cd0eb6b859530611f41049024e12945368e6616fe2a3afd4481cce6654ee6279
DIST evolution-3.22.6.tar.xz 12288232 SHA256 9f4be4a1d5ee4d5eb9b132cf751ba3afc833025aa6dc7baa1f9483489d8a943e SHA512 c699adae640d05558b583b05eda5c5ad3de99aa1d1bbfa24af6110be41251f715ff4b16ff0efb96c8de7faa8c895d82460b504c2704974d4c9731f1bc3e7739f WHIRLPOOL df9fde3db1b6ebf11551d81694a99e07822ab184cc4d14e7d54777eab348de60c5180bd73e0795a3c190509b97f0d948b4e0f4b6d32816e46d967a555746ae98

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -13,9 +13,9 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Evolution"
LICENSE="|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP"
SLOT="2.0"
IUSE="+bogofilter crypt geolocation highlight ldap spamassassin spell ssl +weather"
IUSE="archive +bogofilter crypt geolocation highlight ldap spamassassin spell ssl +weather"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
KEYWORDS="~alpha ~amd64 ~x86"
# We need a graphical pinentry frontend to be able to ask for the GPG
# password from inside evolution, bug 160302
@ -25,7 +25,6 @@ PINENTRY_DEPEND="|| ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk]
# pst is not mature enough and changes API/ABI frequently
# dconf explicitely needed for backup plugin
# gnome-desktop support is optional with --enable-gnome-desktop
# gnome-autoar (currently disabled because no release has been made)
COMMON_DEPEND="
>=app-crypt/gcr-3.4:=
>=app-text/enchant-1.1.7
@ -50,6 +49,7 @@ COMMON_DEPEND="
x11-libs/libSM
x11-libs/libICE
archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] )
crypt? (
>=app-crypt/gnupg-1.4
${PINENTRY_DEPEND}
@ -98,11 +98,11 @@ src_configure() {
# Use NSS/NSPR only if 'ssl' is enabled.
gnome2_src_configure \
--without-glade-catalog \
--disable-autoar \
--disable-code-coverage \
--disable-installed-tests \
--disable-pst-import \
--enable-canberra \
$(use_enable archive autoar) \
$(use_enable crypt libcryptui) \
$(use_enable highlight text-highlight) \
$(use_enable geolocation contact-maps) \

View file

@ -6,6 +6,8 @@
<name>Gentoo GNOME Desktop</name>
</maintainer>
<use>
<flag name="archive">Enable archives support in attachments via
<pkg>app-arch/gnome-autoar</pkg></flag>
<flag name="bogofilter">Build <pkg>mail-filter/bogofilter</pkg> plugin</flag>
<flag name="crypt">Enable GPG encryption support using
<pkg>app-crypt/gnupg</pkg> and <pkg>app-crypt/pinentry</pkg></flag>

View file

@ -1 +1 @@
Wed, 15 Mar 2017 11:39:22 +0000
Wed, 15 Mar 2017 14:39:23 +0000

View file

@ -1 +1 @@
Wed, 15 Mar 2017 11:39:22 +0000
Wed, 15 Mar 2017 14:39:23 +0000

View file

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare
DEPEND=>=app-arch/libarchive-3.2.0 >=dev-libs/glib-2.35.6:2 gtk? ( >=x11-libs/gtk+-3.2:3 ) introspection? ( >=dev-libs/gobject-introspection-1.30.0:= ) >=dev-util/gtk-doc-am-1.14 gnome-base/gnome-common virtual/pkgconfig vala? ( || ( dev-lang/vala:0.34[vapigen(+)] dev-lang/vala:0.32[vapigen(+)] dev-lang/vala:0.30[vapigen(+)] dev-lang/vala:0.28[vapigen(+)] dev-lang/vala:0.26[vapigen(+)] ) ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
DESCRIPTION=Automatic archives creating and extracting library
EAPI=6
HOMEPAGE=https://git.gnome.org/browse/gnome-autoar
IUSE=gtk +introspection vala
KEYWORDS=~alpha ~amd64 ~x86
LICENSE=LGPL-2+ GPL-2+
RDEPEND=>=app-arch/libarchive-3.2.0 >=dev-libs/glib-2.35.6:2 gtk? ( >=x11-libs/gtk+-3.2:3 ) introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
REQUIRED_USE=vala? ( introspection )
SLOT=0
SRC_URI=mirror://gnome/sources/gnome-autoar/0.2/gnome-autoar-0.2.1.tar.xz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 d37ffcd1731600f2d196e77cd77ed727 gnome2-utils fe8e9099c6fc74a40946623c593c7236 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee vala 45cd5c637ea9287eeaf983960768e17c versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120
_md5_=6b7ddde95adf11fdf3f363c55b39c503

View file

@ -3,9 +3,9 @@ DESCRIPTION=Secure file removal utility
EAPI=6
HOMEPAGE=http://www.jetico.com/
IUSE=doc
KEYWORDS=amd64 ~arm ~ppc x86
KEYWORDS=amd64 ~arm ppc x86
LICENSE=bestcrypt
SLOT=0
SRC_URI=https://www.jetico.com/linux/BCWipe-1.9-13.tar.gz doc? ( http://www.jetico.com/linux/BCWipe.doc.tgz )
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0
_md5_=e02d20408f2d59b974a6757ce97ef9a8
_md5_=3291db6e89bd54b1e20ca52a77b5f1d5

View file

@ -4,9 +4,9 @@ DESCRIPTION=replacement of the old unix crypt(1)
EAPI=6
HOMEPAGE=http://mcrypt.sourceforge.net/
IUSE=nls
KEYWORDS=amd64 ~ppc sparc x86 ~x86-macos
KEYWORDS=amd64 ppc sparc x86 ~x86-macos
LICENSE=GPL-2
RDEPEND=>=dev-libs/libmcrypt-2.5.8 >=app-crypt/mhash-0.9.9 sys-libs/zlib
SLOT=0
SRC_URI=mirror://sourceforge/mcrypt/mcrypt-2.6.8.tar.gz
_md5_=9d45f005701417acd85fd6a344641023
_md5_=67d86438eae4589d1ca702308fc899b2

View file

@ -4,10 +4,10 @@ DESCRIPTION=TrouSerS' support tools for the Trusted Platform Modules
EAPI=6
HOMEPAGE=http://trousers.sourceforge.net
IUSE=libressl nls pkcs11 debug
KEYWORDS=amd64 ~arm ~arm64 ~m68k ~s390 ~sh x86
KEYWORDS=amd64 ~arm arm64 ~m68k ~s390 ~sh x86
LICENSE=CPL-1.0
RDEPEND=>=app-crypt/trousers-0.3.0 !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) pkcs11? ( dev-libs/opencryptoki ) nls? ( virtual/libintl )
SLOT=0
SRC_URI=mirror://sourceforge/trousers/tpm-tools/tpm-tools-1.3.9.tar.gz
_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee
_md5_=815fb1e591cc2d27d16c8b892a69389b
_md5_=c8e3d3978c254efbb807e62b004c9ea0

View file

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
DEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/json-glib-0.15 >=dev-libs/libxml2-2:2 >=net-libs/liboauth-0.9.4 >=net-libs/libsoup-2.42.0:2.4[introspection?] >=x11-libs/gdk-pixbuf-2.14:2 crypt? ( app-crypt/gcr:= ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:=[introspection?] ) introspection? ( >=dev-libs/gobject-introspection-0.9.7:= ) >=dev-util/gtk-doc-am-1.25 >=dev-util/intltool-0.40 virtual/pkgconfig test? ( >=net-libs/uhttpmock-0.5 ) vala? ( || ( dev-lang/vala:0.34[vapigen(+)] dev-lang/vala:0.32[vapigen(+)] dev-lang/vala:0.30[vapigen(+)] dev-lang/vala:0.28[vapigen(+)] dev-lang/vala:0.26[vapigen(+)] ) ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
DEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/json-glib-0.15 >=dev-libs/libxml2-2:2 >=net-libs/liboauth-0.9.4 >=net-libs/libsoup-2.42.0:2.4[introspection?] >=x11-libs/gdk-pixbuf-2.14:2 crypt? ( app-crypt/gcr:= ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.7:= ) >=dev-util/gtk-doc-am-1.25 >=dev-util/intltool-0.40 virtual/pkgconfig test? ( >=net-libs/uhttpmock-0.5 ) vala? ( || ( dev-lang/vala:0.34[vapigen(+)] dev-lang/vala:0.32[vapigen(+)] dev-lang/vala:0.30[vapigen(+)] dev-lang/vala:0.28[vapigen(+)] dev-lang/vala:0.26[vapigen(+)] ) ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
DESCRIPTION=GLib-based library for accessing online service APIs using the GData protocol
EAPI=6
HOMEPAGE=https://wiki.gnome.org/Projects/libgdata
IUSE=+crypt gnome-online-accounts +introspection static-libs test vala
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=LGPL-2.1+
RDEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/json-glib-0.15 >=dev-libs/libxml2-2:2 >=net-libs/liboauth-0.9.4 >=net-libs/libsoup-2.42.0:2.4[introspection?] >=x11-libs/gdk-pixbuf-2.14:2 crypt? ( app-crypt/gcr:= ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:=[introspection?] ) introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
RDEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/json-glib-0.15 >=dev-libs/libxml2-2:2 >=net-libs/liboauth-0.9.4 >=net-libs/libsoup-2.42.0:2.4[introspection?] >=x11-libs/gdk-pixbuf-2.14:2 crypt? ( app-crypt/gcr:= ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
REQUIRED_USE=gnome-online-accounts? ( crypt ) vala? ( introspection )
SLOT=0/22
SRC_URI=mirror://gnome/sources/libgdata/0.17/libgdata-0.17.7.tar.xz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 d37ffcd1731600f2d196e77cd77ed727 gnome2-utils fe8e9099c6fc74a40946623c593c7236 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee vala 45cd5c637ea9287eeaf983960768e17c versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120
_md5_=8a6d463716256dda7d2bb7c17279f3e6
_md5_=21ec405ed245edd79204724311ae02b6

View file

@ -4,10 +4,10 @@ DESCRIPTION=Declarative definition of command line interfaces for OCaml
EAPI=5
HOMEPAGE=http://erratique.ch/software/cmdliner
IUSE=+ocamlopt test
KEYWORDS=~amd64
KEYWORDS=~amd64 ~arm
LICENSE=ISC
RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/result:=
SLOT=0/1.0.0
SRC_URI=http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.0.tbz
_eclasses_=findlib 45d6030075064a68da8d7143726a1150
_md5_=4befda85c8949ba2c3cb54e800682f15
_md5_=cd784aaa6dc3931bd35423409c9f2c44

View file

@ -4,10 +4,10 @@ DESCRIPTION=An equivalent of the C preprocessor for OCaml programs
EAPI=5
HOMEPAGE=http://mjambon.com/cppo.html
IUSE=examples
KEYWORDS=amd64 ppc x86
KEYWORDS=amd64 ~arm ppc x86
LICENSE=BSD
RDEPEND=>=dev-lang/ocaml-3.12:= dev-ml/ocamlbuild:=
SLOT=0/1.4.1
SRC_URI=https://github.com/mjambon/cppo/archive/v1.4.1.tar.gz -> cppo-1.4.1.tar.gz
_eclasses_=findlib 45d6030075064a68da8d7143726a1150
_md5_=1ad487696f61a3692e6454fdcf50ffc2
_md5_=1fde101bf2915947b436f6b5eb28aeb6

View file

@ -3,10 +3,10 @@ DEPEND=>=dev-ml/uutf-1.0.0:= dev-lang/ocaml:= dev-ml/uchar:= dev-ml/topkg dev-ml
DESCRIPTION=Non-blocking streaming JSON codec for OCaml
EAPI=5
HOMEPAGE=http://erratique.ch/software/jsonm
KEYWORDS=~amd64
KEYWORDS=~amd64 ~arm
LICENSE=ISC
RDEPEND=>=dev-ml/uutf-1.0.0:= dev-lang/ocaml:= dev-ml/uchar:=
SLOT=0/1.0.1
SRC_URI=http://erratique.ch/software/jsonm/releases/jsonm-1.0.1.tbz
_eclasses_=findlib 45d6030075064a68da8d7143726a1150
_md5_=a0db91ecaaaefd6da98db46fa836faf9
_md5_=6081774f2fb33c87eb6ada66329e647e

View file

@ -4,10 +4,10 @@ DESCRIPTION=OCaml bindings for expat
EAPI=5
HOMEPAGE=https://github.com/whitequark/ocaml-expat
IUSE=doc +ocamlopt test
KEYWORDS=~amd64 ~ppc ~x86
KEYWORDS=~amd64 ~arm ~ppc ~x86
LICENSE=MIT
RDEPEND=dev-libs/expat >=dev-lang/ocaml-3.10.2:=[ocamlopt?]
SLOT=0/1.0.0
SRC_URI=https://github.com/whitequark/ocaml-expat/archive/v1.0.0.tar.gz -> ocaml-expat-1.0.0.tar.gz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c findlib 45d6030075064a68da8d7143726a1150 multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee
_md5_=fae9e519ef80d3032ff6fe7e66fe404b
_md5_=02bd7e8e13230b5887c9c92c2e051275

View file

@ -4,10 +4,10 @@ DESCRIPTION=Library allowing to exploit multicore architectures for OCaml progra
EAPI=5
HOMEPAGE=http://www.dicosmo.org/code/parmap/
IUSE=+ocamlopt
KEYWORDS=~amd64 ~x86
KEYWORDS=~amd64 ~arm ~x86
LICENSE=LGPL-2-with-linking-exception
RDEPEND=>=dev-lang/ocaml-4.03:=[ocamlopt?]
SLOT=0/1.0_rc8
SRC_URI=https://github.com/rdicosmo/parmap/archive/1.0-rc8.tar.gz -> parmap-1.0_rc8.tar.gz
_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee
_md5_=48b2ddac5306d32d2c81219e684837c5
_md5_=cab26c7c7cae510e2746545c87e71ee7

View file

@ -3,10 +3,10 @@ DEPEND=dev-ml/result:= dev-lang/ocaml:= >=dev-ml/findlib-1.0.4-r1
DESCRIPTION=The transitory OCaml software packager
EAPI=6
HOMEPAGE=http://erratique.ch/software/topkg https://github.com/dbuenzli/topkg
KEYWORDS=~amd64
KEYWORDS=~amd64 ~arm
LICENSE=ISC
RDEPEND=dev-ml/result:= dev-lang/ocaml:=
SLOT=0/0.8.1
SRC_URI=https://github.com/dbuenzli/topkg/archive/v0.8.1.tar.gz -> topkg-0.8.1.tar.gz
_eclasses_=findlib 45d6030075064a68da8d7143726a1150
_md5_=d2e017d9223d4ec78a3761f3f98521d2
_md5_=c562de94e67982cff9317cbd0eee4d89

View file

@ -4,10 +4,10 @@ DESCRIPTION=Uchar compatibility library
EAPI=6
HOMEPAGE=https://github.com/ocaml/uchar
IUSE=+ocamlopt
KEYWORDS=~amd64
KEYWORDS=~amd64 ~arm
LICENSE=LGPL-2-with-linking-exception
RDEPEND=>=dev-lang/ocaml-4.03:=
SLOT=0/0.0.1
SRC_URI=https://github.com/ocaml/uchar/archive/v0.0.1.tar.gz -> uchar-0.0.1.tar.gz
_eclasses_=findlib 45d6030075064a68da8d7143726a1150
_md5_=a3ae47d554d66dbafd2e2b092a3b9d7c
_md5_=5aabe8fa599ee9890ada9b964af7ec4e

View file

@ -4,10 +4,10 @@ DESCRIPTION=Non-blocking streaming Unicode codec for OCaml
EAPI=5
HOMEPAGE=http://erratique.ch/software/uutf
IUSE=doc utftrip +ocamlopt test
KEYWORDS=~amd64
KEYWORDS=~amd64 ~arm
LICENSE=ISC
RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] dev-ml/uchar:= utftrip? ( dev-ml/cmdliner:= )
SLOT=0/1.0.1
SRC_URI=http://erratique.ch/software/uutf/releases/uutf-1.0.1.tbz
_eclasses_=findlib 45d6030075064a68da8d7143726a1150
_md5_=bcae900032103fb48cb85bcde07a599c
_md5_=f68c5c69333fe81c587424157bf64c9f

View file

@ -4,10 +4,10 @@ DESCRIPTION=check that a library is available
EAPI=6
HOMEPAGE=http://search.cpan.org/dist/Devel-CheckLib/
IUSE=test
KEYWORDS=~alpha amd64 ~hppa ~x86
KEYWORDS=~alpha amd64 arm ~hppa ppc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=>=virtual/perl-File-Temp-0.160.0 virtual/perl-Exporter virtual/perl-File-Spec dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/M/MA/MATTN/Devel-CheckLib-1.06.tar.gz
_eclasses_=multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb
_md5_=4d3cd1a7b9717e1af1c430ba16df5bfd
_md5_=313a8e821ce616b49e95fe7d7c723a01

View file

@ -4,10 +4,10 @@ DESCRIPTION=check that a library is available
EAPI=6
HOMEPAGE=http://search.cpan.org/dist/Devel-CheckLib/
IUSE=test
KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~x86
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=>=virtual/perl-File-Temp-0.160.0 virtual/perl-Exporter virtual/perl-File-Spec dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/M/MA/MATTN/Devel-CheckLib-1.07.tar.gz
_eclasses_=multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb
_md5_=c8b27ea04af3f316804ef970fe911027
_md5_=d951a47396bbe11cd4d8b8c65fd60226

View file

@ -3,10 +3,10 @@ DEPEND=dev-lang/perl:=[-build(-)]
DESCRIPTION=uses File::Copy to recursively copy dirs
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/File-Copy-Recursive/
KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-lang/perl:=[-build(-)]
SLOT=0
SRC_URI=mirror://cpan/authors/id/D/DM/DMUEY/File-Copy-Recursive-0.38.tar.gz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70
_md5_=6996497d4c99414829a36c68f668dc33
_md5_=d9389d4079a2647508016ca4ed673dde

View file

@ -4,10 +4,10 @@ DESCRIPTION=Install shared files
EAPI=6
HOMEPAGE=http://search.cpan.org/dist/File-ShareDir-Install/
IUSE=test
KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86
KEYWORDS=~alpha amd64 arm ~hppa ppc ~ppc64 ~sparc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=virtual/perl-Carp virtual/perl-Exporter virtual/perl-File-Spec virtual/perl-IO dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/E/ET/ETHER/File-ShareDir-Install-0.11.tar.gz
_eclasses_=multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb
_md5_=34aecde4ffe6f9fafa755f164b224ee3
_md5_=b67887860b1b7527c3da017ed5615e77

View file

@ -3,10 +3,10 @@ DEPEND=>=virtual/perl-ExtUtils-MakeMaker-6.110.0 virtual/perl-File-Spec virtual/
DESCRIPTION=Install shared files
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/File-ShareDir-Install/
KEYWORDS=~alpha ~amd64 ~x86
KEYWORDS=~alpha ~amd64 ~arm ~ppc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=>=virtual/perl-ExtUtils-MakeMaker-6.110.0 virtual/perl-File-Spec virtual/perl-IO dev-lang/perl:=[-build(-)]
SLOT=0
SRC_URI=mirror://cpan/authors/id/G/GW/GWYN/File-ShareDir-Install-0.09.tar.gz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70
_md5_=f5d275470db17c4f494f9166f94b7411
_md5_=62658e303697bbd748a6dd31d238d5f9

View file

@ -3,10 +3,10 @@ DEPEND=virtual/perl-Scalar-List-Utils dev-lang/perl:=[-build(-)]
DESCRIPTION=unified IO operations
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/IO-All/
KEYWORDS=~alpha amd64 ~hppa ~ppc ~sparc x86
KEYWORDS=~alpha amd64 arm ~hppa ppc ~sparc x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=virtual/perl-Scalar-List-Utils virtual/perl-ExtUtils-MakeMaker dev-lang/perl:=[-build(-)]
SLOT=0
SRC_URI=mirror://cpan/authors/id/I/IN/INGY/IO-All-0.86.tar.gz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70
_md5_=b685a53dc832f998ee99ad2378350927
_md5_=d48517af366e6b31621b775a2be956c6

View file

@ -4,10 +4,10 @@ DESCRIPTION=Capture STDOUT and STDERR from Perl code, subprocesses or XS
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/IO-CaptureOutput/
IUSE=test
KEYWORDS=~alpha amd64 hppa ~mips ppc ppc64 x86 ~x86-linux
KEYWORDS=~alpha amd64 arm hppa ~mips ppc ppc64 x86 ~x86-linux
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=virtual/perl-Carp virtual/perl-Exporter >=virtual/perl-File-Temp-0.160.0 dev-lang/perl:=[-build(-)]
SLOT=0
SRC_URI=mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-1.1104.tar.gz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70
_md5_=808b35d18600ab827b888af04fe73039
_md5_=3013213008055901fdc1cfcb4dd7a211

View file

@ -4,10 +4,10 @@ DESCRIPTION=C Language Support for Inline
EAPI=6
HOMEPAGE=http://search.cpan.org/dist/Inline-C/
IUSE=test
KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~sparc ~x86
KEYWORDS=~alpha ~amd64 arm ~hppa ppc ~sparc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=>=virtual/perl-ExtUtils-MakeMaker-7 >=virtual/perl-File-Spec-0.800.0 >=dev-perl/Inline-0.790.0 >=dev-perl/Parse-RecDescent-1.967.9 >=dev-perl/Pegex-0.580.0 !<dev-perl/Inline-0.510.0 dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/I/IN/INGY/Inline-C-0.76.tar.gz
_eclasses_=multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb
_md5_=c33b9ad8d09f95c7ee0faf049e45a36c
_md5_=096ecbd1ce1760a43ecbe9dd75492726

View file

@ -3,10 +3,10 @@ DEPEND=>=dev-perl/Digest-SHA1-2.130.0 >=virtual/perl-ExtUtils-MakeMaker-6.300.0
DESCRIPTION=Perl Module Compilation
EAPI=6
HOMEPAGE=http://search.cpan.org/dist/Module-Compile/
KEYWORDS=~amd64 ~x86
KEYWORDS=~amd64 arm ppc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=>=dev-perl/Digest-SHA1-2.130.0 dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/I/IN/INGY/Module-Compile-0.35.tar.gz
_eclasses_=multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb
_md5_=65222c08472ec19e4d1521c199b3b1b2
_md5_=6eee8bf77ec27b9c2e4427e07856ebfb

View file

@ -4,10 +4,10 @@ DESCRIPTION=Perl Data Language for scientific computing
EAPI=6
HOMEPAGE=http://search.cpan.org/dist/PDL/
IUSE=+badval doc fortran gd gsl hdf netpbm pdl2 pgplot threads
KEYWORDS=~amd64 ~x86
KEYWORDS=~amd64 arm ppc ~x86
LICENSE=|| ( Artistic GPL-1+ ) public-domain PerlDL
RDEPEND=sys-libs/ncurses:0= app-arch/sharutils dev-perl/Astro-FITS-Header dev-perl/File-Map >=dev-perl/Inline-0.680.0 >=dev-perl/Inline-C-0.620.0 dev-perl/Module-Compile dev-perl/OpenGL dev-perl/TermReadKey || ( dev-perl/Term-ReadLine-Perl dev-perl/Term-ReadLine-Gnu ) >=virtual/perl-Data-Dumper-2.121.0 virtual/perl-Pod-Parser virtual/perl-File-Spec virtual/perl-File-Temp virtual/perl-Filter-Simple dev-perl/Filter virtual/perl-Storable >=virtual/perl-Text-Balanced-1.890.0 gd? ( media-libs/gd ) gsl? ( sci-libs/gsl ) hdf? ( sci-libs/hdf ) netpbm? ( media-libs/netpbm virtual/ffmpeg ) pdl2? ( >=dev-perl/Devel-REPL-1.3.11 || ( dev-perl/Term-ReadLine-Perl dev-perl/Term-ReadLine-Gnu ) ) pgplot? ( dev-perl/PGPLOT ) dev-lang/perl:= fortran? ( virtual/fortran )
SLOT=0
SRC_URI=mirror://cpan/authors/id/C/CH/CHM/PDL-2.017.tar.gz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c fortran-2 9773a6296d565bc8cf241891112a9705 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee
_md5_=414c994799bdef3ce990cf729ce549c5
_md5_=7539b9c486b36f14cc459f4b288196a0

View file

@ -4,10 +4,10 @@ DESCRIPTION=Acmeist PEG Parser Framework
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/Pegex/
IUSE=test
KEYWORDS=~alpha ~amd64 ~ppc ~sparc ~x86
KEYWORDS=~alpha ~amd64 arm ppc ~sparc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-lang/perl:=[-build(-)]
SLOT=0
SRC_URI=mirror://cpan/authors/id/I/IN/INGY/Pegex-0.60.tar.gz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70
_md5_=ffae0ce32e675fd52c473414253d7b7c
_md5_=d7a7907414ffc4034e428ea4b8bc7b41

View file

@ -4,10 +4,10 @@ DESCRIPTION=Acmeist PEG Parser Framework
EAPI=6
HOMEPAGE=http://search.cpan.org/dist/Pegex/
IUSE=test examples
KEYWORDS=~alpha ~amd64 ~hppa ~x86
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/I/IN/INGY/Pegex-0.63.tar.gz
_eclasses_=multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb
_md5_=5101214b47c2fcba78e89730ee8aed9c
_md5_=0eb87dd558978ff8eaedbfa2f69e0bcf

View file

@ -3,10 +3,10 @@ DEPEND=virtual/perl-ExtUtils-MakeMaker dev-lang/perl:=
DESCRIPTION=Perl YAML Serialization using XS and libyaml
EAPI=6
HOMEPAGE=http://search.cpan.org/dist/YAML-LibYAML/
KEYWORDS=~alpha ~amd64 ~x86
KEYWORDS=~alpha ~amd64 ~arm ~ppc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-0.62.tar.gz
_eclasses_=multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb
_md5_=5096dd1fd6c3bd6b2a7472102b082391
_md5_=fac3a3a57e9d8809ffed75c860e2bfe9

View file

@ -3,10 +3,10 @@ DEPEND=virtual/perl-ExtUtils-MakeMaker dev-lang/perl:=
DESCRIPTION=Perl YAML Serialization using XS and libyaml
EAPI=6
HOMEPAGE=http://search.cpan.org/dist/YAML-LibYAML/
KEYWORDS=~alpha amd64 ~hppa ~ppc ~sparc ~x86
KEYWORDS=~alpha amd64 arm ~hppa ppc ~sparc ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-0.63.tar.gz
_eclasses_=multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions c794e60e3f4353e40464afd90270fb84 perl-module e64d78a54693f92bbe90a62f2efeb6cb
_md5_=0b427d0028a891c38973088407727ba6
_md5_=8becc90da7e2dd0f19cd1671a2a58eb2

View file

@ -0,0 +1,15 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test
DEPEND=>=app-crypt/gcr-3.4 >=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:= >=dev-libs/glib-2.46:2 >=dev-libs/libgdata-0.10:= >=dev-libs/libical-0.43:= >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4:= >=dev-libs/nss-3.9:= >=net-libs/libsoup-2.42:2.4 dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=app-crypt/gcr-3.4[gtk] >=x11-libs/gtk+-3.10:3 ) google? ( >=dev-libs/json-glib-1.0.4 >=dev-libs/libgdata-0.17.7:= >=net-libs/webkit-gtk-2.11.91:4 ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 >=virtual/pypy-5:0 ) dev-util/gdbus-codegen dev-util/gperf >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.35.5 >=gnome-base/gnome-common-2 >=sys-devel/gettext-0.17 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.34[vapigen(+)] dev-lang/vala:0.32[vapigen(+)] dev-lang/vala:0.30[vapigen(+)] dev-lang/vala:0.28[vapigen(+)] dev-lang/vala:0.26[vapigen(+)] ) ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info virtual/pkgconfig test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost )
DESCRIPTION=Evolution groupware backend
EAPI=6
HOMEPAGE=https://wiki.gnome.org/Apps/Evolution
IUSE=api-doc-extras berkdb +gnome-online-accounts +gtk google +introspection ipv6 ldap kerberos vala +weather test
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris
LICENSE=|| ( LGPL-2 LGPL-3 ) BSD Sleepycat
RDEPEND=>=app-crypt/gcr-3.4 >=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:= >=dev-libs/glib-2.46:2 >=dev-libs/libgdata-0.10:= >=dev-libs/libical-0.43:= >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4:= >=dev-libs/nss-3.9:= >=net-libs/libsoup-2.42:2.4 dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=app-crypt/gcr-3.4[gtk] >=x11-libs/gtk+-3.10:3 ) google? ( >=dev-libs/json-glib-1.0.4 >=dev-libs/libgdata-0.17.7:= >=net-libs/webkit-gtk-2.11.91:4 ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-3.10:2= )
REQUIRED_USE=vala? ( introspection )
RESTRICT=test
SLOT=0/59
SRC_URI=mirror://gnome/sources/evolution-data-server/3.22/evolution-data-server-3.22.6.tar.xz
_eclasses_=db-use 582140d1a711279e50ce284fc7b609f5 eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 61cad4fb5d800b29d484b27cb033f59b gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 d37ffcd1731600f2d196e77cd77ed727 gnome2-utils fe8e9099c6fc74a40946623c593c7236 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 python-any-r1 be89e882151ba4b847089b860d79729c python-utils-r1 4f8aa7196c2c9a5630e66c2113ae46c3 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee vala 45cd5c637ea9287eeaf983960768e17c versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120
_md5_=da362ced8058e8231e5e446fe58b42d2

View file

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare
DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.1:0= >=mail-client/evolution-3.22.1:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 >=dev-util/gtk-doc-am-1.9 >=dev-util/intltool-0.35.5 virtual/pkgconfig test? ( net-libs/uhttpmock ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
DESCRIPTION=Evolution module for connecting to Microsoft Exchange Web Services
EAPI=6
HOMEPAGE=https://wiki.gnome.org/Apps/Evolution
IUSE=test
KEYWORDS=~amd64 ~x86
LICENSE=LGPL-2.1
RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.1:0= >=mail-client/evolution-3.22.1:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3
SLOT=0
SRC_URI=mirror://gnome/sources/evolution-ews/3.22/evolution-ews-3.22.1.tar.xz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 d37ffcd1731600f2d196e77cd77ed727 gnome2-utils fe8e9099c6fc74a40946623c593c7236 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120
_md5_=6ef91f26c2c2b76ffb12d95b49d4de97

View file

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare
DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.3:0= >=mail-client/evolution-3.22.3:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 >=dev-util/gtk-doc-am-1.9 >=dev-util/intltool-0.35.5 virtual/pkgconfig test? ( net-libs/uhttpmock ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
DESCRIPTION=Evolution module for connecting to Microsoft Exchange Web Services
EAPI=6
HOMEPAGE=https://wiki.gnome.org/Apps/Evolution
IUSE=test
KEYWORDS=~amd64 ~x86
LICENSE=LGPL-2.1
RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.3:0= >=mail-client/evolution-3.22.3:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3
SLOT=0
SRC_URI=mirror://gnome/sources/evolution-ews/3.22/evolution-ews-3.22.3.tar.xz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 d37ffcd1731600f2d196e77cd77ed727 gnome2-utils fe8e9099c6fc74a40946623c593c7236 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120
_md5_=6ef91f26c2c2b76ffb12d95b49d4de97

View file

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare
DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.2:0= >=mail-client/evolution-3.22.2:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 >=dev-util/gtk-doc-am-1.9 >=dev-util/intltool-0.35.5 virtual/pkgconfig test? ( net-libs/uhttpmock ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libmspack-0.4 >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.6:0= >=mail-client/evolution-3.22.6:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 >=dev-util/gtk-doc-am-1.9 >=dev-util/intltool-0.35.5 virtual/pkgconfig test? ( net-libs/uhttpmock ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
DESCRIPTION=Evolution module for connecting to Microsoft Exchange Web Services
EAPI=6
HOMEPAGE=https://wiki.gnome.org/Apps/Evolution
IUSE=test
KEYWORDS=~amd64 ~x86
LICENSE=LGPL-2.1
RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.2:0= >=mail-client/evolution-3.22.2:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3
RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libmspack-0.4 >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.6:0= >=mail-client/evolution-3.22.6:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3
SLOT=0
SRC_URI=mirror://gnome/sources/evolution-ews/3.22/evolution-ews-3.22.2.tar.xz
SRC_URI=mirror://gnome/sources/evolution-ews/3.22/evolution-ews-3.22.6.tar.xz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 d37ffcd1731600f2d196e77cd77ed727 gnome2-utils fe8e9099c6fc74a40946623c593c7236 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120
_md5_=6ef91f26c2c2b76ffb12d95b49d4de97
_md5_=69930cfd6684e74a7f04ad04f363f65a

View file

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare
DEPEND=>=app-crypt/gcr-3.4:= >=app-text/enchant-1.1.7 >=dev-libs/glib-2.46:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.22.3:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.13.90:4 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] app-crypt/pinentry[qt5] ) x11-libs/libcryptui ) geolocation? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) ldap? ( >=net-nds/openldap-2:= ) spell? ( app-text/gtkspell:3 ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) app-text/docbook-xml-dtd:4.1.2 app-text/yelp-tools >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.40.0 >=gnome-base/gnome-common-2.12 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
DESCRIPTION=Integrated mail, addressbook and calendaring functionality
EAPI=6
HOMEPAGE=https://wiki.gnome.org/Apps/Evolution
IUSE=+bogofilter crypt geolocation highlight ldap spamassassin spell ssl +weather
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd
LICENSE=|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP
RDEPEND=>=app-crypt/gcr-3.4:= >=app-text/enchant-1.1.7 >=dev-libs/glib-2.46:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.22.3:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.13.90:4 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] app-crypt/pinentry[qt5] ) x11-libs/libcryptui ) geolocation? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) ldap? ( >=net-nds/openldap-2:= ) spell? ( app-text/gtkspell:3 ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) bogofilter? ( mail-filter/bogofilter ) highlight? ( app-text/highlight ) spamassassin? ( mail-filter/spamassassin ) !gnome-extra/evolution-exchange
SLOT=2.0
SRC_URI=mirror://gnome/sources/evolution/3.22/evolution-3.22.3.tar.xz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 61cad4fb5d800b29d484b27cb033f59b gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 d37ffcd1731600f2d196e77cd77ed727 gnome2-utils fe8e9099c6fc74a40946623c593c7236 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 readme.gentoo-r1 6f03e110529650f57fc7d1fb908b8986 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120
_md5_=ff400e1f5271dee526aff8308d622006

View file

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare
DEPEND=>=app-crypt/gcr-3.4:= >=app-text/enchant-1.1.7 >=dev-libs/glib-2.46:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.22.6:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.13.90:4 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] ) crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] app-crypt/pinentry[qt5] ) x11-libs/libcryptui ) geolocation? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) ldap? ( >=net-nds/openldap-2:= ) spell? ( app-text/gtkspell:3 ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) app-text/docbook-xml-dtd:4.1.2 app-text/yelp-tools >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.40.0 >=gnome-base/gnome-common-2.12 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
DESCRIPTION=Integrated mail, addressbook and calendaring functionality
EAPI=6
HOMEPAGE=https://wiki.gnome.org/Apps/Evolution
IUSE=archive +bogofilter crypt geolocation highlight ldap spamassassin spell ssl +weather
KEYWORDS=~alpha ~amd64 ~x86
LICENSE=|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP
RDEPEND=>=app-crypt/gcr-3.4:= >=app-text/enchant-1.1.7 >=dev-libs/glib-2.46:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.22.6:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.13.90:4 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] ) crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] app-crypt/pinentry[qt5] ) x11-libs/libcryptui ) geolocation? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) ldap? ( >=net-nds/openldap-2:= ) spell? ( app-text/gtkspell:3 ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) bogofilter? ( mail-filter/bogofilter ) highlight? ( app-text/highlight ) spamassassin? ( mail-filter/spamassassin ) !gnome-extra/evolution-exchange
SLOT=2.0
SRC_URI=mirror://gnome/sources/evolution/3.22/evolution-3.22.6.tar.xz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 61cad4fb5d800b29d484b27cb033f59b gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 d37ffcd1731600f2d196e77cd77ed727 gnome2-utils fe8e9099c6fc74a40946623c593c7236 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 readme.gentoo-r1 6f03e110529650f57fc7d1fb908b8986 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120
_md5_=fe9789e7a1625682698763dc73e55dba

View file

@ -4,10 +4,10 @@ DESCRIPTION=DLNA/UPnP-AV compliant media server
EAPI=5
HOMEPAGE=http://minidlna.sourceforge.net/
IUSE=netgear readynas
KEYWORDS=~amd64 ~arm ~x86
KEYWORDS=~amd64 arm ~x86
LICENSE=BSD GPL-2
RDEPEND=dev-db/sqlite:3 media-libs/flac media-libs/libexif media-libs/libid3tag media-libs/libogg media-libs/libvorbis virtual/ffmpeg virtual/jpeg:0
SLOT=0
SRC_URI=mirror://sourceforge/minidlna/1.1.5/minidlna-1.1.5.tar.gz https://dev.gentoo.org/~xmw/minidlna-gentoo-artwork.patch.xz
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c linux-info ca370deef9d44125d829f2eb6ebc83e0 multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0
_md5_=415dff336dabb0912a19295fee545fdd
_md5_=21737c7e334950ccf57bb784d92cab75

View file

@ -1 +1 @@
Wed, 15 Mar 2017 11:39:22 +0000
Wed, 15 Mar 2017 14:39:24 +0000

View file

@ -1 +1 @@
Wed Mar 15 11:39:22 UTC 2017
Wed Mar 15 14:39:23 UTC 2017

View file

@ -1 +1 @@
Wed, 15 Mar 2017 12:00:01 +0000
Wed, 15 Mar 2017 15:00:01 +0000

View file

@ -1 +1 @@
1489577701 Wed 15 Mar 2017 11:35:01 AM UTC
1489588501 Wed 15 Mar 2017 02:35:01 PM UTC

View file

@ -1 +1 @@
Wed, 15 Mar 2017 11:39:22 +0000
Wed, 15 Mar 2017 14:39:23 +0000

View file

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
KEYWORDS="~amd64 arm ~x86"
IUSE="netgear readynas"
RDEPEND="dev-db/sqlite:3

View file

@ -3524,6 +3524,7 @@ mail-client/claws-mail:spam-report - Enable plugin for spam reporting to various
mail-client/claws-mail:spamassassin - Build mail-filter/spamassassin plugin
mail-client/claws-mail:valgrind - Add support for memory debugging using valgrind
mail-client/claws-mail:webkit - Enables HTML e-mail rendering by using the net-libs/webkit-gtk library.
mail-client/evolution:archive - Enable archives support in attachments via app-arch/gnome-autoar
mail-client/evolution:bogofilter - Build mail-filter/bogofilter plugin
mail-client/evolution:crypt - Enable GPG encryption support using app-crypt/gnupg and app-crypt/pinentry
mail-client/evolution:geolocation - Enable support for displaying contacts on a map inside evolution using media-libs/libchamplain