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 CA397158083 for ; Fri, 13 Sep 2024 15:20:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB4A6E29E7; Fri, 13 Sep 2024 15:20:58 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 94C16E29E7 for ; Fri, 13 Sep 2024 15:20:58 +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 CFB6B34069F for ; Fri, 13 Sep 2024 15:20:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3862F27EA for ; Fri, 13 Sep 2024 15:20:56 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1726240787.486be0f000774bd54af406a88c0a531e3b841f88.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libiptcdata/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libiptcdata/libiptcdata-1.0.5.ebuild X-VCS-Directories: media-libs/libiptcdata/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 486be0f000774bd54af406a88c0a531e3b841f88 X-VCS-Branch: master Date: Fri, 13 Sep 2024 15:20:56 +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: cd02e2b4-2ba5-4d38-ad16-1485a99830cb X-Archives-Hash: 6e812ef7c94fe1585668dfa7a6113c37 commit: 486be0f000774bd54af406a88c0a531e3b841f88 Author: Petr Vaněk gentoo org> AuthorDate: Fri Sep 13 14:53:59 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Fri Sep 13 15:19:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=486be0f0 media-libs/libiptcdata: drop 1.0.5 Signed-off-by: Petr Vaněk gentoo.org> media-libs/libiptcdata/libiptcdata-1.0.5.ebuild | 52 ------------------------- 1 file changed, 52 deletions(-) diff --git a/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild b/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild deleted file mode 100644 index 32b30bcceb03..000000000000 --- a/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit python-single-r1 - -DESCRIPTION="Library for International Press Telecommunications Council (IPTC) metadata" -HOMEPAGE="https://github.com/ianw/libiptcdata http://libiptcdata.sourceforge.net" -SRC_URI="https://github.com/ianw/${PN}/releases/download/release_1_0_5/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~loong ppc ppc64 ~riscv sparc x86" -IUSE="doc examples nls python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - nls? ( virtual/libintl ) - python? ( ${PYTHON_DEPS} ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - doc? ( >=dev-util/gtk-doc-1 ) - nls? ( >=sys-devel/gettext-0.13.1 ) -" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_configure () { - local myeconfargs=( - $(use_enable nls) - $(use_enable python) - $(use_enable doc gtk-doc) - ) - econf "${myeconfargs[@]}" -} - -src_install () { - default - - if use examples; then - dodoc python/README - dodoc -r python/examples - fi - - find "${D}" -name '*.la' -delete || die "failed to remove *.la files" -}