From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypdf/
Date: Mon, 18 Dec 2023 05:18:40 +0000 (UTC) [thread overview]
Message-ID: <1702876712.34c1b9512bcf4e3d6acdae66ab48c081d29d700e.mgorny@gentoo> (raw)
commit: 34c1b9512bcf4e3d6acdae66ab48c081d29d700e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 18 04:49:11 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec 18 05:18:32 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34c1b951
dev-python/pypdf: Bump to 3.17.3
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pypdf/Manifest | 1 +
dev-python/pypdf/pypdf-3.17.3.ebuild | 59 ++++++++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/dev-python/pypdf/Manifest b/dev-python/pypdf/Manifest
index 60622c7aa62e..46ff1aa4af8b 100644
--- a/dev-python/pypdf/Manifest
+++ b/dev-python/pypdf/Manifest
@@ -1,3 +1,4 @@
DIST pypdf-3.17.1.gh.tar.gz 7975263 BLAKE2B 27b413dd5f127e22cc0116baeee62115f4b02b2ff39f27b8a7884af2389423c332114cfa826a090683c2ab6583b1a549ee1de775869eaaa0a09237aa52a65ebd SHA512 c23294a67bee6ef4e673c02b045c9ec2d3471f93bfc8530959a02289f94b0aa47e79b24bddd0603731c39ddc5197fc6fc10e668bbd1077a32ecdfc1d33740397
DIST pypdf-3.17.2.gh.tar.gz 7977562 BLAKE2B d33413b1efe38bc147156e199851a2afb712960a377c675ec2197a720d00ef18d143a1176312c8b9b7681839024fb26544b6c09a482e3e24c9041c3d2d191cd1 SHA512 430bae4aeb1ffb8c75fd95daf04622d082725cdcf01637e2e42234bbc867360d9c5e6ebd3782608c1299f9fa1ec7598c49b0195750f58d0d16c3d744895606d8
+DIST pypdf-3.17.3.gh.tar.gz 7977650 BLAKE2B eee1e5d86fcd32faa0919f2e9bb8c1cd2630d75f6030f9db05a2b71993038452fbed05bbb5dc63d3562038da19c784170e24682054ad669a35b8027f47cc2d45 SHA512 fe91b4f1d6ad9394e41bcdaa99adb5a6fe15df70a1db0858f560f63352aa279446ad802738306d5d7bd58c699069872a777997621b62429137da5c53b4595ca6
DIST pypdf-sample-files-964fb47b0fbfa89864680582640ae4eedf143890.gh.tar.gz 11668924 BLAKE2B 0c7d8e7cfb2f9d06d7633d57b691ba473d33cfcb58d2f1f83661cef9d755340d05db8767771a385d0ba88aa904f84b8bc7eafdb5d4f614b7a21a2d138572316f SHA512 28070b575273b6fee3173e797ed5bac618f8e8aca16d0122dcf3b4b16cedbcad69b84a9bc4be65037695597bcc1fa7898cdf766c37915c49f880a0c6ca057e68
diff --git a/dev-python/pypdf/pypdf-3.17.3.ebuild b/dev-python/pypdf/pypdf-3.17.3.ebuild
new file mode 100644
index 000000000000..c3de6265ee0d
--- /dev/null
+++ b/dev-python/pypdf/pypdf-3.17.3.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+SAMPLE_COMMIT=964fb47b0fbfa89864680582640ae4eedf143890
+DESCRIPTION="Python library to work with PDF files"
+HOMEPAGE="
+ https://pypi.org/project/pypdf/
+ https://github.com/py-pdf/pypdf/
+"
+SRC_URI="
+ https://github.com/py-pdf/pypdf/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+ test? (
+ https://github.com/py-pdf/sample-files/archive/${SAMPLE_COMMIT}.tar.gz
+ -> ${PN}-sample-files-${SAMPLE_COMMIT}.gh.tar.gz
+ )
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+BDEPEND="
+ test? (
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ >=dev-python/pillow-8.0.0[jpeg,jpeg2k,tiff,${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+ # rely on -Werror
+ tests/test_utils.py::test_deprecate_no_replacement
+ tests/test_workflows.py::test_orientations
+ tests/test_writer.py::test_remove_image_per_type
+ # TODO: requires fpdf
+ tests/test_page.py::test_compression
+ tests/test_writer.py::test_merging_many_temporary_files
+)
+
+src_unpack() {
+ default
+ if use test; then
+ mv "sample-files-${SAMPLE_COMMIT}"/* "${S}"/sample-files/ || die
+ fi
+}
+
+python_test() {
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest -o addopts= -m "not enable_socket"
+}
next reply other threads:[~2023-12-18 5:18 UTC|newest]
Thread overview: 111+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-18 5:18 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-16 9:21 [gentoo-commits] repo/gentoo:master commit in: dev-python/pypdf/ Michał Górny
2024-11-16 9:20 Michał Górny
2024-11-16 8:38 Arthur Zamarin
2024-11-16 8:09 Michał Górny
2024-10-28 5:12 Michał Górny
2024-10-19 10:17 Michał Górny
2024-10-19 10:11 Arthur Zamarin
2024-10-19 9:26 Arthur Zamarin
2024-10-19 7:39 Arthur Zamarin
2024-09-29 15:20 Michał Górny
2024-09-18 14:03 Michał Górny
2024-08-10 8:19 Michał Górny
2024-08-10 8:17 Michał Górny
2024-08-10 7:25 Michał Górny
2024-08-10 6:46 Michał Górny
2024-07-22 1:47 Michał Górny
2024-07-15 9:04 Michał Górny
2024-05-18 8:09 Michał Górny
2024-04-25 3:39 Michał Górny
2024-04-24 17:16 Sam James
2024-04-24 16:15 Sam James
2024-04-24 15:31 Sam James
2024-04-08 3:06 Michał Górny
2024-03-22 12:37 Michał Górny
2024-03-22 6:14 Arthur Zamarin
2024-03-22 6:14 Arthur Zamarin
2024-03-21 18:13 Arthur Zamarin
2024-03-07 18:44 Sam James
2024-03-07 17:09 Michał Górny
2024-03-07 16:22 Michał Górny
2024-03-04 6:31 Michał Górny
2024-02-19 4:10 Michał Górny
2024-02-14 17:25 Michał Górny
2024-02-14 16:44 Sam James
2024-01-29 10:11 Michał Górny
2024-01-29 5:06 Michał Górny
2024-01-28 19:37 Michał Górny
2024-01-19 18:28 Arthur Zamarin
2024-01-13 12:45 Michał Górny
2024-01-13 12:02 Sam James
2024-01-13 10:00 Arthur Zamarin
2024-01-13 9:22 Arthur Zamarin
2023-12-25 7:06 Michał Górny
2023-12-11 4:14 Michał Górny
2023-11-25 6:58 Michał Górny
2023-11-25 6:36 Sam James
2023-11-25 6:36 Sam James
2023-11-14 20:06 Michał Górny
2023-10-30 18:10 Michał Górny
2023-10-28 15:23 Michał Górny
2023-10-27 19:32 Sam James
2023-10-27 19:32 Sam James
2023-10-11 3:22 Michał Górny
2023-10-08 17:48 Michał Górny
2023-09-26 4:44 Michał Górny
2023-09-25 19:26 Sam James
2023-09-25 18:27 Arthur Zamarin
2023-09-25 2:55 Michał Górny
2023-09-18 2:39 Michał Górny
2023-09-10 14:51 Michał Górny
2023-09-04 2:48 Michał Górny
2023-08-27 15:59 Michał Górny
2023-08-26 9:46 Michał Górny
2023-08-24 12:47 Michał Górny
2023-08-21 2:52 Michał Górny
2023-08-14 6:26 Michał Górny
2023-08-07 3:01 Michał Górny
2023-07-30 17:51 Michał Górny
2023-07-28 9:26 Michał Górny
2023-07-28 7:56 Sam James
2023-07-28 7:56 Sam James
2023-07-24 3:33 Michał Górny
2023-07-17 7:34 Michał Górny
2023-07-10 2:36 Michał Górny
2023-07-03 4:15 Michał Górny
2023-06-28 5:06 Michał Górny
2023-06-27 11:36 Michał Górny
2023-06-27 9:08 Jakov Smolić
2023-06-27 7:14 Sam James
2023-06-25 2:26 Michał Górny
2023-06-24 6:10 Michał Górny
2023-06-19 13:43 Michał Górny
2023-06-19 4:58 Michał Górny
2023-06-05 5:07 Michał Górny
2023-06-01 7:24 Sam James
2023-05-23 16:21 Michał Górny
2023-05-23 16:10 Arthur Zamarin
2023-05-23 15:35 Arthur Zamarin
2023-05-22 5:53 Michał Górny
2023-04-28 15:57 Arthur Zamarin
2023-04-28 15:55 Arthur Zamarin
2023-04-28 14:41 Arthur Zamarin
2023-04-23 19:30 Michał Górny
2023-04-17 5:41 Michał Górny
2023-04-10 6:07 Michał Górny
2023-03-30 17:12 Michał Górny
2023-03-30 16:57 Sam James
2023-03-30 15:34 Arthur Zamarin
2023-03-26 18:02 Michał Górny
2023-03-19 19:03 Michał Górny
2023-03-12 13:18 Michał Górny
2023-03-07 15:45 Sam James
2023-03-07 7:08 Michał Górny
2023-03-04 11:17 Arthur Zamarin
2023-02-27 5:38 Michał Górny
2023-02-13 6:05 Michał Górny
2023-02-06 4:31 Michał Górny
2023-01-23 7:34 Michał Górny
2023-01-09 8:09 Michał Górny
2023-01-01 7:26 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1702876712.34c1b9512bcf4e3d6acdae66ab48c081d29d700e.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox