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 1F7B1138346 for ; Wed, 8 Jan 2020 11:15:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66761E0843; Wed, 8 Jan 2020 11:15:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 20369E0843 for ; Wed, 8 Jan 2020 11:15:31 +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 97CF134DE27 for ; Wed, 8 Jan 2020 11:15:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28B8477 for ; Wed, 8 Jan 2020 11:15:28 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1578482105.fe84443b7d2be83cfcc76556ad0456f37f30bae4.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pikepdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pikepdf/Manifest dev-python/pikepdf/metadata.xml dev-python/pikepdf/pikepdf-1.8.3.ebuild X-VCS-Directories: dev-python/pikepdf/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: fe84443b7d2be83cfcc76556ad0456f37f30bae4 X-VCS-Branch: master Date: Wed, 8 Jan 2020 11:15:28 +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: 8a2b7fed-c978-4673-a917-e5c0f5e7dfee X-Archives-Hash: e2e025045df5853d01249e0b796524cf commit: fe84443b7d2be83cfcc76556ad0456f37f30bae4 Author: Andrey Grozin gentoo org> AuthorDate: Wed Jan 8 11:15:05 2020 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Wed Jan 8 11:15:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe84443b dev-python/pikepdf: initial import Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andrey Grozin gentoo.org> dev-python/pikepdf/Manifest | 1 + dev-python/pikepdf/metadata.xml | 16 ++++++++++++++++ dev-python/pikepdf/pikepdf-1.8.3.ebuild | 19 +++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-python/pikepdf/Manifest b/dev-python/pikepdf/Manifest new file mode 100644 index 00000000000..af5820683ee --- /dev/null +++ b/dev-python/pikepdf/Manifest @@ -0,0 +1 @@ +DIST pikepdf-1.8.3.tar.gz 1649370 BLAKE2B c655eb2a9304eb624b5f3dd3ea68ff3194f5a508b4249ef0643689945c28bbe9eaad015df481516d6cfce6768a70a34377725a7995b448f22a2eb025b4967e71 SHA512 5cb674042dca6850df7cf9476743956967d0ad168ac6bdadda03895a604f6c3670849e33ab863e7686eaa46922489d6dd1da9883d19a721c8021323d768086a9 diff --git a/dev-python/pikepdf/metadata.xml b/dev-python/pikepdf/metadata.xml new file mode 100644 index 00000000000..bb5d42c73a8 --- /dev/null +++ b/dev-python/pikepdf/metadata.xml @@ -0,0 +1,16 @@ + + + + + grozin@gentoo.org + Andrey Grozin + + + pikepdf is a Python library for reading and writing PDF files. + pikepdf is based on QPDF, a powerful PDF manipulation and repair library. + + + pikepdf + pikepdf/pikepdf + + diff --git a/dev-python/pikepdf/pikepdf-1.8.3.ebuild b/dev-python/pikepdf/pikepdf-1.8.3.ebuild new file mode 100644 index 00000000000..e98e244913c --- /dev/null +++ b/dev-python/pikepdf/pikepdf-1.8.3.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="Python library to work with pdf files based on qpdf" +HOMEPAGE="https://pypi.org/project/pikepdf/ https://github.com/pikepdf/pikepdf" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" +RDEPEND="app-text/qpdf + dev-python/pybind11" +DEPEND="${RDEPEND} + dev-python/setuptools_scm_git_archive"