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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 264E9138359 for ; Wed, 7 Oct 2020 20:58:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C5E1E0855; Wed, 7 Oct 2020 20:58:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 14750E0855 for ; Wed, 7 Oct 2020 20:58:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04240340BE8 for ; Wed, 7 Oct 2020 20:58:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A79B12CC for ; Wed, 7 Oct 2020 20:58:31 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1602104303.f5ba41c6f41b4fc109a2eb782029947c9054658c.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild X-VCS-Directories: app-text/paperwork-backend/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: f5ba41c6f41b4fc109a2eb782029947c9054658c X-VCS-Branch: master Date: Wed, 7 Oct 2020 20:58:31 +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: 696e452a-4971-40ab-92d0-188c6d774a65 X-Archives-Hash: 4007353a9e4db725c5f89525615e8a01 commit: f5ba41c6f41b4fc109a2eb782029947c9054658c Author: Bernard Cafarelli gentoo org> AuthorDate: Wed Oct 7 20:58:23 2020 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Wed Oct 7 20:58:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5ba41c6 app-text/paperwork-backend: set DISTUTILS_USE_SETUPTOOLS It has entry_points Closes: https://bugs.gentoo.org/746659 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Bernard Cafarelli gentoo.org> .../paperwork-backend-1.3.1-r1.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild b/app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild new file mode 100644 index 00000000000..3b1b1ba13b5 --- /dev/null +++ b/app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Backend part of Paperwork (Python API, no UI)" +HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="app-text/poppler[introspection] + dev-python/distro[${PYTHON_USEDEP}] + dev-python/natsort[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/pycairo[${PYTHON_USEDEP}] + dev-python/pycountry[${PYTHON_USEDEP}] + dev-python/pyenchant[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-levenshtein[${PYTHON_USEDEP}] + dev-python/simplebayes[${PYTHON_USEDEP}] + dev-python/termcolor[${PYTHON_USEDEP}] + dev-python/whoosh[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}"