From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6336A1395E2 for ; Tue, 1 Nov 2016 17:31:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79C02E0C99; Tue, 1 Nov 2016 17:31:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51F97E0C99 for ; Tue, 1 Nov 2016 17:31:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 85E4D34125C for ; Tue, 1 Nov 2016 17:31:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98A8824B7 for ; Tue, 1 Nov 2016 17:31:15 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1478019979.c915b78c5a4972a9bd0fdfad9f5dcdc1339a5293.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/gnome-autoar/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/gnome-autoar/Manifest app-arch/gnome-autoar/gnome-autoar-0.1.1.ebuild app-arch/gnome-autoar/metadata.xml X-VCS-Directories: app-arch/gnome-autoar/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: c915b78c5a4972a9bd0fdfad9f5dcdc1339a5293 X-VCS-Branch: master Date: Tue, 1 Nov 2016 17:31:15 +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: 28e21209-356c-4e49-b292-4e026057e6fc X-Archives-Hash: a069bc6533270d19c9f3c036637e305c commit: c915b78c5a4972a9bd0fdfad9f5dcdc1339a5293 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Tue Nov 1 15:18:51 2016 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Tue Nov 1 17:06:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c915b78c app-arch/gnome-autoar: initial ebuild Package-Manager: portage-2.3.2 app-arch/gnome-autoar/Manifest | 1 + app-arch/gnome-autoar/gnome-autoar-0.1.1.ebuild | 34 +++++++++++++++++++++++++ app-arch/gnome-autoar/metadata.xml | 11 ++++++++ 3 files changed, 46 insertions(+) diff --git a/app-arch/gnome-autoar/Manifest b/app-arch/gnome-autoar/Manifest new file mode 100644 index 00000000..4190068 --- /dev/null +++ b/app-arch/gnome-autoar/Manifest @@ -0,0 +1 @@ +DIST gnome-autoar-0.1.1.tar.xz 292536 SHA256 f65cb810b562dc038ced739fbf59739fd5df1a8e848636e21f363ded9f349ac9 SHA512 59606cc7e3150d457b343f99bf30732bc9ea4bb7368133bba771a17d3253f23c8c60a35f4d686569fc2a9d4b4ab1e095b0f8cd7053493e1951e9d193a60c1e31 WHIRLPOOL 4cfc478c9956490cab5b48133585384e1282abf677290c94c93d59eba26ed4a5438d36622cfb73163d28a6692c990fb224782adbe9c9948814d3b83abb3ffcae diff --git a/app-arch/gnome-autoar/gnome-autoar-0.1.1.ebuild b/app-arch/gnome-autoar/gnome-autoar-0.1.1.ebuild new file mode 100644 index 00000000..41b3a66 --- /dev/null +++ b/app-arch/gnome-autoar/gnome-autoar-0.1.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit gnome2 + +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" +KEYWORDS="~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 +" + +src_configure() { + gnome2_src_configure \ + --disable-static \ + $(use_enable introspection) \ + $(use_enable gtk) +} diff --git a/app-arch/gnome-autoar/metadata.xml b/app-arch/gnome-autoar/metadata.xml new file mode 100644 index 00000000..073497f --- /dev/null +++ b/app-arch/gnome-autoar/metadata.xml @@ -0,0 +1,11 @@ + + + + + gnome@gentoo.org + Gentoo GNOME Desktop + + + gnome-autoar provides functions, widgets, and gschemas for GNOME applications which want to use archives as a method to transfer directories over the Internet. + +