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 7C7D31581FB for ; Sat, 6 Jul 2024 06:35:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2EC92BC176; Sat, 6 Jul 2024 06:35:18 +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 A38552BC170 for ; Sat, 6 Jul 2024 06:35:18 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E3BFF335D64 for ; Sat, 6 Jul 2024 06:35:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81A951DD0 for ; Sat, 6 Jul 2024 06:35:16 +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: <1720247698.3bec1111f0587d5b46a6dc1cf2002104b10f33ad.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/qrencode/ X-VCS-Repository: repo/gentoo X-VCS-Files: 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: 3bec1111f0587d5b46a6dc1cf2002104b10f33ad X-VCS-Branch: master Date: Sat, 6 Jul 2024 06:35:16 +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: 4f1bf34d-9441-461f-acd8-0f7afdda7696 X-Archives-Hash: 6fa77e857ae782dfc6b08819fb6ce85f commit: 3bec1111f0587d5b46a6dc1cf2002104b10f33ad Author: Michał Górny gentoo org> AuthorDate: Sat Jul 6 06:29:46 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jul 6 06:34:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bec1111 media-gfx/qrencode: Remove old Signed-off-by: Michał Górny gentoo.org> media-gfx/qrencode/qrencode-4.1.1.ebuild | 40 -------------------------------- 1 file changed, 40 deletions(-) diff --git a/media-gfx/qrencode/qrencode-4.1.1.ebuild b/media-gfx/qrencode/qrencode-4.1.1.ebuild deleted file mode 100644 index da06e19dcc0f..000000000000 --- a/media-gfx/qrencode/qrencode-4.1.1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="C library for encoding data in a QR Code symbol" -HOMEPAGE="https://fukuchi.org/works/qrencode/" -SRC_URI="https://fukuchi.org/works/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0/4" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos" -IUSE="png test" -RESTRICT="!test? ( test )" - -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 - ) - - econf "${myconf[@]}" -} - -src_test() { - cd tests || die - ./test_basic.sh || die -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}