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 B40DB138010 for ; Sat, 15 Sep 2012 23:22:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 074F521C027; Sat, 15 Sep 2012 23:19:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CB0BF21C027 for ; Sat, 15 Sep 2012 23:19:38 +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 4DD8E33CEF0 for ; Sat, 15 Sep 2012 23:19:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id ACE93E544C for ; Sat, 15 Sep 2012 23:19:35 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1347751041.86d7eec78a8718fc32907cd977bd5c395454564d.kent@gentoo> Subject: [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Gtk3/ X-VCS-Repository: proj/perl-overlay X-VCS-Files: dev-perl/Gtk3/ChangeLog dev-perl/Gtk3/Gtk3-0.8.0.ebuild X-VCS-Directories: dev-perl/Gtk3/ X-VCS-Committer: kent X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 86d7eec78a8718fc32907cd977bd5c395454564d X-VCS-Branch: master Date: Sat, 15 Sep 2012 23:19:35 +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: be565ae4-9b34-4bb8-b26f-426a28c3a112 X-Archives-Hash: 6872da276278d3e31bd981b4c53b2a72 commit: 86d7eec78a8718fc32907cd977bd5c395454564d Author: Kent Fredric gmail com> AuthorDate: Sat Sep 15 20:16:50 2012 +0000 Commit: Kent Fredric gmail com> CommitDate: Sat Sep 15 23:17:21 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=86d7eec7 [newversion] Gtk3-0.8.0 ( Un-tested , needs dev-perl/glib-perl-1.270.0, not yet available ) (Portage version: 2.2.0_alpha101/git/Linux x86_64, RepoMan options: --force, signed Manifest commit with key ECD2C675C102CDA4) --- dev-perl/Gtk3/ChangeLog | 5 ++++ dev-perl/Gtk3/Gtk3-0.8.0.ebuild | 40 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 0 deletions(-) diff --git a/dev-perl/Gtk3/ChangeLog b/dev-perl/Gtk3/ChangeLog index 9d17c7f..3caa60e 100644 --- a/dev-perl/Gtk3/ChangeLog +++ b/dev-perl/Gtk3/ChangeLog @@ -2,6 +2,11 @@ # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*Gtk3-0.8.0 (15 Sep 2012) + + 15 Sep 2012; Kent Fredric +Gtk3-0.8.0.ebuild: + Version Bump + *Gtk3-0.7.0 (25 Jul 2012) 25 Jul 2012; Kent Fredric Gtk3-0.6.0.ebuild, diff --git a/dev-perl/Gtk3/Gtk3-0.8.0.ebuild b/dev-perl/Gtk3/Gtk3-0.8.0.ebuild new file mode 100644 index 0000000..1f34011 --- /dev/null +++ b/dev-perl/Gtk3/Gtk3-0.8.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ +EAPI=4 +MODULE_AUTHOR=TSCH +MODULE_VERSION=0.008 +inherit perl-module +inherit virtualx + +DESCRIPTION='Perl interface to the 3.x series of the gtk+ toolkit' +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +extra_depend() { + echo x11-libs/gtk+:3 +} +perl_meta_configure() { + # ExtUtils::MakeMaker 6.30 ( 6.300.0 ) + echo \>=virtual/perl-ExtUtils-MakeMaker-6.30 +} +perl_meta_runtime() { + # Cairo::GObject 1.000 ( 1.0.0 ) + echo \>=dev-perl/Cairo-GObject-1.0.0 + # Glib::Object::Introspection 0.012 ( 0.12.0 ) + echo \>=dev-perl/Glib-Object-Introspection-0.12.0 +} +DEPEND=" + $(extra_depend) + $(perl_meta_configure) + $(perl_meta_runtime) +" +RDEPEND=" + $(extra_depend) + $(perl_meta_runtime) +" +SRC_TEST="do" +src_test() { + Xemake -j1 test || die +}