From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0B5A61381F4 for ; Mon, 10 Dec 2012 07:36:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78806E05EB; Mon, 10 Dec 2012 07:36:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E4D55E05EB for ; Mon, 10 Dec 2012 07:36:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 024EA33D907 for ; Mon, 10 Dec 2012 07:36:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 4E52FE543C for ; Mon, 10 Dec 2012 07:36:23 +0000 (UTC) From: "Alexandre Rostovtsev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Rostovtsev" Message-ID: <1355124964.0847696c648e9613c56e1e9d812c9af88d0ef0db.tetromino@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: app-crypt/libsecret/ X-VCS-Repository: proj/gnome X-VCS-Files: app-crypt/libsecret/libsecret-0.12.ebuild X-VCS-Directories: app-crypt/libsecret/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev X-VCS-Revision: 0847696c648e9613c56e1e9d812c9af88d0ef0db X-VCS-Branch: master Date: Mon, 10 Dec 2012 07:36:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b4517806-ea1d-47a6-8af7-e8917184afd5 X-Archives-Hash: 9cc8172f47aeda1c50cf27fa06806cfa commit: 0847696c648e9613c56e1e9d812c9af88d0ef0db Author: Alexandre Rostovtsev gentoo org> AuthorDate: Mon Dec 10 07:36:04 2012 +0000 Commit: Alexandre Rostovtsev gentoo org> CommitDate: Mon Dec 10 07:36:04 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=0847696c app-crypt/libsecret: in gx86 --- app-crypt/libsecret/libsecret-0.12.ebuild | 78 ----------------------------- 1 files changed, 0 insertions(+), 78 deletions(-) diff --git a/app-crypt/libsecret/libsecret-0.12.ebuild b/app-crypt/libsecret/libsecret-0.12.ebuild deleted file mode 100644 index bb10dcb..0000000 --- a/app-crypt/libsecret/libsecret-0.12.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="4" -VALA_MIN_API_VERSION=0.18 -VALA_USE_DEPEND=vapigen - -inherit eutils gnome2 python vala virtualx - -DESCRIPTION="GObject library for accessing the freedesktop.org Secret Service API" -HOMEPAGE="https://live.gnome.org/Libsecret" - -LICENSE="LGPL-2.1+ Apache-2.0" # Apache-2.0 license is used for tests only -SLOT="0" -IUSE="+crypt debug +introspection test vala" -REQUIRED_USE="vala? ( introspection )" -KEYWORDS="~amd64 ~x86" - -COMMON_DEPEND=" - >=dev-libs/glib-2.31.0:2 - crypt? ( >=dev-libs/libgcrypt-1.2.2 ) - introspection? ( >=dev-libs/gobject-introspection-1.29 )" -RDEPEND="${COMMON_DEPEND} - >=gnome-base/gnome-keyring-3" -# Add ksecrets to RDEPEND when it's added to portage -DEPEND="${COMMON_DEPEND} - dev-libs/libxslt - dev-util/gdbus-codegen - dev-util/gtk-doc-am - >=dev-util/intltool-0.35.0 - sys-devel/gettext - virtual/pkgconfig - test? ( - dev-python/mock - introspection? ( - =dev-lang/python-2* - >=dev-libs/gjs-1.32 - dev-python/pygobject:3 ) - ) - vala? ( $(vala_depend) )" - -pkg_setup() { - # python is only needed for tests - if use test && use introspection; then - python_set_active_version 2 - python_pkg_setup - fi -} - -src_prepare() { - DOCS="AUTHORS ChangeLog NEWS README" - G2CONF="${G2CONF} - --enable-manpages - --disable-strict - --disable-coverage - --disable-static - $(use_enable crypt gcrypt) - $(use_enable introspection) - $(use_enable vala)" - - # FIXME: disable failing test - sed -e '/test_get_sync);/d' \ - -e '/test_get_async);/d' \ - -i libsecret/tests/test-service.c || die - - use vala && vala_src_prepare - gnome2_src_prepare -} - -src_test() { - Xemake check -} - -src_install() { - gnome2_src_install - prune_libtool_files --all -}