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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C50D2158043 for ; Fri, 12 Apr 2024 09:02:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4E85E29F2; Fri, 12 Apr 2024 09:02:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B9B4E29F2 for ; Fri, 12 Apr 2024 09:02:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9B0434306E for ; Fri, 12 Apr 2024 09:02:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F1F216C8 for ; Fri, 12 Apr 2024 09:02:39 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1712912546.a3cb8f71b91f4a2af814650d6f99c1c156f96b48.arthurzam@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-r1.ebuild media-gfx/pixels2pgf/pixels2pgf-9999.ebuild X-VCS-Directories: media-gfx/pixels2pgf/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: a3cb8f71b91f4a2af814650d6f99c1c156f96b48 X-VCS-Branch: master Date: Fri, 12 Apr 2024 09:02:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 37f818d8-62e0-4c84-abda-71cca1f4d34d X-Archives-Hash: 5ab91ec952c96087dca836a126b660df commit: a3cb8f71b91f4a2af814650d6f99c1c156f96b48 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Apr 12 09:01:53 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Apr 12 09:02:26 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3cb8f71 media-gfx/pixels2pgf: EAPI8 Signed-off-by: Arthur Zamarin gentoo.org> media-gfx/pixels2pgf/pixels2pgf-0.1-r1.ebuild | 18 ++++++++++++++++++ media-gfx/pixels2pgf/pixels2pgf-9999.ebuild | 13 ++++++------- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/media-gfx/pixels2pgf/pixels2pgf-0.1-r1.ebuild b/media-gfx/pixels2pgf/pixels2pgf-0.1-r1.ebuild new file mode 100644 index 000000000000..a4efe64b145e --- /dev/null +++ b/media-gfx/pixels2pgf/pixels2pgf-0.1-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Convert pixel images (e.g. QRCode) to PGF/Tikz rectangles" +HOMEPAGE="https://github.com/projg2/pixels2pgf/" +SRC_URI="https://github.com/projg2/pixels2pgf/releases/download/${P}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +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 ae8db1f90a5d..22eefdf7f9be 100644 --- a/media-gfx/pixels2pgf/pixels2pgf-9999.ebuild +++ b/media-gfx/pixels2pgf/pixels2pgf-9999.ebuild @@ -1,22 +1,21 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 EGIT_REPO_URI="https://github.com/projg2/${PN}.git" inherit autotools git-r3 DESCRIPTION="Convert pixel images (e.g. QRCode) to PGF/Tikz rectangles" HOMEPAGE="https://github.com/projg2/pixels2pgf/" -SRC_URI="" LICENSE="BSD" SLOT="0" -KEYWORDS="" -IUSE="" -RDEPEND="media-libs/libsdl:0= - media-libs/sdl-image:0=" +RDEPEND=" + media-libs/libsdl:0= + media-libs/sdl-image:0= +" DEPEND="${RDEPEND}" src_prepare() {