mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-16 14:17:02 +02:00
qpdf: update to 11.0.0.
This commit is contained in:
parent
b8da86b625
commit
6d8d6ba69e
4 changed files with 22 additions and 19 deletions
|
@ -3886,7 +3886,7 @@ libbudgie-private.so.0 budgie-desktop-10.5.1_1
|
|||
libbudgietheme.so.0 budgie-desktop-10.5.1_1
|
||||
libbudgie-plugin.so.0 budgie-desktop-10.5.1_1
|
||||
libslirp.so.0 libslirp-4.2.0_1
|
||||
libqpdf.so.28 libqpdf-10.0.0_1
|
||||
libqpdf.so.29 libqpdf-11.0.0_1
|
||||
libstk-4.6.1.so libstk-4.6.1_1
|
||||
libc++utilities.so.5 cpp-utilities-5.2.0_1
|
||||
libtagparser.so.11 tagparser-11.0.0_1
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'cups-filters'
|
||||
pkgname=cups-filters
|
||||
version=1.28.15
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
configure_args="--disable-static --with-rcdir=no --enable-avahi
|
||||
--with-browseremoteprotocols=DNSSD,CUPS
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'python3-pikepdf'
|
||||
pkgname=python3-pikepdf
|
||||
version=5.6.1
|
||||
version=6.0.0.post2
|
||||
revision=1
|
||||
wrksrc="pikepdf-${version}"
|
||||
build_style=python3-module
|
||||
|
@ -16,7 +16,7 @@ license="MPL-2.0"
|
|||
homepage="https://github.com/pikepdf/pikepdf"
|
||||
changelog="https://raw.githubusercontent.com/pikepdf/pikepdf/master/docs/releasenotes/version${version%%.*}.rst"
|
||||
distfiles="${PYPI_SITE}/p/pikepdf/pikepdf-${version}.tar.gz"
|
||||
checksum=03fb70ff4fada9cba864d04033f4166b5bf7fa85c90cdc05afd0ab87c9ccaa1a
|
||||
checksum=dae409c6434151498afc78e5fa636396b48e8a49dc46456012fc4917a0870078
|
||||
|
||||
pre_check() {
|
||||
cp -r src/pikepdf.egg-info "$(cd build/lib* && pwd)"
|
||||
|
|
|
@ -1,35 +1,38 @@
|
|||
# Template file for 'qpdf'
|
||||
pkgname=qpdf
|
||||
version=10.6.3
|
||||
version=11.0.0
|
||||
revision=1
|
||||
wrksrc="qpdf-release-qpdf-${version}"
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="perl gettext tar"
|
||||
makedepends="pcre-devel libjpeg-turbo-devel"
|
||||
build_style=cmake
|
||||
hostmakedepends="perl pkg-config"
|
||||
makedepends="zlib-devel libjpeg-turbo-devel"
|
||||
short_desc="Content-Preserving PDF Transformation System"
|
||||
maintainer="Benjamín Albiñana <benalb@gmail.com>"
|
||||
license="Apache-2.0"
|
||||
homepage="https://github.com/qpdf/qpdf"
|
||||
changelog="https://raw.githubusercontent.com/qpdf/qpdf/stable/manual/release-notes.rst"
|
||||
distfiles="${homepage}/archive/release-qpdf-${version}.tar.gz"
|
||||
checksum=64bbb654ec19b6812284ef1bc40c57b091de5281f265f1c3c83dd8ccf6bedcf5
|
||||
distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz"
|
||||
checksum=ec3c0185fd0cdfc9beea3569c2c0519d3cc8200fa730bab555885d2cfc36ae4b
|
||||
|
||||
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
||||
makedepends+=" libatomic-devel"
|
||||
LDFLAGS+=" -latomic"
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
armv6l-musl)
|
||||
LIBS="-latomic"
|
||||
;;
|
||||
*)
|
||||
LDFLAGS+=" -latomic"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
do_check() {
|
||||
# libtsdc++ throws an exception on musl if std::locale("") is used, since
|
||||
# its generic locale implementation only supports the C locale.
|
||||
# by forcing LANG=C, no exception is thrown and the test suite can run to completion
|
||||
LANG=C make check
|
||||
}
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
configure_args="-DLL_FMT=%lld -DRANDOM_DEVICE=/dev/urandom"
|
||||
fi
|
||||
|
||||
libqpdf_package() {
|
||||
short_desc+=" - shared library"
|
||||
pkg_install() {
|
||||
vmove "usr/lib/*.so.*"
|
||||
vmove "usr/lib/*.so.*"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue