# HG changeset patch # User Hans-G?nter Theisgen # Date 1645020470 -3600 # Node ID 3c9783d89208a55c5c65098f91ad822750a7525f # Parent 2f230197370e98a6590c43cb1a914a5f41921bc0 updated qpdf and qpdf-dev (10.3.2 -> 10.6.1) diff -r 2f230197370e -r 3c9783d89208 qpdf-dev/receipt --- a/qpdf-dev/receipt Wed Feb 16 11:53:30 2022 +0000 +++ b/qpdf-dev/receipt Wed Feb 16 15:07:50 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="qpdf-dev" -VERSION="10.3.2" +VERSION="10.6.1" CATEGORY="development" SHORT_DESC="QPDF - development files." MAINTAINER="mojo@slitaz.org" @@ -14,11 +14,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - mkdir -p $fs/usr/include - - cp -a $install/usr/lib/libqpdf.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include/qpdf $fs/usr/include + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } - \ No newline at end of file diff -r 2f230197370e -r 3c9783d89208 qpdf/description.txt --- a/qpdf/description.txt Wed Feb 16 11:53:30 2022 +0000 +++ b/qpdf/description.txt Wed Feb 16 15:07:50 2022 +0100 @@ -1,25 +1,36 @@ -QPDF is a command-line program that does structural, content-preserving transformations on PDF files. +QPDF is a command-line program that does structural, content-preserving +transformations on PDF files. It could have been called something like pdf-to-pdf. -It also provides many useful capabilities to developers of PDF-producing software or for people -who just want to look at the innards of a PDF file to learn more about how they work. +It also provides many useful capabilities to developers of PDF-producing +software or for people who just want to look at the innards of a PDF +file to learn more about how they work. -QPDF is capable of creating linearized (also known as web-optimized) files and encrypted files. -It is also capable of converting PDF files with object streams (also known as compressed objects) -to files with no compressed objects or to generate object streams from files that don't have them -(or even those that already do). -QPDF also supports a special mode designed to allow you to edit the content of PDF files in a text editor. +QPDF is capable of creating linearized (also known as web-optimized) +files and encrypted files. +It is also capable of converting PDF files with object streams (also +known as compressed objects) to files with no compressed objects or to +generate object streams from files that don't have them (or even those +that already do). +QPDF also supports a special mode designed to allow you to edit the +content of PDF files in a text editor. -QPDF includes support for merging and splitting PDFs through the ability to copy objects from one PDF file -into another and to manipulate the list of pages in a PDF file. -The QPDF library also makes it possible for you to create PDF files from scratch. In this mode, -you are responsible for supplying all the contents of the file, while the QPDF library takes care off all -the syntactical representation of the objects, creation of cross references tables and, if you use them, -object streams, encryption, linearization, and other syntactic details. +QPDF includes support for merging and splitting PDFs through the ability +to copy objects from one PDF file into another and to manipulate the list +of pages in a PDF file. +The QPDF library also makes it possible for you to create PDF files from +scratch. In this mode, you are responsible for supplying all the contents +of the file, while the QPDF library takes care off all the syntactical +representation of the objects, creation of cross references tables and, +if you use them, object streams, encryption, linearization, and other +syntactic details. -QPDF is not a PDF content creation library, a PDF viewer, or a program capable of converting PDF into -other formats. In particular, QPDF knows nothing about the semantics of PDF content streams. -If you are looking for something that can do that, you should look elsewhere. -However, once you have a valid PDF file, QPDF can be used to transform that file in ways perhaps your -original PDF creation can't handle. -For example, programs generate simple PDF files but can't password-protect them, web-optimize them, -or perform other transformations of that type. \ No newline at end of file +QPDF is not a PDF content creation library, a PDF viewer, or a program +capable of converting PDF into other formats. In particular, QPDF knows +nothing about the semantics of PDF content streams. +If you are looking for something that can do that, you should look +elsewhere. +However, once you have a valid PDF file, QPDF can be used to transform +that file in ways perhaps your original PDF creation can't handle. +For example, programs generate simple PDF files but can't +password-protect them, web-optimize them, or perform other +transformations of that type. \ No newline at end of file diff -r 2f230197370e -r 3c9783d89208 qpdf/receipt --- a/qpdf/receipt Wed Feb 16 11:53:30 2022 +0000 +++ b/qpdf/receipt Wed Feb 16 15:07:50 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="qpdf" -VERSION="10.3.2" +VERSION="10.6.1" CATEGORY="system-tools" SHORT_DESC="A Content-Preserving PDF Transformation System." MAINTAINER="mojo@slitaz.org" @@ -9,9 +9,9 @@ WEB_SITE="https://github.com/qpdf/qpdf" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="${WEB_SITE}/archive/release-$TARBALL" +WGET_URL="$WEB_SITE/archive/release-$TARBALL" -DEPENDS="gcc83-lib-base libjpeg pcre zlib" +DEPENDS="gcc83-lib-base libatomic libjpeg pcre zlib" BUILD_DEPENDS="gcc83 gnutls-dev jpeg-dev pcre-dev zlib-dev" current_version() @@ -34,7 +34,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }