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 6C602158094 for ; Fri, 15 Jul 2022 08:09:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E2E1E1078; Fri, 15 Jul 2022 08:09:26 +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 pigeon.gentoo.org (Postfix) with ESMTPS id C7381E1079 for ; Fri, 15 Jul 2022 08:09:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9D6E13412D9 for ; Fri, 15 Jul 2022 08:09:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E4E7448 for ; Fri, 15 Jul 2022 08:09:23 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1657872558.18acc718f31b81de0e4e5fda5f6104c1e89050b1.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/unoconv/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/unoconv/unoconv-0.9.0.ebuild X-VCS-Directories: app-office/unoconv/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 18acc718f31b81de0e4e5fda5f6104c1e89050b1 X-VCS-Branch: master Date: Fri, 15 Jul 2022 08:09:23 +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: 1a358558-d71b-4587-86fc-b1e348a6f9db X-Archives-Hash: 0cf0fa770b5dbbca24897c3386495e02 commit: 18acc718f31b81de0e4e5fda5f6104c1e89050b1 Author: Hans de Graaff gentoo org> AuthorDate: Thu Jul 14 07:43:24 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Jul 15 08:09:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18acc718 app-office/unoconv: cleanup Signed-off-by: Hans de Graaff gentoo.org> app-office/unoconv/unoconv-0.9.0.ebuild | 36 --------------------------------- 1 file changed, 36 deletions(-) diff --git a/app-office/unoconv/unoconv-0.9.0.ebuild b/app-office/unoconv/unoconv-0.9.0.ebuild deleted file mode 100644 index 89c568fb1c05..000000000000 --- a/app-office/unoconv/unoconv-0.9.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) -inherit python-single-r1 - -DESCRIPTION="Convert between document formats supported by LibreOffice" -HOMEPAGE="http://dag.wiee.rs/home-made/unoconv/" -SRC_URI="https://github.com/dagwieers/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - !app-text/odt2txt - virtual/ooo -" - -PATCHES=( "${FILESDIR}/timeout.patch" ) - -src_prepare() { - default - python_fix_shebang . -} - -src_compile() { :; } - -src_install() { - emake -j1 doc-install install install-links DESTDIR="${D}" - dodoc AUTHORS ChangeLog CHANGELOG.md README.adoc -}