app-text/pdfarranger: bump to 1.14.0

Signed-off-by: Andrey Grozin <grozin@gentoo.org>
This commit is contained in:
Andrey Grozin
2026-06-03 13:11:50 +07:00
parent 3b70b69161
commit bc258e618d
2 changed files with 41 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST pdfarranger-1.13.0.tar.gz 627691 BLAKE2B e7056ce52d90b24858cc06491b3b12db64437a99c434db51b72a1cd008fd074295960b80315eff6f8c6c423a582b17b3d5ac637639d78094a5924a752e53f94c SHA512 04921604019bccda0dee504594680d6311af1ff7ccfc57ce0c7e44e7abfd8cad0206e3f3d400862928d4a5ea1306c8fa9ebfd982563e198413c09f80dcc2af6d
DIST pdfarranger-1.14.0.tar.gz 640919 BLAKE2B 01e5e49f1bbf86e85242b542bc19c3bef50931c9314cdd741f8764cd2150db9737878a517041594a73debc406b3877fdfdef1607fc2f4c273391f33601076d72 SHA512 4ad667eabced76ae83849e8059805a379a758c756b92d0363353b8697547008faa358bc8b96ea9348cf132b5c9851a9892dd1f301f9ffbe6b351a692cfd3a5df

View File

@@ -0,0 +1,40 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 optfeature xdg desktop
DESCRIPTION="Merge or split pdfs; rearrange, rotate, crop pages"
HOMEPAGE="https://github.com/jeromerobert/pdfarranger"
SRC_URI="https://github.com/jeromerobert/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
app-text/poppler[introspection,cairo]
dev-python/pikepdf[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP},lcms]
dev-python/pygobject:3[${PYTHON_USEDEP},cairo]
dev-python/python-dateutil[${PYTHON_USEDEP}]
x11-libs/gtk+:3[introspection]
x11-libs/pango[introspection]
"
DEPEND="${RDEPEND}"
src_install() {
distutils-r1_src_install
for x in 16 32 48 256 scalable
do doicon -s ${x} data/icons/hicolor/${x}*/*
done
}
pkg_postinst() {
xdg_pkg_postinst
optfeature "image file import" media-gfx/img2pdf
}