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 8F894139694 for ; Thu, 29 Jun 2017 22:22:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 184CCE0BEC; Thu, 29 Jun 2017 22:22:25 +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 EC9BBE0BF9 for ; Thu, 29 Jun 2017 22:22:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A4971341886 for ; Thu, 29 Jun 2017 22:22:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6DF674A5 for ; Thu, 29 Jun 2017 22:22:20 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1498774924.09d55fe1a12269d9eae8608624002fc28a4bed05.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/pixels2pgf/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/pixels2pgf/pixels2pgf-0.1.ebuild media-gfx/pixels2pgf/pixels2pgf-9999.ebuild X-VCS-Directories: media-gfx/pixels2pgf/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 09d55fe1a12269d9eae8608624002fc28a4bed05 X-VCS-Branch: master Date: Thu, 29 Jun 2017 22:22:20 +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: d7cea93f-60a8-4df9-8636-b94c2269e3c4 X-Archives-Hash: 3a0e6b39aaafa183296753488050bdd1 commit: 09d55fe1a12269d9eae8608624002fc28a4bed05 Author: Michał Górny gentoo org> AuthorDate: Thu Jun 29 21:39:17 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 29 22:22:04 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d55fe1 media-gfx/pixels2pgf: Modernize to EAPI=6 media-gfx/pixels2pgf/pixels2pgf-0.1.ebuild | 8 +++----- media-gfx/pixels2pgf/pixels2pgf-9999.ebuild | 26 ++++++++++---------------- 2 files changed, 13 insertions(+), 21 deletions(-) diff --git a/media-gfx/pixels2pgf/pixels2pgf-0.1.ebuild b/media-gfx/pixels2pgf/pixels2pgf-0.1.ebuild index c0a0029775c..c69380b1d9b 100644 --- a/media-gfx/pixels2pgf/pixels2pgf-0.1.ebuild +++ b/media-gfx/pixels2pgf/pixels2pgf-0.1.ebuild @@ -1,9 +1,7 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=4 - -inherit autotools-utils +EAPI=6 DESCRIPTION="Convert pixel images (e.g. QRCode) to PGF/Tikz rectangles" HOMEPAGE="https://github.com/mgorny/pixels2pgf/" @@ -14,6 +12,6 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND="media-libs/libsdl - media-libs/sdl-image" +RDEPEND="media-libs/libsdl:0= + media-libs/sdl-image:0=" DEPEND="${RDEPEND}" diff --git a/media-gfx/pixels2pgf/pixels2pgf-9999.ebuild b/media-gfx/pixels2pgf/pixels2pgf-9999.ebuild index 73c8e38db29..765618b5066 100644 --- a/media-gfx/pixels2pgf/pixels2pgf-9999.ebuild +++ b/media-gfx/pixels2pgf/pixels2pgf-9999.ebuild @@ -1,31 +1,25 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=6 -#if LIVE -AUTOTOOLS_AUTORECONF=yes EGIT_REPO_URI="https://github.com/mgorny/${PN}.git" - -inherit git-r3 -#endif - -inherit autotools-utils +inherit autotools git-r3 DESCRIPTION="Convert pixel images (e.g. QRCode) to PGF/Tikz rectangles" HOMEPAGE="https://github.com/mgorny/pixels2pgf/" -SRC_URI="https://github.com/mgorny/pixels2pgf/releases/download/${P}/${P}.tar.bz2" +SRC_URI="" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="" IUSE="" -RDEPEND="media-libs/libsdl - media-libs/sdl-image" +RDEPEND="media-libs/libsdl:0= + media-libs/sdl-image:0=" DEPEND="${RDEPEND}" -#if LIVE -KEYWORDS= -SRC_URI= -#endif +src_prepare() { + default + eautoreconf +}