From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 829951581F0 for ; Wed, 22 Jan 2025 23:14:21 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 64ACB33BE12 for ; Wed, 22 Jan 2025 23:14:21 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5828111042D; Wed, 22 Jan 2025 23:14:20 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 4E7DB11042D for ; Wed, 22 Jan 2025 23:14:20 +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 F150533BE12 for ; Wed, 22 Jan 2025 23:14:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DB2CDCF for ; Wed, 22 Jan 2025 23:14:18 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1737587648.d99a8ba78d2f9a240fb709962617c6623a1e1f36.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/krop/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/krop/krop-0.6.0-r2.ebuild X-VCS-Directories: app-text/krop/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d99a8ba78d2f9a240fb709962617c6623a1e1f36 X-VCS-Branch: master Date: Wed, 22 Jan 2025 23:14:18 +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: 735821fa-b60e-45f4-9a95-4f8486f8c13a X-Archives-Hash: 277dd9166c512f9b43d3c269f70a1c0b commit: d99a8ba78d2f9a240fb709962617c6623a1e1f36 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jan 22 18:19:33 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jan 22 23:14:08 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d99a8ba7 app-text/krop: drop 0.6.0-r2 Signed-off-by: Andreas Sturmlechner gentoo.org> app-text/krop/krop-0.6.0-r2.ebuild | 47 -------------------------------------- 1 file changed, 47 deletions(-) diff --git a/app-text/krop/krop-0.6.0-r2.ebuild b/app-text/krop/krop-0.6.0-r2.ebuild deleted file mode 100644 index 9ddbf8f5b5ef..000000000000 --- a/app-text/krop/krop-0.6.0-r2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{10,11} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit desktop distutils-r1 xdg-utils - -if [[ ${PV} == 9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/arminstraub/krop.git" -else - SRC_URI="https://github.com/arminstraub/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~x86" -fi - -DESCRIPTION="A tool to crop PDF files" -HOMEPAGE="http://arminstraub.com/software/krop" - -LICENSE="GPL-3" -SLOT="0" -IUSE="" - -PATCHES=( - "${FILESDIR}/${P}-links.patch" - "${FILESDIR}/${P}-pikepdf.patch" -) - -RDEPEND="dev-python/python-poppler-qt5[${PYTHON_USEDEP}] - dev-python/pikepdf[${PYTHON_USEDEP}] - dev-python/pyqt5[${PYTHON_USEDEP},gui,widgets]" - -src_install() { - distutils-r1_src_install - domenu "${WORKDIR}/${P}/${PN}.desktop" -} - -pkg_postinst() { - xdg_mimeinfo_database_update - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_mimeinfo_database_update - xdg_desktop_database_update -}