commit:     85b36d4b1a46991196ffdd255bc27f12af8087d1
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  5 19:28:11 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Jul  5 19:28:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85b36d4b

dev-python/pikepdf: add 5.3.1

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/pikepdf/Manifest             |  1 +
 dev-python/pikepdf/pikepdf-5.3.1.ebuild | 61 +++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/pikepdf/Manifest b/dev-python/pikepdf/Manifest
index ed686d74ff79..6ec55ba19e9f 100644
--- a/dev-python/pikepdf/Manifest
+++ b/dev-python/pikepdf/Manifest
@@ -3,3 +3,4 @@ DIST pikepdf-5.1.4.gh.tar.gz 2356865 BLAKE2B 
7ebeedd7a2bb29371325b0cd6cb89cd5684
 DIST pikepdf-5.1.5.gh.tar.gz 2356890 BLAKE2B 
e08f311ad2714f856eb29510e847ca2ddf2b3919cc372d4bedb59c7449be69574a32ea6cd23f51c34d56096bb8d2936f70c52a6a948d513277ff2a5d13e35725
 SHA512 
e6da0471abdd2a8133fb5789f72eb948e32eae24ee61956fb71f5e279151bc6df5d18ac9b6d73987fd9b891739892111df8c5f93c90ba8ae022dbb2821858350
 DIST pikepdf-5.2.0.gh.tar.gz 2359546 BLAKE2B 
953a5268eb7dc52934967b593237bb3006ee35e7a1657c0721ef4cdc874c9c51d7920fbdb7e38f67e221b01536166b8811a95021668491e8c783f51a08f49144
 SHA512 
f36ec09017aeac547c2b4ef17de7513293e8bf243707cb9c0c03826973be266847d8514002be546ac958a735e29765df94efdaecde6ad5f901c329dadc3e9451
 DIST pikepdf-5.3.0.gh.tar.gz 2360722 BLAKE2B 
1be449661deb3e57f097e0a95fcd099c1652e0700077077e299c88ae131487e6f2bb89cc07ffc06bdf15f46bc6aa613ed823b9dcc6ef55f100f37451be7c2488
 SHA512 
ef82703447d20edc497fcac287b4eddb48f1901aa060dc5f57301469741bb15ce367d0eac4ec27431740707f0e56975dc36d8e7eb3897c879663d56134c14fb1
+DIST pikepdf-5.3.1.gh.tar.gz 2360816 BLAKE2B 
02b36814144acbf05cf50d8bca6542271208af0ed7548dd8f41493b6e95183851033a3d4f3335f10d4bf6798606e9031aa2b38d28a9e824692fe8f78f1e68077
 SHA512 
b0256533011dae384ce657200db69b6e3ac93b4364fe55a2e0fb8fb2d993550dcfe4e05b723b81d62ed1db3cd544023e81a9e70fd807bcfb618f125ae5a35117

diff --git a/dev-python/pikepdf/pikepdf-5.3.1.ebuild 
b/dev-python/pikepdf/pikepdf-5.3.1.ebuild
new file mode 100644
index 000000000000..adeb8463feb9
--- /dev/null
+++ b/dev-python/pikepdf/pikepdf-5.3.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_P=${P/_p/.post}
+DESCRIPTION="Python library to work with pdf files based on qpdf"
+HOMEPAGE="
+       https://github.com/pikepdf/pikepdf/
+       https://pypi.org/project/pikepdf/
+"
+SRC_URI="
+       https://github.com/${PN}/${PN}/archive/v${PV/_p/.post}.tar.gz
+               -> ${P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+       >=app-text/qpdf-10.6.2:0=
+"
+RDEPEND="
+       ${DEPEND}
+       dev-python/deprecation[${PYTHON_USEDEP}]
+       >=dev-python/lxml-4.0[${PYTHON_USEDEP}]
+       dev-python/packaging[${PYTHON_USEDEP}]
+       >=dev-python/pillow-9[${PYTHON_USEDEP}]
+       >=dev-python/pybind11-2.9.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       >=dev-python/pybind11-2.9.1[${PYTHON_USEDEP}]
+       >=dev-python/setuptools_scm-7.0.3[${PYTHON_USEDEP}]
+       dev-python/tomli[${PYTHON_USEDEP}]
+       test? (
+               >=dev-python/attrs-20.2.0[${PYTHON_USEDEP}]
+               >=dev-python/hypothesis-5[${PYTHON_USEDEP}]
+               >=dev-python/pillow-5.0.0[${PYTHON_USEDEP},jpeg,lcms,tiff]
+               >=dev-python/psutil-5[${PYTHON_USEDEP}]
+               >=dev-python/pytest-6[${PYTHON_USEDEP}]
+               >=dev-python/pytest-timeout-1.4.2[${PYTHON_USEDEP}]
+               >=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]
+               >=dev-python/python-xmp-toolkit-2.0.1[${PYTHON_USEDEP}]
+       )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+       sed -e '/-n auto/d' -i pyproject.toml || die
+       distutils-r1_src_prepare
+}
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}

Reply via email to