[arch-commits] Commit in img2pdf/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu Nov 12 17:11:30 UTC 2020
Date: Thursday, November 12, 2020 @ 17:11:30
Author: felixonmars
Revision: 752323
archrelease: copy trunk to community-staging-any
Added:
img2pdf/repos/community-staging-any/
img2pdf/repos/community-staging-any/PKGBUILD
(from rev 752321, img2pdf/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: img2pdf/repos/community-staging-any/PKGBUILD (from rev 752321, img2pdf/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2020-11-12 17:11:30 UTC (rev 752323)
@@ -0,0 +1,39 @@
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+
+pkgname=img2pdf
+pkgver=0.4.0
+pkgrel=2
+pkgdesc="Losslessly convert raster images to PDF"
+arch=(any)
+url="https://gitlab.mister-muffin.de/josch/img2pdf"
+license=(LGPL3)
+depends=(python-pillow python-pikepdf python-setuptools)
+checkdepends=(python-pytest python-pdfrw python-numpy python-scipy python-lxml
+ colord ghostscript imagemagick mupdf-tools poppler perl-image-exiftool netpbm)
+source=(https://files.pythonhosted.org/packages/source/i/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('eaee690ab8403dd1a9cb4db10afee41dd3e6c7ed63bdace02a0121f9feadb0c9')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ python setup.py build
+}
+
+check() {
+ cd ${pkgname}-${pkgver}
+ # Different output on Arch?
+ sed -e 's|Joint Photographic Experts Group JFIF format|JPEG|g' \
+ -e 's|JPEG-2000 File Format Syntax|JP2|g' \
+ -e 's|Portable Network Graphics|PNG|g' \
+ -e 's|Tagged Image File Format|TIFF|g' \
+ -e 's|CompuServe graphics interchange format|GIF|g' \
+ -i src/img2pdf_test.py
+ sed 's|endianess|endianness|g' -i src/img2pdf_test.py
+ sed 's|usr/share/color/icc/sRGB.icc|usr/share/color/icc/colord/sRGB.icc|g' -i src/img2pdf_test.py
+ # Failures with checksuming and Zip vs None compression
+ python -m pytest || echo "Tests failed"
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ python setup.py install --skip-build --prefix=/usr --root="${pkgdir}" --optimize=1
+}
More information about the arch-commits
mailing list