Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

qpdf-devel-11.5.0-1.1 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: qpdf-devel Distribution: openSUSE:Factory:zSystems
Version: 11.5.0 Vendor: openSUSE
Release: 1.1 Build date: Sun Jul 16 06:21:04 2023
Group: Development/Libraries/C and C++ Build host: s390zp2a
Size: 616672 Source RPM: qpdf-11.5.0-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://qpdf.sourceforge.io/
Summary: Development files for qpdf PDF manipulation library
The qpdf-devel package contains header files and libraries necessary
for developing programs using the qpdf library.

Provides

Requires

License

Apache-2.0

Changelog

* Thu Jul 13 2023 Paolo Stivanin <info@paolostivanin.com>
  - Update to 11.5.0:
    * When copying the same page more than once, ensure that annotations
      are copied and not shared among multiple pages.
    * Add new method Buffer::copy and deprecate Buffer copy constructor
      and assignment operator. Buffer copies are expensive and should be
      done explicitly.
    * The source code was reformatted to 100 columns instead of 80.
      Numerous cosmetic changes and changes suggested by clang-tidy were made.
* Wed Jun 07 2023 pgajdos@suse.com
  - version update to 11.4.0
    CLI Enhancements
    * The --optimize-images option now optimizes images inside of form XObjects.
    Library Enhancements
    * Allow QPDFJob’s workflow to be split into a reading phase and a writing
      phase to allow the caller to operate on the QPDF object before it is written.
      This adds methods QPDFJob::createQPDF and QPDFJob::writeQPDF and corresponding
      C API functions qpdfjob_create_qpdf and qpdfjob_write_qpdf.
    * Add QPDF::newReserved as a better alternative to QPDFObjectHandle::newReserved.
    * If you add an uninitialized QPDFObjectHandle to an array, qpdf will throw a
      logic_error. It has always been invalid to do this, but before, it wouldn’t
      have been caught until later.
    Bug fixes
    * Ignore an annotation’s appearance state when the annotation only has one
      appearance. This prevents qpdf’s annotation flattening logic from throwing
      away appearances of annotations whose annotation state is set incorrectly,
      as has been seen in some PDF files.
* Thu Mar 02 2023 Martin Liška <mliska@suse.cz>
  - Use -fexcess-precision=fast as GCC 13 changes the default
    for C++ compiler and without the change some tests fail on i586.
* Wed Mar 01 2023 Paolo Stivanin <info@paolostivanin.com>
  - update to 11.3.0:
    * When performing overlay or underlay operations, convert the
      original page to a form XObject instead of simply isolating its
      contents with q/Q operators. This prevents unbalanced q/Q
      operators in any of the original pages from messing up the
      graphics state of anything that is overlaid on top of it.
* Sat Dec 03 2022 Dirk Müller <dmueller@suse.com>
  - update to 11.2.0:
    * Move stream creation functions in the QPDF object where they belong. The ones
      in QPDFObjectHandle are not deprecated and will stick around.
    * Add some convenience methods to QPDFTokenizer::Token for testing token types.
      This is part of qpdf’s lexical layer and will not be needed by most developers.
    * Fix issue with missing symbols in the mingw build.
    * Fix major performance bug with the OpenSSL crypto provider. This bug was
      causing a 6x to 12x slowdown for encrypted files when OpenSSL 3 was in use.
      This includes the default Windows builds distributed with the qpdf release.
    * Fix obscure bug involving appended files that reuse an object number that was
      used as a cross reference stream in an earlier stage of the file.
* Wed Oct 12 2022 C J <c.j@tuta.io>
  - update to 11.1.1:
    * Bug fixes for #778 & #789
    * Code tidying and performance improvements
  - version 11.1.0: Build fixes
  - version 11.0.0:
    * Replacement of PointerHolder with std::shared_ptr
    * JSON output mode is now at version 2
    * Performance improvements, cleanup and refactoring.
    * CLI: breaking changes:
      The --show-encryption flag now provides encryption information
      even if a correct password is not supplied.
      Default json output version with --json has changed from 1 to 2.
      The --allow-weak-crypto flag is now mandatory when explicitly
      creating files with weak cryptographic algorithms.
    * API: breaking changes:
      Deprecate QPDFObject.hh for removal in qpdf 12.
      Pipeline::write use unsigned char const* instead of unsigned char*.
      Deprecated QPDFAcroFormDocumentHelper::copyFieldsFromForeignPage.
      The function passed to and called by QPDFJob::doIfVerbose now
      takes a Pipeline& argument instead of a std::ostream& argument.
      Remove pre qpdf-8.4.0 encryption API methods from QPDFWriter and
      their corresponding C API functions.
      QPDFObjectHandle::warnIfPossible no longer takes an optional
      argument to throw an exception if there is no description.
      QPDF objects can no longer be copied or assigned to.
    * CLI Enhancements
    * Library Enhancements:
      A new object QPDFLogger has been added.
      In QPDFObjectHandle, new methods insertItemAndGetNew,
      appendItemAndGetNew, and replaceKeyAndGetNew. New methods
      eraseItemAndGetOld, replaceKeyAndGetOld, and removeKeyAndGetOld.
      QPDFObjectHandle::isDestroyed method.
      QPDFObjectHandle::getOwningQPDF method now returns a null pointer
      when the owning QPDF object has been destroyed.
      QPDFObjectHandle::getQPDF is an alternative to
      QPDFObjectHandle::getOwningQPDF.
      Add method QPDFObjectHandle::isSameObjectAs.
      New factory method QPDF::create() returns a std::shared_ptr<QPDF>.
      New Pipeline methods have been added to reduce the amount of casting
      that is needed (write, writeCstr, writeString, operator <<)
      New Pipeline type Pl_OStream writes to a std::ostream.
      New Pipeline type Pl_String appends to a std::string.
      New Pipeline type Pl_Function.
      Methods have been added to QUtil for converting PDF timestamps and
      QPDFTime objects to ISO-8601 timestamps.
      Enhancement to JSON class.
      Add new functions to the C API for qpdfjob that use a qpdfjob_handle.
      QPDFJob::registerProgressReporter & qpdfjob_register_progress_reporter
      as a custom progress reporter with QPDFJob.
      New overloads: QPDFObjectHandle::StreamDataProvider::provideStreamData
      with QPDFObjGen const& instead of object ID and generation parameters.
      In QPDFPageObjectHelper, add a copy_if_fallback parameter to most of
      the page bounding box methods.
      Add a move constructor to the Buffer class.
    * Other changes:
      In JSON v1 mode: "objects" key now reflects the repaired pages
      tree if "pages" is specified.
      Chapter "Contributing to qpdf" was added to the documentation.
      The qpdf source code is now formatted automatically with clang-format.
  - drop obsolete patches:
    disable-newpdf-renderer.patch
    qpdf-10.6.3-grep-3.8.patch
* Thu Sep 08 2022 Andreas Stieger <andreas.stieger@gmx.de>
  - fix build with GNU grep 3.8 (boo#1203231)
    add qpdf-10.6.3-grep-3.8.patch
* Tue Jul 19 2022 Dirk Müller <dmueller@suse.com>
  - add disable-newpdf-renderer.patch (bsc#1201642)
* Sun Mar 20 2022 Dirk Müller <dmueller@suse.com>
  - update to 10.6.3:
    * Minor internal changes to assist with building in other
      environments: rename internal bits.icc to qpdf/bits_functions.hh
      (not part of public API), enforce reordering of header files to
      prevent jpeglib.h from interfering with other headers, remove an
      unused header that was accidentally added in 10.6.0 but never
      referenced by any code.
    * Make build work and tests work when NDEBUG is defined. This
      involved a few changes to some test files but no changes to any
      library code.
    * Bug fix in JSON parser: accept \/ in a string as valid input per
      JSON spec even though we don't translate / to \/ on output.
    * Recognize PDF strings explicitly marked as UTF-8 as allowed by
      the PDF 2.0 spec. Fixes #654.
    * Bug fix: when generating appearance streams, the font size was
      substituted incorrectly from /DA if Tf was absent or the number
      preceding Tf was out of range. Fixes #655.
* Wed Feb 23 2022 Bjørn Lie <bjorn.lie@gmail.com>
  - Update to version 10.6.2:
    * Recognize strings encoded as UTF-16LE as Unicode. The PDF spec
      only allows UTF-16BE, but most readers accept UTF16-LE as well.
    * Fix a regression in command-line argument parsing to restore a
      previously undocumented behavior that some people were relying
      on.
    * Fix one more problem with mapping Unicode to PDF doc encoding.
  - Drop fix-signedness-warning.patch for real, the patch was still
    present in obs.
* Mon Feb 14 2022 Dirk Müller <dmueller@suse.com>
  - update to 10.6.1:
    * All functionality previously available only from the qpdf CLI has been
      exposed to the library using a new QPDFJob API, which includes fluent
      interfaces as well as a JSON format that's equivalent to qpdf's
      command-line arguments.
    * Many new interfaces have been added to QPDFObjectHandle and the C API to
      allow more convient ways querying types and accessing object values in a
      more type-safe fashion.
    * qpdf --help has been revamped so that help is divided into categories, and
      help is available for each option
    * The Running qpdf section of the manual has been rewritten. The manual now
      includes an index of command-line arguments.
    * see https://qpdf.readthedocs.io/en/stable/release-notes.html
* Mon Feb 14 2022 Dirk Müller <dmueller@suse.com>
  - drop build-without-pdf.patch, fix-signedness-warning.patch (upstream)
* Mon Jan 10 2022 Dirk Müller <dmueller@suse.com>
  - add fix-signedness-warning.patch (build for aarch64)
* Tue Jan 04 2022 Dirk Müller <dmueller@suse.com>
  - update to 10.5.0:
    * Since qpdf version 8, using object accessor methods on an
      instance of ``QPDFObjectHandle`` may create warnings if the
      object is not of the expected type. These warnings now have an
      error code of ``qpdf_e_object`` instead of
      ``qpdf_e_damaged_pdf``. Also, comments have been added to
      :file:`QPDFObjectHandle.hh` to explain in more detail what the
      behavior is. See :ref:`object-accessors` for a more in-depth
      discussion.
    * Add ``Pl_Buffer::getMallocBuffer()`` to initialize a buffer
      allocated with ``malloc()`` for better cross-language
      interoperability.
    * Overhaul error handling for the object handle functions C API.
      Some rare error conditions that would previously have caused a
      crash are now trapped and reported, and the functions that
      generate them return fallback values. See comments in the
      ``ERROR HANDLING`` section of :file:`include/qpdf/qpdf-c.h` for
      details. In particular, exceptions thrown by the underlying C++
      code when calling object accessors are caught and converted into
      errors. The errors can be checked by calling ``qpdf_has_error``.
      Use ``qpdf_silence_errors`` to prevent the error from being
      written to stderr.
    * Add ``qpdf_get_last_string_length`` to the C API to get the
      length of the last string that was returned. This is needed to
      handle strings that contain embedded null characters.
    * Add ``qpdf_oh_is_initialized`` and
      ``qpdf_oh_new_uninitialized`` to the C API to make it possible
      to work with uninitialized objects.
    * Add ``qpdf_oh_new_object`` to the C API. This allows you to
      clone an object handle.
    * Add ``qpdf_get_object_by_id``, ``qpdf_make_indirect_object``,
      and ``qpdf_replace_object``, exposing the corresponding methods
      in ``QPDF`` and ``QPDFObjectHandle``.
  - add build-without-pdf.patch to fix documentation installation
  - enable documentation build, enable tests, enable werror
* Fri Nov 26 2021 Dirk Müller <dmueller@suse.com>
  - update to 10.4.0:
    * From the qpdf CLI, the --allow-weak-crypto is now required to suppress a
      warning when explicitly creating PDF files using RC4 encryption. While qpdf
      will always retain the ability to read and write such files, doing so will
      require explicit acknowledgment moving forward. For qpdf 10.4, this change
      only affects the command-line tool. Starting in qpdf 11, there will be
      small API changes to require explicit acknowledgment in those cases as
      well. For additional information, see Chapter 6, Weak Cryptography.
    * Fix potential bounds error when handling shell completion that could occur
      when given bogus input.
    * Properly handle overlay/underlay on completely empty pages
    * Fix crash that could occur under certain conditions when using --pages with
      files that had form fields.
    * Make QPDF::findPage functions public.
    * Add methods to Pl_Flate to be able to receive warnings on certain recoverable
      conditions.
    * Add an extra check to the library to detect when foreign objects are inserted
      directly (instead of using QPDF::copyForeignObject) at the time of insertion
      rather than when the file is written. Catching the error sooner makes it much
      easier to locate the incorrect code.
    * Improve diagnostics around parsing --pages command-line options
* Mon May 10 2021 Ismail Dönmez <ismail@i10z.com>
  - Update to version 10.3.2
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Fri Mar 12 2021 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.3.1
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Fri Mar 05 2021 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.3.0
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Thu Feb 25 2021 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.2.0
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Tue Jan 05 2021 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.1.0
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
* Sun Nov 22 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.4
    * Fix a handful of integer overflows.
* Fri Oct 30 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.3
    * Fixes a regression introduced in 10.0.2
* Wed Oct 28 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.2
    * Bug fixes and performance improvements
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for a complete changelog.
* Fri Apr 10 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.1
    * Fixes a regression in QPDFObjectHandle::getStreamData
* Mon Apr 06 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 10.0.0
    * Several internal optimizations
    * OpenSSL support as alternative crypto provider
    * Bug fixes
    * See http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
      for the complete changelog.
  - Add BR on pkgconfig(openssl) to add support for OpenSSL crypto
    provider and enable with --enable-crypto-openssl.
  - Drop BR on pkgconfig(gnutls) now that we have OpenSSL support.
  - Pass --disable-implicit-crypto to configure to make sure weak
    crypto code is disabled.
* Mon Jan 27 2020 Ismail Dönmez <idonmez@suse.com>
  - Update to version 9.1.1
    * fix-qdf is rewritten in C++
    * Added options --is-encrypted and --requires-password for testing
      whether a file is encrypted or requires a password other than
      the supplied (or empty) password.
    * Added encrypt key to JSON options. With the exception of the
      reconstructed user password for older encryption formats,
      this provides the same information as --show-encryption but in
      a consistent, parseable format. See output of qpdf --json-help
      for details.
    * In QDF mode, be sure not to write more than one XRef stream to a
      file, even when --preserve-unreferenced is used. fix-qdf
      assumes that there is only one XRef stream, and that it appears
      at the end of the file.
    * When externalizing inline images, properly handle images whose
      color space is a reference to an object in the page's resource
      dictionary.

Files

/usr/include/qpdf
/usr/include/qpdf/Buffer.hh
/usr/include/qpdf/BufferInputSource.hh
/usr/include/qpdf/ClosedFileInputSource.hh
/usr/include/qpdf/Constants.h
/usr/include/qpdf/DLL.h
/usr/include/qpdf/FileInputSource.hh
/usr/include/qpdf/InputSource.hh
/usr/include/qpdf/JSON.hh
/usr/include/qpdf/PDFVersion.hh
/usr/include/qpdf/Pipeline.hh
/usr/include/qpdf/Pl_Buffer.hh
/usr/include/qpdf/Pl_Concatenate.hh
/usr/include/qpdf/Pl_Count.hh
/usr/include/qpdf/Pl_DCT.hh
/usr/include/qpdf/Pl_Discard.hh
/usr/include/qpdf/Pl_Flate.hh
/usr/include/qpdf/Pl_Function.hh
/usr/include/qpdf/Pl_OStream.hh
/usr/include/qpdf/Pl_QPDFTokenizer.hh
/usr/include/qpdf/Pl_RunLength.hh
/usr/include/qpdf/Pl_StdioFile.hh
/usr/include/qpdf/Pl_String.hh
/usr/include/qpdf/PointerHolder.hh
/usr/include/qpdf/QIntC.hh
/usr/include/qpdf/QPDF.hh
/usr/include/qpdf/QPDFAcroFormDocumentHelper.hh
/usr/include/qpdf/QPDFAnnotationObjectHelper.hh
/usr/include/qpdf/QPDFCryptoImpl.hh
/usr/include/qpdf/QPDFCryptoProvider.hh
/usr/include/qpdf/QPDFDocumentHelper.hh
/usr/include/qpdf/QPDFEFStreamObjectHelper.hh
/usr/include/qpdf/QPDFEmbeddedFileDocumentHelper.hh
/usr/include/qpdf/QPDFExc.hh
/usr/include/qpdf/QPDFFileSpecObjectHelper.hh
/usr/include/qpdf/QPDFFormFieldObjectHelper.hh
/usr/include/qpdf/QPDFJob.hh
/usr/include/qpdf/QPDFLogger.hh
/usr/include/qpdf/QPDFMatrix.hh
/usr/include/qpdf/QPDFNameTreeObjectHelper.hh
/usr/include/qpdf/QPDFNumberTreeObjectHelper.hh
/usr/include/qpdf/QPDFObjGen.hh
/usr/include/qpdf/QPDFObject.hh
/usr/include/qpdf/QPDFObjectHandle.hh
/usr/include/qpdf/QPDFObjectHelper.hh
/usr/include/qpdf/QPDFOutlineDocumentHelper.hh
/usr/include/qpdf/QPDFOutlineObjectHelper.hh
/usr/include/qpdf/QPDFPageDocumentHelper.hh
/usr/include/qpdf/QPDFPageLabelDocumentHelper.hh
/usr/include/qpdf/QPDFPageObjectHelper.hh
/usr/include/qpdf/QPDFStreamFilter.hh
/usr/include/qpdf/QPDFSystemError.hh
/usr/include/qpdf/QPDFTokenizer.hh
/usr/include/qpdf/QPDFUsage.hh
/usr/include/qpdf/QPDFWriter.hh
/usr/include/qpdf/QPDFXRefEntry.hh
/usr/include/qpdf/QTC.hh
/usr/include/qpdf/QUtil.hh
/usr/include/qpdf/RandomDataProvider.hh
/usr/include/qpdf/Types.h
/usr/include/qpdf/auto_job_c_att.hh
/usr/include/qpdf/auto_job_c_copy_att.hh
/usr/include/qpdf/auto_job_c_enc.hh
/usr/include/qpdf/auto_job_c_main.hh
/usr/include/qpdf/auto_job_c_pages.hh
/usr/include/qpdf/auto_job_c_uo.hh
/usr/include/qpdf/qpdf-c.h
/usr/include/qpdf/qpdfjob-c.h
/usr/include/qpdf/qpdflogger-c.h
/usr/lib64/cmake/qpdf
/usr/lib64/cmake/qpdf/libqpdfTargets-relwithdebinfo.cmake
/usr/lib64/cmake/qpdf/libqpdfTargets.cmake
/usr/lib64/cmake/qpdf/qpdfConfig.cmake
/usr/lib64/cmake/qpdf/qpdfConfigVersion.cmake
/usr/lib64/libqpdf.so
/usr/lib64/pkgconfig/libqpdf.pc
/usr/share/doc/packages/qpdf/examples
/usr/share/doc/packages/qpdf/examples/pdf-attach-file.cc
/usr/share/doc/packages/qpdf/examples/pdf-bookmarks.cc
/usr/share/doc/packages/qpdf/examples/pdf-c-objects.c
/usr/share/doc/packages/qpdf/examples/pdf-count-strings.cc
/usr/share/doc/packages/qpdf/examples/pdf-create.cc
/usr/share/doc/packages/qpdf/examples/pdf-custom-filter.cc
/usr/share/doc/packages/qpdf/examples/pdf-double-page-size.cc
/usr/share/doc/packages/qpdf/examples/pdf-filter-tokens.cc
/usr/share/doc/packages/qpdf/examples/pdf-invert-images.cc
/usr/share/doc/packages/qpdf/examples/pdf-linearize.c
/usr/share/doc/packages/qpdf/examples/pdf-mod-info.cc
/usr/share/doc/packages/qpdf/examples/pdf-name-number-tree.cc
/usr/share/doc/packages/qpdf/examples/pdf-npages.cc
/usr/share/doc/packages/qpdf/examples/pdf-overlay-page.cc
/usr/share/doc/packages/qpdf/examples/pdf-parse-content.cc
/usr/share/doc/packages/qpdf/examples/pdf-set-form-values.cc
/usr/share/doc/packages/qpdf/examples/pdf-split-pages.cc
/usr/share/doc/packages/qpdf/examples/qpdf-job.cc
/usr/share/doc/packages/qpdf/examples/qpdfjob-c-save-attachment.c
/usr/share/doc/packages/qpdf/examples/qpdfjob-c.c
/usr/share/doc/packages/qpdf/examples/qpdfjob-remove-annotations.cc
/usr/share/doc/packages/qpdf/examples/qpdfjob-save-attachment.cc


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:50:11 2024