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 D078715808C for ; Mon, 14 Feb 2022 12:01:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C2B0E085A; Mon, 14 Feb 2022 12:01:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 01DC7E085A for ; Mon, 14 Feb 2022 12:01:29 +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 06259342F9F for ; Mon, 14 Feb 2022 12:01:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B501291 for ; Mon, 14 Feb 2022 12:01:27 +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: <1644840083.7a34377e3277a6a0e2eedd40e90452a44c55f1e6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/qrencode/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/qrencode/metadata.xml media-gfx/qrencode/qrencode-4.1.1.ebuild X-VCS-Directories: media-gfx/qrencode/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7a34377e3277a6a0e2eedd40e90452a44c55f1e6 X-VCS-Branch: master Date: Mon, 14 Feb 2022 12:01:27 +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: 7bf2285e-4cbe-4729-9141-15155ec5dcd8 X-Archives-Hash: 1fe25b4d2707329d645e86ee75bab77a commit: 7a34377e3277a6a0e2eedd40e90452a44c55f1e6 Author: Michał Górny gentoo org> AuthorDate: Mon Feb 14 11:59:35 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Feb 14 12:01:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a34377e media-gfx/qrencode: Add "png" flag Closes: https://bugs.gentoo.org/833147 Signed-off-by: Michał Górny gentoo.org> media-gfx/qrencode/metadata.xml | 3 +++ media-gfx/qrencode/qrencode-4.1.1.ebuild | 8 +++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/media-gfx/qrencode/metadata.xml b/media-gfx/qrencode/metadata.xml index e13c48b5c567..f60e509e8b44 100644 --- a/media-gfx/qrencode/metadata.xml +++ b/media-gfx/qrencode/metadata.xml @@ -9,4 +9,7 @@ mgorny@gentoo.org Michał Górny + + Enable PNG output support in qrencode tool + diff --git a/media-gfx/qrencode/qrencode-4.1.1.ebuild b/media-gfx/qrencode/qrencode-4.1.1.ebuild index e30ccba4b199..147bb0f0b5d4 100644 --- a/media-gfx/qrencode/qrencode-4.1.1.ebuild +++ b/media-gfx/qrencode/qrencode-4.1.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -10,15 +10,17 @@ SRC_URI="https://fukuchi.org/works/${PN}/${P}.tar.bz2" LICENSE="LGPL-2" SLOT="0/4" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~x64-macos" -IUSE="test" +IUSE="png test" RESTRICT="!test? ( test )" -RDEPEND="media-libs/libpng:0=" +RDEPEND=" + png? ( media-libs/libpng:0= )" DEPEND="${RDEPEND} virtual/pkgconfig" src_configure() { local myconf=( + $(use_with png) $(use_with test tests) # TODO: figure out how to make SDL check fail as the SDL test # program is not useful