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 5860C1381F3 for ; Wed, 12 Jun 2013 14:02:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D617CE0815; Wed, 12 Jun 2013 14:02:46 +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 6A985E0815 for ; Wed, 12 Jun 2013 14:02:46 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7CB1833E2C4 for ; Wed, 12 Jun 2013 14:02:45 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2323) id 44A9421710; Wed, 12 Jun 2013 14:02:44 +0000 (UTC) From: "Michael Palimaka (kensington)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, kensington@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/qtemu: qtemu-1.0.5.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: qtemu-1.0.5.ebuild ChangeLog X-VCS-Directories: app-emulation/qtemu X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130612140244.44A9421710@flycatcher.gentoo.org> Date: Wed, 12 Jun 2013 14:02:44 +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: c218dd65-287f-4549-a427-7c9a2adb1e00 X-Archives-Hash: f691b11cdfba3172bff313d289104fed kensington 13/06/12 14:02:44 Modified: qtemu-1.0.5.ebuild ChangeLog Log: Migrate to EAPI 5. Add missing dependency. Drop unused inherit. (Portage version: 2.1.12.4/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C) Revision Changes Path 1.7 app-emulation/qtemu/qtemu-1.0.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qtemu/qtemu-1.0.5.ebuild?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qtemu/qtemu-1.0.5.ebuild?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qtemu/qtemu-1.0.5.ebuild?r1=1.6&r2=1.7 Index: qtemu-1.0.5.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-emulation/qtemu/qtemu-1.0.5.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- qtemu-1.0.5.ebuild 2 Mar 2013 19:25:23 -0000 1.6 +++ qtemu-1.0.5.ebuild 12 Jun 2013 14:02:44 -0000 1.7 @@ -1,10 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qtemu/qtemu-1.0.5.ebuild,v 1.6 2013/03/02 19:25:23 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qtemu/qtemu-1.0.5.ebuild,v 1.7 2013/06/12 14:02:44 kensington Exp $ -EAPI="2" +EAPI=5 -inherit eutils qt4-r2 cmake-utils +inherit eutils cmake-utils DESCRIPTION="A graphical user interface for QEMU written in Qt4." HOMEPAGE="http://qtemu.sourceforge.net/" @@ -15,11 +15,12 @@ KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="dev-qt/qtgui:4" +DEPEND="dev-qt/qtcore:4 + dev-qt/qtgui:4" RDEPEND="${DEPEND} app-emulation/qemu" -DOCS="ChangeLog README" +DOCS=( ChangeLog README ) PATCHES=( "${FILESDIR}/${PV}-help_and_translation_paths.patch" ) 1.8 app-emulation/qtemu/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qtemu/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qtemu/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qtemu/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-emulation/qtemu/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 2 Mar 2013 19:25:23 -0000 1.7 +++ ChangeLog 12 Jun 2013 14:02:44 -0000 1.8 @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/qtemu # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qtemu/ChangeLog,v 1.7 2013/03/02 19:25:23 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qtemu/ChangeLog,v 1.8 2013/06/12 14:02:44 kensington Exp $ + + 12 Jun 2013; Michael Palimaka qtemu-1.0.5.ebuild: + Migrate to EAPI 5. Add missing dependency. Drop unused inherit. 02 Mar 2013; Markos Chandras qtemu-1.0.5.ebuild: Move Qt dependencies to the new category